diff --git a/jshERP-web/src/views/financial/ItemInList.vue b/jshERP-web/src/views/financial/ItemInList.vue
index a8e23893..190d2665 100644
--- a/jshERP-web/src/views/financial/ItemInList.vue
+++ b/jshERP-web/src/views/financial/ItemInList.vue
@@ -81,6 +81,15 @@
+
+
+
+
+ {{ item.name }}
+
+
+
+
@@ -176,6 +185,7 @@
creator: undefined,
handsPersonId: undefined,
accountId: undefined,
+ inOutItemId: undefined,
status: undefined,
remark: ""
},
@@ -217,6 +227,7 @@
this.initUser()
this.initPerson()
this.initAccount()
+ this.initInOutItem('in')
},
methods: {
}
diff --git a/jshERP-web/src/views/financial/ItemOutList.vue b/jshERP-web/src/views/financial/ItemOutList.vue
index 6d417b25..c3df6cf7 100644
--- a/jshERP-web/src/views/financial/ItemOutList.vue
+++ b/jshERP-web/src/views/financial/ItemOutList.vue
@@ -81,6 +81,15 @@
+
+
+
+
+ {{ item.name }}
+
+
+
+
@@ -176,6 +185,7 @@
creator: undefined,
handsPersonId: undefined,
accountId: undefined,
+ inOutItemId: undefined,
status: undefined,
remark: ""
},
@@ -217,6 +227,7 @@
this.initUser()
this.initPerson()
this.initAccount()
+ this.initInOutItem('out')
},
methods: {
}
diff --git a/jshERP-web/src/views/financial/MoneyInList.vue b/jshERP-web/src/views/financial/MoneyInList.vue
index 0521a7aa..17030340 100644
--- a/jshERP-web/src/views/financial/MoneyInList.vue
+++ b/jshERP-web/src/views/financial/MoneyInList.vue
@@ -82,13 +82,13 @@
-
-
+
+
-
-
+
+
diff --git a/jshERP-web/src/views/financial/MoneyOutList.vue b/jshERP-web/src/views/financial/MoneyOutList.vue
index 0aecf6ac..c4a5b02b 100644
--- a/jshERP-web/src/views/financial/MoneyOutList.vue
+++ b/jshERP-web/src/views/financial/MoneyOutList.vue
@@ -82,13 +82,13 @@
-
-
+
+
-
-
+
+
diff --git a/jshERP-web/src/views/financial/mixins/FinancialListMixin.js b/jshERP-web/src/views/financial/mixins/FinancialListMixin.js
index 97fd15a9..fcdd56dc 100644
--- a/jshERP-web/src/views/financial/mixins/FinancialListMixin.js
+++ b/jshERP-web/src/views/financial/mixins/FinancialListMixin.js
@@ -1,5 +1,7 @@
-import {findFinancialDetailByNumber, findBySelectSup, findBySelectCus, findBySelectOrgan, findBySelectRetail,
- getUserList, getPersonByType, getAccount, getCurrentSystemConfig, getPlatformConfigByKey} from '@/api/api'
+import {
+ findFinancialDetailByNumber, findBySelectSup, findBySelectCus, findBySelectOrgan, findBySelectRetail,
+ getUserList, getPersonByType, getAccount, getCurrentSystemConfig, getPlatformConfigByKey, findInOutItemByParam
+} from '@/api/api'
import { getCheckFlag, getFormatDate, getPrevMonthFormatDate } from '@/utils/util'
import Vue from 'vue'
import moment from 'moment'
@@ -20,6 +22,7 @@ export const FinancialListMixin = {
userList: [],
personList: [],
accountList: [],
+ inOutItemList: [],
queryParam: {
beginTime: getPrevMonthFormatDate(3),
endTime: getFormatDate(),
@@ -162,8 +165,14 @@ export const FinancialListMixin = {
initAccount() {
getAccount({}).then((res)=>{
if(res && res.code === 200) {
- let list = res.data.accountList
- this.accountList = list
+ this.accountList = res.data.accountList
+ }
+ })
+ },
+ initInOutItem(type) {
+ findInOutItemByParam({type:type}).then((res)=>{
+ if(res) {
+ this.inOutItemList = res
}
})
},