From 29333b4a484dd6821c3c13d4bd8b9c080f3cbe83 Mon Sep 17 00:00:00 2001 From: gongbiao Date: Sat, 15 Feb 2020 22:30:45 +0800 Subject: [PATCH] =?UTF-8?q?[=E7=A7=9F=E9=87=91=E7=89=A9=E4=B8=9A=E5=90=88?= =?UTF-8?q?=E5=90=8C][=E4=BF=AE=E6=94=B9][=E8=A1=A5=E5=BD=95=E6=97=B6?= =?UTF-8?q?=E7=89=A9=E4=B8=9A=E5=90=88=E5=90=8C=E5=8F=8A=E8=B4=A6=E5=8D=95?= =?UTF-8?q?=E7=8A=B6=E6=80=81]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../iformall/service/impl/WxRentContractServiceImpl.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java index 8993f7b82..bda45c77b 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java @@ -1763,13 +1763,8 @@ public class WxRentContractServiceImpl implements WxRentContractService { //查签约 WxPropertyContract wxPropertyContract = new WxPropertyContract(); wxPropertyContract.setRentContractId(record.getId()); - wxPropertyContract.setStatus(EnumRentContractStatus.WAIT_SIGN.getCode()); WxPropertyContract propertyContract = wxPropertyContractMapper.selectOne(new QueryWrapper(wxPropertyContract)); - //查补录 - if(propertyContract==null){ - wxPropertyContract.setStatus(EnumRentContractStatus.SUPPLE.getCode()); - propertyContract = wxPropertyContractMapper.selectOne(new QueryWrapper(wxPropertyContract)); - } + logger.info("物业合同状态及账单状态修改:{}",propertyContract); if (propertyContract != null) { propertyContract.setMerchantId(record.getMerchantId()); wxPropertyContractMapper.updateById(propertyContract);