Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
罗超
confucius
Commits
84412a3b
Commit
84412a3b
authored
Oct 25, 2022
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
03217780
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
1 deletion
+33
-1
LemonCloudSubjects.vue
src/pages/financial/Kingdee/LemonCloudSubjects.vue
+1
-1
RecPayQuery.vue
src/pages/financial/Kingdee/RecPayQuery.vue
+32
-0
No files found.
src/pages/financial/Kingdee/LemonCloudSubjects.vue
View file @
84412a3b
...
...
@@ -144,7 +144,7 @@
</li>
</ul>
</div>
<div
class=
"cm_content _scrollbar"
style=
"position: absolute;top:117px;bottom:
5
0px;left: 15px;right:15px;overflow-y: scroll;"
>
<div
class=
"cm_content _scrollbar"
style=
"position: absolute;top:117px;bottom:
10
0px;left: 15px;right:15px;overflow-y: scroll;"
>
<table
class=
"po_content singeRowTable"
style=
"border:1px solid #E6E6E6;"
cellspacing=
"0"
...
...
src/pages/financial/Kingdee/RecPayQuery.vue
View file @
84412a3b
...
...
@@ -487,7 +487,23 @@
<div
class=
"page_fnDm page_RecPayQuery page-body"
@
keyup
.
enter=
"resetPageIndex(),getPageList()"
>
<div
class=
"query-box"
>
<el-form
class=
"_info_box clearfix"
label-width=
"110px"
>
<el-row
style=
"padding:15px 20px 0 0;"
>
<el-col
:span=
"4"
>
<el-form-item
label=
"公司:"
>
<el-select
filterable
v-model=
'msg.KingdeeBranchId'
placeholder=
"请选择公司"
@
keyup
.
native=
"checkInteger(msg,'RB_Branch_Id')"
>
<!--
<el-option
label=
"不限"
value=
0
></el-option>
-->
<el-option
v-for=
"(item,index) in TheAliasList"
:label=
"item.Name"
:value=
'item.Id'
:key=
"index"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"凭证字:"
>
<el-input
placeholder=
""
class=
""
v-model=
"msg.FinanceName"
@
keyup
.
native=
"checkInteger(msg,'FinanceName')"
maxlength=
"8"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"单号:"
>
<el-input
placeholder=
""
class=
""
v-model=
"msg.FrID"
@
keyup
.
native=
"checkInteger(msg,'FrID')"
...
...
@@ -832,6 +848,8 @@
EmployeeId
:
''
,
// 是 [string] 查看
TCID
:
''
,
// 是 [string] 查看
OrderID
:
''
,
//
KingdeeBranchId
:
'1'
,
FinanceName
:
'记'
,
},
getCompanyMsg
:
{
// 校区
RB_Group_Id
:
'0'
,
...
...
@@ -915,6 +933,7 @@
getInvoiceList
:[],
costmode
:
false
,
//费用类型的修改弹窗
trabeList
:[],
//修改费用类型的下啦数据
TheAliasList
:[],
}
},
created
()
{
...
...
@@ -931,6 +950,7 @@
this
.
DepartIDs
=
userInfo
.
RB_Department_Id
;
this
.
userId
=
userInfo
.
EmployeeId
;
this
.
msg
.
EmployeeId
=
userInfo
.
EmployeeId
;
this
.
Financial_post_GetEduBranchEnumList
()
this
.
financeinfo_post_GetList
();
this
.
financeinfo_post_GetCostTypeList
();
this
.
FinancialFlowTemplate_post_GetList
();
...
...
@@ -944,6 +964,7 @@
this
.
getPageList
();
this
.
AccountType_post_GetList
();
this
.
get_GetInvoiceTypeEnumList
()
var
that
=
this
;
that
.
MsgBus
.
$on
(
'getRecQuery'
,
function
(
FrID
)
{
that
.
zhuanjiaoMsg
.
CreateBy
=
''
;
...
...
@@ -955,6 +976,16 @@
},
methods
:
{
Financial_post_GetEduBranchEnumList
()
{
this
.
apipost
(
'Financial_post_GetEduBranchEnumList'
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
TheAliasList
=
res
.
data
.
data
;
// this.msg.KingdeeBranchId = this.TheAliasList[0].Id
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
err
=>
{})
},
get_GetInvoiceTypeEnumList
(){
this
.
apipost
(
'Financial_get_GetInvoiceTypeEnumList'
,
{},
res
=>
{
...
...
@@ -1086,6 +1117,7 @@
},
err
=>
{})
},
method5
:
function
()
{
if
(
!
this
.
msg
.
FinanceName
)
return
this
.
Error
(
this
.
$t
(
'请输入凭证字'
));
if
(
!
this
.
msg
.
ClientID
)
this
.
msg
.
ClientID
=
0
;
if
(
!
this
.
msg
.
ClientType
)
this
.
msg
.
ClientType
=
0
;
if
(
!
this
.
msg
.
CurrencyId
)
this
.
msg
.
CurrencyId
=
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