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
c83fc035
Commit
c83fc035
authored
Oct 27, 2022
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
fa13f9b7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
1712 additions
and
0 deletions
+1712
-0
cssReset.css
src/assets/css/cssReset.css
+1
-0
LemonCloudSubjects.vue
...components/FinancialModule/Kingdee/LemonCloudSubjects.vue
+507
-0
RecPayQuery.vue
src/components/FinancialModule/Kingdee/RecPayQuery.vue
+0
-0
SubjectContrast.vue
src/components/FinancialModule/Kingdee/SubjectContrast.vue
+0
-0
currency.vue
src/components/FinancialModule/Kingdee/currency.vue
+536
-0
project.vue
src/components/FinancialModule/Kingdee/project.vue
+0
-0
bank.vue
src/components/FinancialModule/Kingdee/suject/bank.vue
+142
-0
cash.vue
src/components/FinancialModule/Kingdee/suject/cash.vue
+135
-0
cost.vue
src/components/FinancialModule/Kingdee/suject/cost.vue
+350
-0
config.js
src/router/config.js
+41
-0
No files found.
src/assets/css/cssReset.css
View file @
c83fc035
...
...
@@ -1010,6 +1010,7 @@ input:-webkit-autofill {
text-align
:
center
;
padding
:
20px
;
width
:
100%
;
font-size
:
14px
;
}
.el-loading-spinner
.path
{
...
...
src/components/FinancialModule/Kingdee/LemonCloudSubjects.vue
0 → 100644
View file @
c83fc035
This diff is collapsed.
Click to expand it.
src/components/FinancialModule/Kingdee/RecPayQuery.vue
0 → 100644
View file @
c83fc035
src/components/FinancialModule/Kingdee/SubjectContrast.vue
0 → 100644
View file @
c83fc035
src/components/FinancialModule/Kingdee/currency.vue
0 → 100644
View file @
c83fc035
This diff is collapsed.
Click to expand it.
src/components/FinancialModule/Kingdee/project.vue
0 → 100644
View file @
c83fc035
src/components/FinancialModule/Kingdee/suject/bank.vue
0 → 100644
View file @
c83fc035
<
style
scoped
>
@import
"../../../../assets/css/cssReset.css"
;
.tagF
{
margin-right
:
5px
;
}
</
style
>
<
template
>
<div>
<table
class=
"po_content singeRowTable"
style=
"border:1px solid #E6E6E6;"
cellspacing=
"0"
cellpadding=
"0"
v-loading=
"loading"
>
<tr>
<th>
账户名称
</th>
<th>
别名
</th>
<th>
开户人
</th>
<th>
类型
</th>
<th>
关联科目
</th>
<th
width=
"150px"
>
操作
</th>
</tr>
<tr
v-for=
"(item,index) in list"
:key=
"index"
>
<td>
{{
item
.
BackName
}}
</td>
<td>
{{
item
.
Alias
}}
</td>
<td>
{{
item
.
Accountholder
}}
</td>
<td>
{{
item
.
TypeName
}}
</td>
<td
style=
"white-space: warp;"
>
<p
style=
"padding: 3px 0;"
v-for=
"(i,indexs) in item.KingdeeList"
:key=
"indexs"
>
<span
class=
"q-mr-xs"
>
{{
i
.
BranchName
}}
:
</span>
<el-tag
size=
"mini"
class=
"tagF"
closable
@
close=
"Delete(item,i)"
>
{{
i
.
KingdeeName
}}
<span
class=
"q-ml-xs"
>
{{
i
.
KingdeeCode
}}
</span>
</el-tag>
</p>
</td>
<td
width=
"150px"
>
<span
class=
"a"
style=
"cursor: pointer;color:blue;text-decoration:underline;margin-right: 5px"
@
click=
"AddR(item)"
>
新增
</span>
<!--
<el-select
v-if=
"item.KingdeeList.length>0"
style=
"width:100px"
size=
"mini"
v-model=
"item.SubjectId"
@
change=
"Delete($event,item)"
placeholder=
"选择删除"
>
<el-option
v-for=
"(i,indexs) in item.KingdeeList"
:key=
"indexs"
:label=
"i.KingdeeName"
:value=
'i.SubjectId'
></el-option>
</el-select>
-->
<!--
<span
style=
"cursor: pointer;color:red;text-decoration:underline;"
@
click=
"Delete(item)"
>
删除
</span>
-->
</td>
</tr>
</table>
<div
class=
"noData"
v-if=
"list&&list.length==0"
>
{{
$t
(
'system.content_noData'
)
}}
</div>
</div>
</
template
>
<
script
>
export
default
{
props
:
{
list
:
{
type
:
Array
,
default
:
null
},
loading
:
{
type
:
Boolean
,
default
:
null
},
type
:
{
type
:
Number
,
default
:
null
}
},
data
()
{
return
{
}
},
watch
:
{
list
:
{
handler
(
val
)
{
this
.
list
=
val
},
deep
:
true
},
loading
:
{
handler
(
val
)
{
this
.
loading
=
val
},
deep
:
true
},
type
:
{
handler
(
val
)
{
this
.
type
=
val
},
deep
:
true
}
},
created
(){
},
mounted
(){
},
methods
:
{
Delete
(
item
,
i
){
let
_this
=
this
let
msg
=
{
Type
:
this
.
type
,
TargetId
:
item
.
ID
,
SubjectId
:
i
.
SubjectId
,
}
this
.
$q
.
dialog
({
title
:
'将删除此科目数据'
,
message
:
'是否继续?'
,
cancel
:
true
,
persistent
:
true
,
ok
:
"确定"
,
cancel
:
"取消"
,
}).
onOk
(()
=>
{
this
.
apipost
(
'Financial_post_DelCostTypeKingdeeRelation'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
$q
.
notify
({
icon
:
'iconfont icon-chenggong'
,
color
:
'accent'
,
timeout
:
2000
,
message
:
res
.
data
.
Message
,
position
:
'top'
});
this
.
$emit
(
'success'
);
}
else
{
}
},
err
=>
{
})
}).
onCancel
(()
=>
{
});
},
AddR
(
item
){
this
.
$emit
(
'clickEdit'
,
item
)
},
},
}
</
script
>
src/components/FinancialModule/Kingdee/suject/cash.vue
0 → 100644
View file @
c83fc035
<
style
scoped
>
@import
"../../../../assets/css/cssReset.css"
;
.tagF
{
margin-right
:
5px
;
}
</
style
>
<
template
>
<div>
<table
class=
"po_content singeRowTable"
style=
"border:1px solid #E6E6E6;"
cellspacing=
"0"
cellpadding=
"0"
v-loading=
"loading"
>
<tr>
<th>
账户名称
</th>
<th>
别名
</th>
<th>
开户人
</th>
<th>
类型
</th>
<th>
关联科目
</th>
<th
width=
"150px"
>
操作
</th>
</tr>
<tr
v-for=
"(item,index) in list"
:key=
"index"
>
<td>
{{
item
.
BackName
}}
</td>
<td>
{{
item
.
Alias
}}
</td>
<td>
{{
item
.
Accountholder
}}
</td>
<td>
{{
item
.
TypeName
}}
</td>
<td
style=
"white-space: warp;"
>
<p
style=
"padding: 3px 0;"
v-for=
"(i,indexs) in item.KingdeeList"
:key=
"indexs"
>
<span
class=
"q-mr-xs"
>
{{
i
.
BranchName
}}
:
</span>
<el-tag
size=
"mini"
class=
"tagF"
closable
@
close=
"Delete(item,i)"
>
{{
i
.
KingdeeName
}}
<span
class=
"q-ml-xs"
>
{{
i
.
KingdeeCode
}}
</span>
</el-tag>
</p>
</td>
<td
width=
"150px"
>
<span
style=
"cursor: pointer;color:blue;text-decoration:underline;margin-right: 5px"
@
click=
"AddR(item)"
>
新增
</span>
</td>
</tr>
</table>
<div
class=
"noData"
v-if=
"list&&list.length==0"
>
{{
$t
(
'system.content_noData'
)
}}
</div>
</div>
</
template
>
<
script
>
export
default
{
props
:
{
list
:
{
type
:
Array
,
default
:
null
},
loading
:
{
type
:
Boolean
,
default
:
null
},
type
:
{
type
:
Number
,
default
:
null
}
},
data
()
{
return
{
}
},
watch
:
{
list
:
{
handler
(
val
)
{
this
.
list
=
val
},
deep
:
true
},
loading
:
{
handler
(
val
)
{
this
.
loading
=
val
},
deep
:
true
},
type
:
{
handler
(
val
)
{
this
.
type
=
val
},
deep
:
true
}
},
created
(){
},
mounted
(){
},
methods
:
{
Delete
(
item
,
i
){
let
_this
=
this
let
msg
=
{
Type
:
this
.
type
,
TargetId
:
item
.
ID
,
SubjectId
:
i
.
SubjectId
,
}
this
.
$q
.
dialog
({
title
:
'将删除此科目数据'
,
message
:
'是否继续?'
,
cancel
:
true
,
persistent
:
true
,
ok
:
"确定"
,
cancel
:
"取消"
,
}).
onOk
(()
=>
{
this
.
apipost
(
'Financial_post_DelCostTypeKingdeeRelation'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
$q
.
notify
({
icon
:
'iconfont icon-chenggong'
,
color
:
'accent'
,
timeout
:
2000
,
message
:
res
.
data
.
Message
,
position
:
'top'
});
this
.
$emit
(
'success'
);
}
else
{
}
},
err
=>
{
})
}).
onCancel
(()
=>
{
});
},
AddR
(
item
){
this
.
$emit
(
'clickEdit'
,
item
)
},
},
}
</
script
>
src/components/FinancialModule/Kingdee/suject/cost.vue
0 → 100644
View file @
c83fc035
This diff is collapsed.
Click to expand it.
src/router/config.js
View file @
c83fc035
...
...
@@ -3977,6 +3977,47 @@ export default {
},
},
{
//金蝶对接 金蝶币种
path
:
'/KingdeeCurrency'
,
name
:
'KingdeeCurrency'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/Kingdee/currency'
],
resolve
),
meta
:
{
title
:
'金蝶币种'
},
},
{
//金蝶对接 金蝶科目
path
:
'/KingdeeLemonCloudSubjects'
,
name
:
'KingdeeLemonCloudSubjects'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/Kingdee/LemonCloudSubjects'
],
resolve
),
meta
:
{
title
:
'金蝶科目'
},
},
{
//金蝶对接 金蝶项目
path
:
'/KingdeeProject'
,
name
:
'KingdeeProject'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/Kingdee/project'
],
resolve
),
meta
:
{
title
:
'金蝶项目'
},
},
{
//金蝶对接 金蝶科目对照表
path
:
'/KingdeeSubjectContrast'
,
name
:
'KingdeeSubjectContrast'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/Kingdee/SubjectContrast'
],
resolve
),
meta
:
{
title
:
'金蝶科目对照表'
},
},
{
//金蝶对接 金蝶导出查询
path
:
'/KingdeeRecPayQuery'
,
name
:
'KingdeeRecPayQuery'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/Kingdee/RecPayQuery'
],
resolve
),
meta
:
{
title
:
'金蝶导出查询'
},
},
{
//财务 线路收客
path
:
'/LineReceiver'
,
name
:
'LineReceiver'
,
...
...
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