执行退货

This commit is contained in:
JinLu.Yin 2022-06-13 23:25:11 +08:00
parent eb50e1400e
commit 92b9cfd578

View File

@ -119,4 +119,18 @@ public class WmRtVendorController extends BaseController
} }
return toAjax(wmRtVendorService.deleteWmRtVendorByRtIds(rtIds)); return toAjax(wmRtVendorService.deleteWmRtVendorByRtIds(rtIds));
} }
/**
* 执行退货
*/
@PreAuthorize("@ss.hasPermi('mes:wm:rtvendor:edit')")
@Log(title = "供应商退货单", businessType = BusinessType.UPDATE)
@Transactional
@PutMapping("/{rtId}")
public AjaxResult execute(@PathVariable Long rtId){
return AjaxResult.success();
}
} }