diff --git a/jshERP-web/src/views/report/modules/AccountInOutList.vue b/jshERP-web/src/views/report/modules/AccountInOutList.vue index dbe14fd3..bdf3c983 100644 --- a/jshERP-web/src/views/report/modules/AccountInOutList.vue +++ b/jshERP-web/src/views/report/modules/AccountInOutList.vue @@ -80,12 +80,15 @@ if (r.aList && r.amList) { let aListArr = r.aList.toString().split(","); let amListArr = r.amList.toString().split(","); - let res = ""; + let res = 0; for (let i = 0; i < aListArr.length; i++) { if (aListArr[i] == r.accountId) { res = amListArr[i]; } } + if(res>0) { + res = '+' + res + } return res + "[多账户]"; } else {