出库单明细加字段;
This commit is contained in:
+8
@@ -493,4 +493,12 @@ public class ReserveOutMaterialDetail extends BaseVOEntity {
|
||||
@ApiModelProperty("库存数量")
|
||||
@Excel(name = "库存数量")
|
||||
private BigDecimal stockQuantity;
|
||||
|
||||
@ApiModelProperty("系数")
|
||||
@Excel(name = "系数")
|
||||
private String coefficient;
|
||||
|
||||
@ApiModelProperty("每件重量")
|
||||
@Excel(name = "每件重量")
|
||||
private BigDecimal perWeight;
|
||||
}
|
||||
+8
@@ -584,4 +584,12 @@ public class ReserveOutMaterialDetailPO extends ReserveStockOutOrderBaseDO {
|
||||
@ApiModelProperty("调整后面积")
|
||||
@Excel(name = "调整后面积")
|
||||
private BigDecimal adjustedArea;
|
||||
|
||||
@ApiModelProperty("系数")
|
||||
@Excel(name = "系数")
|
||||
private String coefficient;
|
||||
|
||||
@ApiModelProperty("每件重量")
|
||||
@Excel(name = "每件重量")
|
||||
private BigDecimal perWeight;
|
||||
}
|
||||
+7
@@ -529,4 +529,11 @@ public class ReserveOutMaterialDetailDO extends BaseVOEntity {
|
||||
@ApiModelProperty("调整后面积")
|
||||
@Excel(name = "调整后面积")
|
||||
private BigDecimal adjustedArea;
|
||||
@ApiModelProperty("系数")
|
||||
@Excel(name = "系数")
|
||||
private String coefficient;
|
||||
|
||||
@ApiModelProperty("每件重量")
|
||||
@Excel(name = "每件重量")
|
||||
private BigDecimal perWeight;
|
||||
}
|
||||
+7
@@ -518,4 +518,11 @@ public class ReserveOutMaterialDetailDTO extends BaseVOEntity {
|
||||
@ApiModelProperty("调整后面积")
|
||||
@Excel(name = "调整后面积")
|
||||
private BigDecimal adjustedArea;
|
||||
@ApiModelProperty("系数")
|
||||
@Excel(name = "系数")
|
||||
private String coefficient;
|
||||
|
||||
@ApiModelProperty("每件重量")
|
||||
@Excel(name = "每件重量")
|
||||
private BigDecimal perWeight;
|
||||
}
|
||||
+3
-1
@@ -94,6 +94,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="inOrderNumber" column="in_order_number" />
|
||||
<result property="stockUnit" column="stock_unit" />
|
||||
<result property="stockQuantity" column="stock_quantity" />
|
||||
<result property="perWeight" column="PER_WEIGHT" />
|
||||
<result property="coefficient" column="COEFFICIENT" />
|
||||
</resultMap>
|
||||
|
||||
|
||||
@@ -106,7 +108,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
a.single_gross_weight ,
|
||||
a.lot_no ,
|
||||
a.stock_quantity ,
|
||||
a.stock_unit ,a.in_order_number ,
|
||||
a.stock_unit ,a.in_order_number ,a.PER_WEIGHT,a.COEFFICIENT,
|
||||
a.material_detail_id, a.organization_id, a.organization_name, a.top_organization_id, a.unique_id, a.out_order_number, a.material_base_info_id, a.line_number, a.material_code, a.material_name, a.bar_code, a.weight_limit, a.volume_limit,
|
||||
a.quantity, a.already_allocation_quantity, a.allocation_quantity, a.picking_quantity, a.check_quantity, ROUND(GREATEST(0, IFNULL(a.quantity, 0) - IFNULL(a.check_quantity, 0), IFNULL(a.picking_quantity, 0) - IFNULL(a.check_quantity, 0)), 2) AS wait_check_quantity,
|
||||
a.pack_id, a.pack_code, a.pack_name, a.pack_detail_id, a.unit_code, a.unit_name, a.material_warehouse_control_id, a.serial_number_manage,
|
||||
|
||||
Reference in New Issue
Block a user