库存调整记录批次号;

This commit is contained in:
王奎兴
2026-04-20 20:37:23 +08:00
parent 7c57a10321
commit 850202cb3a
3 changed files with 7 additions and 1 deletions
@@ -195,5 +195,8 @@ public class InventoryAdjustmentRecord extends BaseVOEntity {
@ApiModelProperty("LOT编号") @ApiModelProperty("LOT编号")
@Excel(name = "LOT编号") @Excel(name = "LOT编号")
private String lotNumber; private String lotNumber;
@ApiModelProperty("批次号")
@Excel(name = "批次号")
private String batchNumber;
} }
@@ -252,4 +252,7 @@ public class InventoryAdjustmentRecordPO extends BaseVOEntity {
@ApiModelProperty("LOT编号") @ApiModelProperty("LOT编号")
@Excel(name = "LOT编号") @Excel(name = "LOT编号")
private String LotNumber; private String LotNumber;
@ApiModelProperty("批次号")
@Excel(name = "批次号")
private String batchNumber;
} }
@@ -580,7 +580,7 @@ public class MaterialInventoryImpl extends ServiceImpl<MaterialInventoryMapper,
inventoryAdjustmentRecord.setLotNumber(materialInventoryParamDO.getLotNumber()); inventoryAdjustmentRecord.setLotNumber(materialInventoryParamDO.getLotNumber());
inventoryAdjustmentRecord.setInOrderNumber(materialInventoryParamDO.getInOrderNumber()); inventoryAdjustmentRecord.setInOrderNumber(materialInventoryParamDO.getInOrderNumber());
inventoryAdjustmentRecord.setBatchNumber(materialInventoryParamDO.getBatchNumber());
if (ObjectUtil.isNotNull(materialBaseInfo)) { if (ObjectUtil.isNotNull(materialBaseInfo)) {
inventoryAdjustmentRecord.setMaterialCode(materialBaseInfo.getMaterialCode()); inventoryAdjustmentRecord.setMaterialCode(materialBaseInfo.getMaterialCode());
inventoryAdjustmentRecord.setMaterialName(materialBaseInfo.getMaterialName()); inventoryAdjustmentRecord.setMaterialName(materialBaseInfo.getMaterialName());