Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
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
罗超
SuperMan
Commits
2f33d328
Commit
2f33d328
authored
Apr 15, 2020
by
黄媛媛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
93cfac96
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
632 additions
and
2 deletions
+632
-2
DocumentStatistics.vue
src/components/FinancialModule/DocumentStatistics.vue
+1
-0
OutstandingAccounts.vue
src/components/FinancialModule/OutstandingAccounts.vue
+601
-0
addFinancialDocuments.vue
src/components/FinancialModule/addFinancialDocuments.vue
+22
-2
config.js
src/router/config.js
+8
-0
No files found.
src/components/FinancialModule/DocumentStatistics.vue
View file @
2f33d328
...
...
@@ -502,6 +502,7 @@ export default {
Remark
:
''
,
VoucherList
:[],
}
this
.
saveMsg
=
[];
},
...
...
src/components/FinancialModule/OutstandingAccounts.vue
0 → 100644
View file @
2f33d328
This diff is collapsed.
Click to expand it.
src/components/FinancialModule/addFinancialDocuments.vue
View file @
2f33d328
...
...
@@ -551,6 +551,19 @@
</div>
</div>
</div>
<el-dialog
title=
"提示"
:visible
.
sync=
"maxmoneyTips"
width=
"380px"
>
<div
style=
"margin: 0px 0 15px 0;"
>
<p><span
style=
"color: #e6a23c;font-size: 16px;"
class=
"el-notification__icon el-icon-warning"
></span>
根据公司规定,每张付款单不能超过{{maxmoneyData}}元。
</p>
<p
style=
"padding-left: 23px;margin-top: 10px;"
>
超过需额外制单,谢谢配合!
</p>
</div>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
size=
"small"
@
click=
"maxmoneyTips = false"
>
取 消
</el-button>
<el-button
size=
"small"
type=
"danger"
@
click=
"maxmoneyTips=false"
>
确 定
</el-button>
</span>
</el-dialog>
</div>
</template>
<
script
>
...
...
@@ -627,6 +640,7 @@ export default {
emplyeeName
:
''
,
allPrice
:
0
,
allPriceTo
:
''
,
allPriceTocalc
:
''
,
chinaAllPrice
:
this
.
$commonUtils
.
changeMoneyToChinese
(
this
.
allPrice
),
DepartIDs
:
'0'
,
GetDetail
:{},
...
...
@@ -672,6 +686,7 @@ export default {
XSTC
:
false
,
czmsg
:{},
czmsgState
:
false
,
maxmoneyTips
:
false
,
}
},
methods
:{
...
...
@@ -920,8 +935,9 @@ export default {
// }
}
// 判断付款金额与最大金额
if
(
this
.
maxmoneyData
>
0
&&
this
.
allPriceTo
>
this
.
maxmoneyData
){
this
.
Error
(
`根据公司规定,每张付款单不能超过
${
this
.
maxmoneyData
}
元,超过需额外制单,谢谢配合!`
)
if
(
Number
(
this
.
maxmoneyData
)
>
0
&&
(
Number
(
this
.
allPriceTocalc
)
>
Number
(
this
.
maxmoneyData
))){
this
.
maxmoneyTips
=
true
;
return
;
}
//旅客名单数据组装
...
...
@@ -1027,6 +1043,8 @@ export default {
this
.
$forceUpdate
()
this
.
allPrice
=
allPrice
;
this
.
allPriceTo
=
this
.
$commonUtils
.
addCommas
(
Math
.
round
(
this
.
allPrice
*
100
)
/
100
)
this
.
allPriceTocalc
=
Math
.
round
(
this
.
allPrice
*
100
)
/
100
this
.
chinaAllPrice
=
this
.
$commonUtils
.
changeMoneyToChinese
(
this
.
allPrice
)
this
.
detailList
=
{
ID
:
0
,
...
...
@@ -1314,6 +1332,8 @@ export default {
});
this
.
allPrice
=
allPrice
;
this
.
allPriceTo
=
this
.
$commonUtils
.
addCommas
(
Math
.
round
(
this
.
allPrice
*
100
)
/
100
)
this
.
allPriceTocalc
=
Math
.
round
(
this
.
allPrice
*
100
)
/
100
this
.
chinaAllPrice
=
this
.
$commonUtils
.
changeMoneyToChinese
(
this
.
allPrice
)
this
.
BillName
=
data
.
CompanyName
;
this
.
BillSonName
=
data
.
FinanceName
;
...
...
src/router/config.js
View file @
2f33d328
...
...
@@ -3583,6 +3583,14 @@ export default {
title
:
'财务单据'
},
},
{
path
:
'/OutstandingAccounts'
,
name
:
'OutstandingAccounts'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/OutstandingAccounts'
],
resolve
),
meta
:
{
title
:
'审核未付账'
},
},
{
path
:
'/JumpReport'
,
name
:
'JumpReport'
,
...
...
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