Browse Source

2025-01-22

优化
master
fengyuan_yang 12 months ago
parent
commit
37958865bb
  1. 2
      src/main/java/com/spring/modules/part/service/impl/PartInformationServiceImpl.java

2
src/main/java/com/spring/modules/part/service/impl/PartInformationServiceImpl.java

@ -218,7 +218,7 @@ public class PartInformationServiceImpl extends ServiceImpl<PartInformationMappe
partIfsInventory.setInvoiceConsideration(data.getInvoiceConsideration() == null ? "" : data.getInvoiceConsideration()); // 供应商发票事项
partIfsInventory.setZeroCostFlag(data.getZeroCostFlag() == null ? "" : data.getZeroCostFlag()); // 零成本
partIfsInventory.setPartCostGroupId(data.getPartCostGroupId() == null ? "" : data.getPartCostGroupId()); // 零件成本组
partIfsInventory.setEngAttribute(data.getCodeNo().isEmpty() ? "" : data.getCodeNo()); // 模板编码
partIfsInventory.setEngAttribute(data.getCodeNo() == null ? "" : data.getCodeNo()); // 模板编码
return partIfsInventory;
}

Loading…
Cancel
Save