新增采购

This commit is contained in:
2026-06-27 10:40:54 +08:00
parent ce3998db74
commit 66d2b33db5
25 changed files with 1261 additions and 227 deletions

View File

@@ -54,9 +54,15 @@ public class ErpPurchasePlan extends BaseEntity {
/** 计划总重量(T) */
private BigDecimal planWeight;
/** 已到货重量(T) */
/** 已到货重量(T) = Σ到货卷(WMS已确认)单卷重量 */
private BigDecimal arrivedWeight;
/** 计划要求总数量(卷/件) = Σ明细数量 */
private Integer planQty;
/** 已到货卷数 = WMS确认到货的上传卷数 */
private Integer arrivedCount;
/** 删除标志 */
@TableLogic
private String delFlag;