shiyunteng
2025-03-28 06b182905fcb8ea1931f8a6dd69fd6ef2d4928b8
platformx-device-biz/src/main/java/com/by4cloud/platformx/device/service/impl/DeviceLeasingLedgerServiceImpl.java
@@ -67,9 +67,9 @@
          ) {
         for (DeviceLeasingLedgerItem item:deviceLeasingLedger.getLedgerItemList()
         ) {
            if (contractItem.getDeviceId()==item.getDeviceId()){
            if (contractItem.getDeviceId().equals(item.getDeviceId())){
               if (contractItem.getNum()!=item.getNum()) {
                  return R.failed("合同中"+contract.getName()+"设备数量与台账明细中不一致");
                  return R.failed("合同中"+item.getDeviceName()+"设备数量与台账明细中不一致");
               }
            }
         }