Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
fa4510dc
Commit
fa4510dc
authored
Oct 09, 2022
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
into dev
parents
e08e8e15
449961c6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
14 deletions
+35
-14
creatCollection.vue
src/views/ecw/financial/creatCollection.vue
+17
-10
creatPayment.vue
src/views/ecw/financial/creatPayment.vue
+18
-4
No files found.
src/views/ecw/financial/creatCollection.vue
View file @
fa4510dc
...
...
@@ -137,7 +137,7 @@
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
discountTotal
?
`${scope.row.discountTotal
}
`
:
0
}}
<
/span
>
<
dict
-
tag
:
type
=
"
DICT_TYPE.BOX_SHIPPING_PRICE_UNIT
"
:
value
=
"
scope.row.currencyId
"
/>
<
span
>
{{
scope
.
row
.
discountRemark
?(
'
(
'
+
scope
.
row
.
discountRemark
+
'
)
'
):
''
}}
<
/span
>
<
span
v
-
if
=
"
scope.row.discountTotal
"
>
{{
scope
.
row
.
discountRemark
?(
'
(
'
+
scope
.
row
.
discountRemark
+
'
)
'
):
''
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"
操作
"
align
=
"
center
"
>
...
...
@@ -262,7 +262,7 @@
<
/el-table-column
>
<
el
-
table
-
column
label
=
"
应收金额
"
align
=
"
center
"
prop
=
"
receivableAmount
"
>
<
template
slot
-
scope
=
"
scope
"
v
-
if
=
"
scope.row.type !== 'total'
"
>
{{
`${
scope.row.receivableAmount - scope.row.discountTotal
}
(${scope.row.receivableAmount
}
- ${scope.row.discountTotal
}
)
`
}}
{{
`${
NP.minus(scope.row.receivableAmount, scope.row.discountTotal)
}
${scope.row.discountTotal > 0 ? `
(
$
{
scope
.
row
.
receivableAmount
}
-
$
{
scope
.
row
.
discountTotal
}
)
` : ''
}
`
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
align
=
"
center
"
width
=
"
220
"
>
...
...
@@ -648,6 +648,7 @@ export default {
}
,
data
()
{
return
{
NP
,
loadings
:
false
,
loading1
:
false
,
uploadFileUrl
:
process
.
env
.
VUE_APP_BASE_API
+
"
/app-api/file/upload
"
,
// 上传的图片服务器地址
...
...
@@ -688,7 +689,8 @@ export default {
discountVisible
:
false
,
discountForm
:
{
}
,
selectListRow
:
{
}
,
selectListIndex
:
0
selectListIndex
:
0
,
flag
:
false
}
;
}
,
async
created
()
{
...
...
@@ -700,6 +702,7 @@ export default {
let
that
=
this
;
if
(
that
.
$route
.
query
.
id
)
{
this
.
flag
=
true
this
.
id
=
this
.
$route
.
query
.
id
;
console
.
log
(
this
.
id
)
getReceiptInfoByIds
({
id
:
this
.
id
}
).
then
(
res
=>
{
...
...
@@ -991,17 +994,21 @@ export default {
return
NP
.
divide
(
this
.
currencyList
.
find
(
v
=>
v
.
titleEn
===
'
NGN
'
).
huilv
,
100
).
toFixed
(
6
)
}
,
customerChange
(
value
)
{
if
(
this
.
flag
)
{
this
.
flag
=
false
return
}
this
.
form
.
customerName
=
value
.
name
this
.
form
.
customerId
&&
getCustomer
(
this
.
form
.
customerId
).
then
(
res
=>
{
this
.
form
=
{
...
this
.
form
,
invoice
:
this
.
form
.
invoice
||
res
.
data
.
invoiceTitle
,
taxpayer
:
this
.
form
.
taxpayer
||
res
.
data
.
licenseNumber
,
accountBank
:
this
.
form
.
accountBank
||
res
.
data
.
bank
,
accountName
:
this
.
form
.
accountName
||
res
.
data
.
bankNumber
,
projectName
:
this
.
form
.
projectName
||
res
.
data
.
project
,
taxRate
:
this
.
form
.
taxRate
||
res
.
data
.
taxRate
,
addressPhone
:
this
.
form
.
addressPhone
||
`${res.data.billingAddress || ''
}
/${res.data.billingTell || ''
}
`
,
invoice
:
res
.
data
.
invoiceTitle
,
taxpayer
:
res
.
data
.
licenseNumber
,
accountBank
:
res
.
data
.
bank
,
accountName
:
res
.
data
.
bankNumber
,
projectName
:
res
.
data
.
project
,
taxRate
:
res
.
data
.
taxRate
,
addressPhone
:
`${res.data.billingAddress || ''
}
/${res.data.billingTell || ''
}
`
,
}
}
)
}
,
...
...
src/views/ecw/financial/creatPayment.vue
View file @
fa4510dc
...
...
@@ -246,7 +246,7 @@
</el-form>
</el-card>
<div
slot=
"footer"
style=
"margin: 20px 0"
>
<
el-button
type=
"primary"
@
click=
"submitDraft"
>
保 存
</el-button
>
<
!-- <el-button type="primary" @click="submitDraft">保 存</el-button> --
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
新 增
</el-button>
</div>
<el-dialog
...
...
@@ -416,6 +416,8 @@ import { listSimpleDepts } from "@/api/system/dept";
import
{
getTradeCityList
}
from
"
@/api/ecw/region
"
;
import
{
getSupplierPage
,
getSupplier
}
from
"
@/api/ecw/supplier
"
;
import
{
getPayableList
,
getPayableInfoByIds
,
createPayment
,
getPaymentInfoByIds
,
getPaymentItem
,
updatePayment
}
from
"
@/api/ecw/financial
"
import
{
getCurrencyPage
}
from
"
@/api/ecw/currency
"
;
import
NP
from
'
number-precision
'
export
default
{
name
:
"
CreatPayment
"
,
components
:
{
...
...
@@ -448,10 +450,12 @@ export default {
},
multipleSelection
:
[],
tradeCityList
:
[],
allSupplier
:
[]
allSupplier
:
[],
currencyList
:
[],
};
},
created
()
{
async
created
()
{
await
getCurrencyPage
(
this
.
params
).
then
(
res
=>
this
.
currencyList
=
res
.
data
.
list
)
let
that
=
this
;
if
(
that
.
$route
.
query
.
payableId
&&
that
.
$route
.
query
.
payableId
!==
'
0
'
)
{
this
.
payableId
=
this
.
$route
.
query
.
payableId
;
...
...
@@ -627,8 +631,18 @@ export default {
// t && (this.bankData = t.bankList)
},
handleQuery
()
{},
UStoRMB
()
{
return
NP
.
divide
(
this
.
currencyList
.
find
(
v
=>
v
.
titleEn
===
'
USD
'
).
huilv
,
100
).
toFixed
(
6
)
},
NANtoRMB
()
{
return
NP
.
divide
(
this
.
currencyList
.
find
(
v
=>
v
.
titleEn
===
'
NGN
'
).
huilv
,
100
).
toFixed
(
6
)
},
handleSelectionChange
(
val
)
{
this
.
multipleSelection
=
val
;
this
.
multipleSelection
=
val
.
map
(
v
=>
{
if
(
v
.
currencyId
===
1
)
return
Object
.
assign
(
v
,
{
exchangeRate
:
this
.
UStoRMB
()
})
if
(
v
.
currencyId
===
2
)
return
Object
.
assign
(
v
,
{
exchangeRate
:
1
})
if
(
v
.
currencyId
===
3
)
return
Object
.
assign
(
v
,
{
exchangeRate
:
this
.
NANtoRMB
()
})
});
},
hiddenDialog
()
{
this
.
open
=
false
;
...
...
Write
Preview
Markdown
is supported
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