|
@@ -166,9 +166,9 @@ public class OutStoreFormController {
|
|
|
* @return R
|
|
|
*/
|
|
|
@SysLog("删除出库单关联的出库单备件详情")
|
|
|
- @DeleteMapping("/detail")
|
|
|
+ @DeleteMapping("/detail/{id}")
|
|
|
@PreAuthorize("@pms.hasPermission('store-out-store-forms-del')")
|
|
|
- public R removeDetails(@RequestBody String id) {
|
|
|
+ public R removeDetails(@PathVariable String id) {
|
|
|
List<String> list = new ArrayList<>();
|
|
|
list.add(id);
|
|
|
outStoreDetailService.batchDelete(list);
|