3 小时以前 55d694aaae4e421b5e55cd941500e08f85cb5d4d
src/main/java/com/ruoyi/sales/pojo/SalesLedgerProduct.java
@@ -39,6 +39,17 @@
    private Long salesLedgerId;
    /**
     * 父框架合同产品ID
     */
    private Long parentProductId;
    /**
     * 框架订单交货日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    private java.time.LocalDate deliveryDate;
    /**
     * 预警数量
     */
    private BigDecimal warnNum;
@@ -164,11 +175,7 @@
    @TableField(exist = false)
    private Integer hasSufficientStock;
    // 退货数量
    @TableField(exist = false)
    private BigDecimal returnQuality;
    // 可用数量  quantity - returnQuality
    // 可用数量  quantity - returnQuantity
    @TableField(exist = false)
    private BigDecimal availableQuality;
    @Schema(description = "创建用户")
@@ -185,4 +192,20 @@
    @TableField(exist = false)
    @Schema(description = "待发货数量")
    private BigDecimal noQuantity;
    @TableField(exist = false)
    @Schema(description = "退货数量")
    private BigDecimal returnQuantity;
    @TableField(exist = false)
    @Schema(description = "销售发货数量")
    private BigDecimal shippedQuantity;
    @TableField(exist = false)
    @Schema(description = "已审核入库数量")
    private BigDecimal approvedStockInNum;
    @TableField(exist = false)
    @Schema(description = "审批中数量")
    private BigDecimal pendingApprovalQuantity;
}