Sfoglia il codice sorgente

[租赁合同][修改][联营扣点]

release_toaliyun_real
gongbiao 7 anni fa
parent
commit
2b496fd95a
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java

+ 2
- 2
mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java Vedi File

@@ -715,10 +715,10 @@ public class WxRentContractServiceImpl implements WxRentContractService {
int size = 0; int size = 0;
int[] priceArrs = null; int[] priceArrs = null;
List<Map<String, Object>> shopInfos = new ArrayList<>(); List<Map<String, Object>> shopInfos = new ArrayList<>();
if (wxRentContract.getRentShopType().equals(EnumRentShopType.SHOP.getCode())) {
if (wxRentContract.getRentShopType().equals(EnumRentShopType.SHOP.getCode()) &&
!wxRentContract.getType().equals(EnumRentContractType.RENT_BY_JOINT.getCode())) {
String rentInfo = wxRentContract.getRentInfo(); String rentInfo = wxRentContract.getRentInfo();
JSONArray rentInfoArray = JSONArray.parseArray(rentInfo); JSONArray rentInfoArray = JSONArray.parseArray(rentInfo);

List<int[]> priceList = computePrice(rentInfo); List<int[]> priceList = computePrice(rentInfo);
size = priceList.size(); size = priceList.size();
priceArrs = new int[size]; priceArrs = new int[size];


Caricamento…
Annulla
Salva