库存管理

This commit is contained in:
gaowdong 2025-07-09 18:06:56 +08:00
parent 1dedac1926
commit 0ea545d226
1 changed files with 3 additions and 1 deletions

View File

@ -195,7 +195,9 @@ public class ImsOutInventoryServiceImpl implements IImsOutInventoryService
imsOutInventoryDetail.setOutCode(imsOutInventory.getOutCode());
imsOutInventoryDetail.setCreateBy(SecurityUtils.getUsername());
imsOutInventoryDetail.setCreateTime(DateUtils.getNowDate());
imsOutInventoryDetail.setImgUrl("");
if(Objects.isNull(imsOutInventoryDetail.getImgUrl())) {
imsOutInventoryDetail.setImgUrl("");
}
if(Objects.isNull(imsOutInventoryDetail.getTotalPrice())) {
imsOutInventoryDetail.setTotalPrice(0L);
}