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
3a98cabc
Commit
3a98cabc
authored
Jul 04, 2025
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1 制单 付款对象 调整为 输入关键字匹配
parent
b7b69832
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
7 deletions
+48
-7
addFinancialDocuments.vue
src/components/FinancialModule/addFinancialDocuments.vue
+48
-7
No files found.
src/components/FinancialModule/addFinancialDocuments.vue
View file @
3a98cabc
...
...
@@ -470,14 +470,18 @@
<el-option
:label=
'$t("fnc.lslingdui")'
:value=
'0'
:key=
'0'
>
</el-option>
</el-select>
-->
<template
v-if=
"msg.ClientType==7&&msg.IsPublic!=2&&msg.IsPublic!=3&&!showDisable"
>
<el-select
v-if=
"msg.IsLeader==1"
filterable
v-model=
'msg.ClientID'
:placeholder=
"$t('fnc.khmingcheng')"
<el-select
v-if=
"msg.IsLeader==1"
filterable
v-model=
'msg.ClientID'
:placeholder=
"$t('pub.PleaseKeyWords')+'/'+$t('fnc.khmingcheng')"
remote
reserve-keyword
:remote-method=
"financeinfo_post_GetClientAccountListToKey"
@
change=
"GetClientAccountList(msg.ClientID)"
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&&!showDisable"
>
<el-select
filterable
v-model=
'msg.ClientID'
:placeholder=
"$t('fnc.khmingcheng')"
<el-select
filterable
v-model=
'msg.ClientID'
:placeholder=
"$t('pub.PleaseKeyWords')+'/'+$t('fnc.khmingcheng')"
remote
reserve-keyword
:remote-method=
"financeinfo_post_GetClientAccountListToKey"
@
change=
"GetClientAccountList(msg.ClientID)"
class=
"w135 _border_b_1"
>
<el-option
v-for=
'item in ClientAccountList'
:label=
'item.Name'
:value=
'item.ID'
:key=
'item.ID'
>
</el-option>
...
...
@@ -2316,7 +2320,9 @@
ID
:
0
,
Type
:
t
,
ObjID
:
0
,
CardNum
:
''
CardNum
:
''
,
IsAddFinance
:
true
,
KeyWord
:
''
}
if
(
i
>=
0
)
{
msg
.
ID
=
i
;
...
...
@@ -2361,15 +2367,50 @@
}
}
,
err
=>
{
}
)
}
,
financeinfo_post_GetClientAccountListEdit
(
t
)
{
//获取付款 对象类型 修改用
financeinfo_post_GetClientAccountListToKey
(
query
)
{
//获取付款 对象类型 新增用
let
msg
=
{
ID
:
0
,
Type
:
this
.
msg
.
ClientType
,
ObjID
:
0
,
CardNum
:
''
,
IsAddFinance
:
true
,
KeyWord
:
query
}
this
.
apipost
(
'financeinfo_post_GetClientAccountList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
let
data
=
res
.
data
.
data
;
let
ClientAccountList
=
[];
data
.
forEach
(
x
=>
{
let
obj
=
{
ID
:
x
.
ID
,
Name
:
x
.
AccountHolder
+
`(${x.AccountAlias
}
)`
,
Nom
:
x
.
CardNum
,
OpenBankName
:
x
.
OpenBankName
,
ObjID
:
x
.
ObjID
,
ClientAccountType
:
x
.
ClientAccountType
,
}
ClientAccountList
.
push
(
obj
)
}
)
this
.
ClientAccountList
=
ClientAccountList
;
}
}
,
err
=>
{
}
)
}
,
financeinfo_post_GetClientAccountListEdit
(
t
,
id
)
{
//获取付款 对象类型 修改用
let
msg
=
{
ID
:
0
,
Type
:
t
,
ObjID
:
0
,
CardNum
:
''
CardNum
:
''
,
IsAddFinance
:
true
,
}
if
(
id
&&
id
>
0
){
msg
.
ID
=
id
;
}
if
(
this
.
czmsg
&&
this
.
czmsg
.
ClientID
)
{
msg
.
ID
=
this
.
czmsg
.
ClientID
;
}
}
this
.
apipost
(
'financeinfo_post_GetClientAccountList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
let
data
=
res
.
data
.
data
;
...
...
@@ -2567,7 +2608,7 @@
this
.
msg
.
PayDate
=
this
.
msg
.
PayDate
;
this
.
msg
.
detailList
=
[];
this
.
FinancialFlowTemplate_post_GetProcessList
(
data
.
TemplateId
);
this
.
financeinfo_post_GetClientAccountListEdit
(
data
.
ClientType
);
this
.
financeinfo_post_GetClientAccountListEdit
(
data
.
ClientType
,
data
.
ClientID
);
this
.
Financial_post_GetCostTypeList
(
data
.
TemplateId
,
2
);
let
allPrice
=
0
let
yballPrice
=
0
...
...
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