CZT
2023-09-04 fae4bd828a6b81b95f53e285fcb4749fbd80c7bf
igds-core/src/main/java/com/ld/igds/common/impl/CommonDataServiceImpl.java
@@ -84,7 +84,7 @@
        //重新排序
        Collator sortChina = Collator.getInstance(Locale.CHINA);
        Collections.sort(list, (a, b) -> sortChina.compare(a.getId(), b.getId()));
        Collections.sort(list, (a, b) -> sortChina.compare(a.getName(), b.getName()));
        return list;
    }
@@ -330,6 +330,7 @@
            param.setCompanyId(store.getCompanyId());
            param.setDepotId(store.getDepotId());
            param.setWeight(store.getStorageReal());
            param.setDepotStatus(store.getDepotStatus());
            commonMapper.updateDepotStorage(param);
        }