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
e2e711c5
Commit
e2e711c5
authored
Jun 06, 2022
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
108bc2d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
95 additions
and
7 deletions
+95
-7
FinancialDocuments.vue
src/components/FinancialModule/FinancialDocuments.vue
+95
-7
No files found.
src/components/FinancialModule/FinancialDocuments.vue
View file @
e2e711c5
...
...
@@ -963,7 +963,11 @@ input[type="number"] {
</el-tooltip>
<el-tooltip
class=
"item"
content=
"手续费设置"
placement=
"top"
v-if=
"active==2 && istransaction == true && item.Type==1"
>
<i
class=
"iconfont icon-zhifupeizhiguanli"
@
click=
"showTranTax(item.FrID)"
></i>
@
click=
"showTranTax(item.FrID,'1')"
></i>
</el-tooltip>
<el-tooltip
class=
"item"
content=
"付款对象设置"
placement=
"top"
v-if=
"active==2 && istransaction == true && item.Type==1"
>
<i
class=
"iconfont icon-zhifupeizhiguanli"
@
click=
"showTranTax(item.FrID,'2')"
></i>
</el-tooltip>
</td>
</tr>
...
...
@@ -1150,6 +1154,42 @@ input[type="number"] {
<el-button
class=
"hollowFixedBtn"
@
click=
"transactionTax=false"
>
{{$t('pub.cancelBtn')}}
</el-button>
<el-button
class=
"normalBtn"
type=
"primary"
@
click=
"saveTransTaxMoney"
:loading=
"transTax.loading"
>
{{$t('pub.sureBtn')}}
</el-button>
</div>
</el-dialog>
<el-dialog
title=
"修改付款对象"
width=
"300px"
:visible
.
sync=
"PaymentSync"
center
:before-close=
"closeChangeMachie"
>
<el-form
class=
"cdForm"
label-width=
"90px"
>
<el-form-item
label=
"客户类型"
prop=
"ClientType"
>
<el-select
filterable
v-model=
'transTax.ClientType'
:placeholder=
"$t('fnc.khleixing')"
@
change=
"GetClientAccountList(transTax.ClientType)"
class=
"w135 _border_b_1"
>
<el-option
v-for=
'item in ClientTypeList'
:label=
'item.Name'
:value=
'item.ID'
:key=
'item.ID'
>
</el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"客户名称"
prop=
"ClientID"
>
<
template
v-if=
"msg.ClientType==7&&msg.IsPublic!=2&&msg.IsPublic!=3"
>
<el-select
v-if=
"msg.IsLeader==1"
filterable
v-model=
'transTax.ClientID'
:placeholder=
"$t('fnc.khmingcheng')"
class=
"w135 _border_b_1"
>
<el-option
v-for=
'item in ClientAccountList'
:label=
'item.Name'
:value=
'item.ID'
:key=
'item.ID'
>
</el-option>
</el-select>
</
template
>
<
template
v-if=
"msg.ClientType!=7&&msg.IsPublic!=2&&msg.IsPublic!=3"
>
<el-select
filterable
v-model=
'transTax.ClientID'
:placeholder=
"$t('fnc.khmingcheng')"
class=
"w135 _border_b_1"
>
<el-option
v-for=
'item in ClientAccountList'
:label=
'item.Name'
:value=
'item.ID'
:key=
'item.ID'
>
</el-option>
</el-select>
</
template
>
<!-- <template v-if="(msg.IsPublic==2||msg.IsPublic==3)&&msg.IsLeader==1">
<el-input v-model='msg.RemitterName' :placeholder="$t('system.ph_name')" class="w135 _border_b_1">
</el-input>
</template> -->
</el-form-item>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
class=
"hollowFixedBtn"
@
click=
"PaymentSync=false"
>
{{$t('pub.cancelBtn')}}
</el-button>
<el-button
class=
"normalBtn"
type=
"primary"
@
click=
"handlingSurePayment"
:loading=
"transTax.loading"
>
{{$t('pub.sureBtn')}}
</el-button>
</div>
</el-dialog>
<el-dialog
title=
"预付款冲抵"
width=
"860px"
:visible
.
sync=
"yfcdState"
center
>
<el-form
class=
"cdForm"
label-width=
"90px"
>
...
...
@@ -1410,8 +1450,11 @@ export default {
transTax
:
{
FrId
:
0
,
Fee
:
"0.0"
,
loading
:
false
}
loading
:
false
,
ClientType
:
''
,
ClientID
:
''
},
PaymentSync
:
false
};
},
created
()
{
...
...
@@ -2124,6 +2167,16 @@ export default {
err
=>
{}
);
},
GetClientAccountList
(
i
)
{
//获取客户名称并且根据费用类型和付款对象获取客户账号
this
.
msg
.
AccountNumber
=
''
;
this
.
transTax
.
ClientID
=
''
this
.
ClientTypeList
.
forEach
(
x
=>
{
if
(
x
.
ID
==
i
)
{
this
.
msg
.
RemitterName
=
x
.
Name
;
this
.
financeinfo_post_GetClientAccountList
(
this
.
transTax
.
ClientType
);
}
})
},
financeinfo_post_GetClientAccountList
(
t
)
{
// 获取对象类型
let
msg
=
{
...
...
@@ -2572,12 +2625,47 @@ export default {
err
=>
{}
);
},
showTranTax
(
fid
)
{
console
.
log
(
fid
);
// 确定付款对象
handlingSurePayment
(){
if
(
this
.
transTax
.
loading
)
return
;
this
.
transTax
.
loading
=
true
;
if
(
this
.
transTax
.
ClientType
&&
this
.
transTax
.
ClientType
!=
""
&&
this
.
transTax
.
ClientID
&&
this
.
transTax
.
ClientID
!=
""
)
{
this
.
apipost
(
"Financial_post_UpdateFinancePayClient"
,
{
FrId
:
this
.
transTax
.
FrId
,
ClientType
:
this
.
transTax
.
ClientType
,
ClientID
:
this
.
transTax
.
ClientID
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
Success
(
"修改成功"
);
this
.
msg
.
RemitterName
=
''
this
.
getPageList
();
this
.
PaymentSync
=
false
;
this
.
transTax
.
FrId
=
''
this
.
transTax
.
ClientType
=
''
this
.
transTax
.
ClientID
=
''
}
this
.
transTax
.
loading
=
false
;
},
err
=>
{
this
.
transTax
.
loading
=
false
;
}
);
}
else
{
this
.
transTax
.
loading
=
false
;
this
.
Error
(
"请选择付款对象"
);
}
},
showTranTax
(
fid
,
type
)
{
this
.
transTax
.
FrId
=
fid
;
this
.
transTax
.
Fee
=
"0.00"
;
this
.
transTax
.
loading
=
false
;
this
.
transactionTax
=
true
;
if
(
type
==
1
){
this
.
transTax
.
Fee
=
"0.00"
;
this
.
transactionTax
=
true
;
}
else
{
this
.
transTax
.
ClientType
=
''
this
.
transTax
.
ClientID
=
''
this
.
PaymentSync
=
true
}
},
saveTransTaxMoney
()
{
if
(
this
.
transTax
.
loading
)
return
;
...
...
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