fix:订单版本号变更bug修复

dev_1.0.2
UNISINSIGHT\rdpnr_jiangpeng 2026-04-01 14:47:10 +08:00
parent 60a9bdab2e
commit 980a8147ce
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ public class VueDeliveryController extends BaseController {
@Log(title = "发货记录", businessType = BusinessType.DELETE) @Log(title = "发货记录", businessType = BusinessType.DELETE)
@DeleteMapping("/{id}") @DeleteMapping("/{id}")
public AjaxResult remove(@PathVariable(value = "id") Long id) { public AjaxResult remove(@PathVariable(value = "id") Long id) {
return toAjax(inventoryDeliveryService.deleteInventoryOuterById(id, true)); return toAjax(inventoryDeliveryService.deleteInventoryOuterById(id, true, null));
} }
/** /**