拣货装卸费/贴标费;
This commit is contained in:
+8
@@ -264,4 +264,12 @@ public class PickingMaterialDetail extends BaseVOEntity {
|
||||
@ApiModelProperty("总面积(SQM)")
|
||||
@Excel(name = "总面积(SQM)")
|
||||
private BigDecimal totalArea;
|
||||
|
||||
@ApiModelProperty("装卸费")
|
||||
@Excel(name = "装卸费")
|
||||
private BigDecimal loadUnloadFee;
|
||||
|
||||
@ApiModelProperty("贴标费")
|
||||
@Excel(name = "贴标费")
|
||||
private BigDecimal stickerFee;
|
||||
}
|
||||
+2
@@ -165,6 +165,8 @@ public class PickingMaterialDetailImpl extends ServiceImpl<PickingMaterialDetail
|
||||
pickingMaterialDetail.setTotalGrossWeight(pickingMaterialDetailDO.getTotalGrossWeight());
|
||||
pickingMaterialDetail.setUnitCode(pickingMaterialDetailDO.getUnitCode());
|
||||
pickingMaterialDetail.setUnitName(pickingMaterialDetailDO.getUnitName());
|
||||
pickingMaterialDetail.setLoadUnloadFee(pickingMaterialDetailDO.getLoadUnloadFee());
|
||||
pickingMaterialDetail.setStickerFee(pickingMaterialDetailDO.getStickerFee());
|
||||
BigDecimal actualQuantity = pickingMaterialDetailDO.getActualQuantity();
|
||||
pickingMaterialDetail.setPickingQuantity(actualQuantity);
|
||||
pickingMaterialDetailList.add(pickingMaterialDetail);
|
||||
|
||||
+8
@@ -278,4 +278,12 @@ public class PickingMaterialDetailPO extends BaseVOEntity {
|
||||
@ApiModelProperty("总面积(SQM)")
|
||||
@Excel(name = "总面积(SQM)")
|
||||
private BigDecimal totalArea;
|
||||
|
||||
@ApiModelProperty("装卸费")
|
||||
@Excel(name = "装卸费")
|
||||
private BigDecimal loadUnloadFee;
|
||||
|
||||
@ApiModelProperty("贴标费")
|
||||
@Excel(name = "贴标费")
|
||||
private BigDecimal stickerFee;
|
||||
}
|
||||
+8
@@ -279,4 +279,12 @@ public class PickingMaterialDetailDO extends BaseVOEntity {
|
||||
@ApiModelProperty("总面积(SQM)")
|
||||
@Excel(name = "总面积(SQM)")
|
||||
private BigDecimal totalArea;
|
||||
|
||||
@ApiModelProperty("装卸费")
|
||||
@Excel(name = "装卸费")
|
||||
private BigDecimal loadUnloadFee;
|
||||
|
||||
@ApiModelProperty("贴标费")
|
||||
@Excel(name = "贴标费")
|
||||
private BigDecimal stickerFee;
|
||||
}
|
||||
+8
@@ -220,4 +220,12 @@ public class PickingMaterialDetailDTO extends BaseVOEntity {
|
||||
@ApiModelProperty("总面积(SQM)")
|
||||
@Excel(name = "总面积(SQM)")
|
||||
private BigDecimal totalArea;
|
||||
|
||||
@ApiModelProperty("装卸费")
|
||||
@Excel(name = "装卸费")
|
||||
private BigDecimal loadUnloadFee;
|
||||
|
||||
@ApiModelProperty("贴标费")
|
||||
@Excel(name = "贴标费")
|
||||
private BigDecimal stickerFee;
|
||||
}
|
||||
Reference in New Issue
Block a user