Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
6f839bf7
Commit
6f839bf7
authored
Jul 10, 2021
by
季圣华
Browse files
去除零售的多账户
parent
ff9e778a
Changes
2
Hide whitespace changes
Inline
Side-by-side
jshERP-web/src/views/bill/modules/RetailBackModal.vue
View file @
6f839bf7
...
...
@@ -113,6 +113,7 @@
import
{
JEditableTableMixin
}
from
'
@/mixins/JEditableTableMixin
'
import
{
BillModalMixin
}
from
'
../mixins/BillModalMixin
'
import
{
getMpListShort
}
from
"
@/utils/util
"
import
{
getAccount
}
from
'
@/api/api
'
import
{
getAction
}
from
'
@/api/manage
'
import
JUpload
from
'
@/components/jeecg/JUpload
'
import
JDate
from
'
@/components/jeecg/JDate
'
...
...
@@ -241,6 +242,13 @@
rows
:
JSON
.
stringify
(
detailArr
),
}
},
initAccount
(){
getAccount
({}).
then
((
res
)
=>
{
if
(
res
&&
res
.
code
===
200
)
{
this
.
accountList
=
res
.
data
.
accountList
}
})
},
//改变实收金额、收款金额的值
autoChangePrice
(
target
)
{
let
allLastMoney
=
target
.
statisticsColumns
.
allPrice
...
...
jshERP-web/src/views/bill/modules/RetailOutModal.vue
View file @
6f839bf7
...
...
@@ -113,6 +113,7 @@
import
{
JEditableTableMixin
}
from
'
@/mixins/JEditableTableMixin
'
import
{
BillModalMixin
}
from
'
../mixins/BillModalMixin
'
import
{
getMpListShort
}
from
"
@/utils/util
"
import
{
getAccount
}
from
'
@/api/api
'
import
{
getAction
}
from
'
@/api/manage
'
import
JUpload
from
'
@/components/jeecg/JUpload
'
import
JDate
from
'
@/components/jeecg/JDate
'
...
...
@@ -252,6 +253,13 @@
initPayTypeList
()
{
this
.
payTypeList
.
push
({
"
value
"
:
"
现付
"
,
"
text
"
:
"
现付
"
})
},
initAccount
(){
getAccount
({}).
then
((
res
)
=>
{
if
(
res
&&
res
.
code
===
200
)
{
this
.
accountList
=
res
.
data
.
accountList
}
})
},
//选择会员的触发事件
onChangeOrgan
(
value
)
{
getAction
(
"
/supplier/info
"
,
{
id
:
value
}).
then
(
res
=>
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment