| @@ -1091,6 +1091,8 @@ public class WxBillAllServiceImpl implements WxBillAllService { | |||||
| other = new WxBillOther(); | other = new WxBillOther(); | ||||
| final IdWorker idWorker = IdWorker.get(); | final IdWorker idWorker = IdWorker.get(); | ||||
| other.setId(idWorker.nextId()); | other.setId(idWorker.nextId()); | ||||
| other.setName(bill.getBillAttr()); | |||||
| other.setComments(bill.getBillAttr()); | |||||
| other.setStatus(EnumBillRentStatus.PAID.getCode()); | other.setStatus(EnumBillRentStatus.PAID.getCode()); | ||||
| other.setReceivePay(pay); | other.setReceivePay(pay); | ||||
| other.setReceiveDate(bill.getReceiveDate()); | other.setReceiveDate(bill.getReceiveDate()); | ||||
| @@ -1137,6 +1139,8 @@ public class WxBillAllServiceImpl implements WxBillAllService { | |||||
| otherDepositQuery = new WxBillOtherDeposit(); | otherDepositQuery = new WxBillOtherDeposit(); | ||||
| final IdWorker idWorker = IdWorker.get(); | final IdWorker idWorker = IdWorker.get(); | ||||
| otherDepositQuery.setId(idWorker.nextId()); | otherDepositQuery.setId(idWorker.nextId()); | ||||
| otherDepositQuery.setName(bill.getBillAttr()); | |||||
| otherDepositQuery.setComments(bill.getBillAttr()); | |||||
| otherDepositQuery.setStatus(EnumBillRentStatus.PAID.getCode()); | otherDepositQuery.setStatus(EnumBillRentStatus.PAID.getCode()); | ||||
| otherDepositQuery.setReceivePay(pay); | otherDepositQuery.setReceivePay(pay); | ||||
| otherDepositQuery.setReceiveDate(bill.getReceiveDate()); | otherDepositQuery.setReceiveDate(bill.getReceiveDate()); | ||||