完善单元格合并逻辑

This commit is contained in:
2026-06-27 14:10:56 +08:00
parent 66d2b33db5
commit fa333ff557
4 changed files with 96 additions and 20 deletions

View File

@@ -142,6 +142,13 @@ public class ErpPurchasePlanController extends BaseController {
return R.ok(iErpPurchasePlanService.queryDeliveryList(planId));
}
/** 刷新到货:拿已上传卷号去 WMS 钢卷表实时复核,签收入库的自动翻为已到货(无需重传) */
@PutMapping("/{planId}/refreshArrival")
public R<Void> refreshArrival(@PathVariable Long planId) {
iErpPurchasePlanService.refreshProgress(planId);
return R.ok();
}
/** 某计划的到货上传批次(每次上传一条,可回看) */
@GetMapping("/{planId}/deliveryBatches")
public R<List<ErpPurchasePlanDeliveryBatchVo>> deliveryBatches(@PathVariable Long planId) {