Showing
3 changed files
with
4 additions
and
1 deletions
| ... | ... | @@ -249,7 +249,7 @@ public class ReceiptLedgerInfoController extends DefaultBaseController { |
| 249 | 249 | //存款平账 |
| 250 | 250 | UpdateReceiptLedgerInfoVo updateVo1 = new UpdateReceiptLedgerInfoVo(); |
| 251 | 251 | updateVo1.setId(result.get(0).getId()); |
| 252 | - receiptLedgerInfoService.depositReconciliation(updateVo); | |
| 252 | + receiptLedgerInfoService.depositReconciliation(updateVo1); | |
| 253 | 253 | } else { |
| 254 | 254 | throw new DefaultClientException("没有匹配的存款台账明细数据!"); |
| 255 | 255 | } | ... | ... |
| ... | ... | @@ -318,6 +318,7 @@ public class ReceiptLedgerInfoServiceImpl extends BaseMpServiceImpl<ReceiptLedge |
| 318 | 318 | data.setEndAccountReceivable(quantity.negate()); |
| 319 | 319 | } |
| 320 | 320 | data.setApplyStatus(vo.getApplyStatus()); |
| 321 | + data.setDebtStatus(vo.getDebtStatus()); | |
| 321 | 322 | data.setCoordinateDate(vo.getCoordinateDate()); |
| 322 | 323 | data.setRemark(vo.getRemark()); |
| 323 | 324 | data.setSecondCoordinateDate(vo.getSecondCoordinateDate()); | ... | ... |
| ... | ... | @@ -166,6 +166,7 @@ |
| 166 | 166 | returned_amount, |
| 167 | 167 | end_account_receivable, |
| 168 | 168 | apply_status, |
| 169 | + debt_status, | |
| 169 | 170 | coordinate_date, |
| 170 | 171 | remark, |
| 171 | 172 | second_coordinate_date, |
| ... | ... | @@ -200,6 +201,7 @@ |
| 200 | 201 | #{item.returnedAmount}, |
| 201 | 202 | #{item.endAccountReceivable}, |
| 202 | 203 | #{item.applyStatus}, |
| 204 | + #{item.debtStatus}, | |
| 203 | 205 | #{item.coordinateDate}, |
| 204 | 206 | #{item.remark}, |
| 205 | 207 | #{item.secondCoordinateDate}, | ... | ... |