| | |
| | | private Long salesLedgerId; |
| | | |
| | | /** |
| | | * 父框架合同产品ID |
| | | */ |
| | | private Long parentProductId; |
| | | |
| | | /** |
| | | * 框架订单交货日期 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private java.time.LocalDate deliveryDate; |
| | | |
| | | /** |
| | | * 预警数量 |
| | | */ |
| | | private BigDecimal warnNum; |
| | |
| | | @TableField(exist = false) |
| | | private Integer hasSufficientStock; |
| | | |
| | | // 退货数量 |
| | | @TableField(exist = false) |
| | | private BigDecimal returnQuality; |
| | | |
| | | // 可用数量 quantity - returnQuality |
| | | // 可用数量 quantity - returnQuantity |
| | | @TableField(exist = false) |
| | | private BigDecimal availableQuality; |
| | | @Schema(description = "创建用户") |
| | |
| | | @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; |
| | | } |