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
14748111
Commit
14748111
authored
Oct 25, 2022
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
1537f1c0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
1670 additions
and
0 deletions
+1670
-0
SubjectContrast.vue
src/pages/financial/Kingdee/SubjectContrast.vue
+343
-0
currency.vue
src/pages/financial/Kingdee/currency.vue
+350
-0
project.vue
src/pages/financial/Kingdee/project.vue
+355
-0
bank.vue
src/pages/financial/Kingdee/suject/bank.vue
+138
-0
cash.vue
src/pages/financial/Kingdee/suject/cash.vue
+128
-0
cost.vue
src/pages/financial/Kingdee/suject/cost.vue
+341
-0
routes.js
src/router/routes.js
+15
-0
No files found.
src/pages/financial/Kingdee/SubjectContrast.vue
0 → 100644
View file @
14748111
This diff is collapsed.
Click to expand it.
src/pages/financial/Kingdee/currency.vue
0 → 100644
View file @
14748111
This diff is collapsed.
Click to expand it.
src/pages/financial/Kingdee/project.vue
0 → 100644
View file @
14748111
This diff is collapsed.
Click to expand it.
src/pages/financial/Kingdee/suject/bank.vue
0 → 100644
View file @
14748111
<
style
scoped
>
@import
"../../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;"
>
<el-tag
size=
"mini"
class=
"tagF"
v-for=
"(i,indexs) in item.KingdeeList"
:key=
"indexs"
closable
@
close=
"Delete(item,i)"
>
{{
i
.
KingdeeName
}}
</el-tag>
</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/pages/financial/Kingdee/suject/cash.vue
0 → 100644
View file @
14748111
<
style
scoped
>
@import
"../../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
width=
"150px"
>
操作
</th>
</tr>
<tr
v-for=
"(item,index) in list"
:key=
"index"
>
<td>
{{
item
.
Alias
}}
</td>
<td>
{{
item
.
TypeName
}}
</td>
<td
style=
"white-space: warp;"
>
<el-tag
size=
"mini"
class=
"tagF"
v-for=
"(i,indexs) in item.KingdeeList"
:key=
"indexs"
closable
@
close=
"Delete(item,i)"
>
{{
i
.
KingdeeName
}}
</el-tag>
</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/pages/financial/Kingdee/suject/cost.vue
0 → 100644
View file @
14748111
This diff is collapsed.
Click to expand it.
src/router/routes.js
View file @
14748111
...
...
@@ -643,6 +643,21 @@ const routes = [{
component
:
()
=>
import
(
"pages/financial/reportform/performanceCommission.vue"
)
},
{
path
:
"/financial/Kingdee/currency"
,
//财务报表金蝶对接 金蝶币种
component
:
()
=>
import
(
"pages/financial/Kingdee/currency.vue"
)
},
{
path
:
"/financial/Kingdee/project"
,
//财务报表金蝶对接 金蝶项目
component
:
()
=>
import
(
"pages/financial/Kingdee/project.vue"
)
},
{
path
:
"/financial/Kingdee/SubjectContrast"
,
//财务报表金蝶对接 金蝶科目对照表
component
:
()
=>
import
(
"pages/financial/Kingdee/SubjectContrast.vue"
)
},
{
path
:
"/financial/reportform/settleAccounts"
,
//财务报表 财务轧账月份列表
component
:
()
=>
...
...
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