完善单元格合并逻辑
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user