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
aa452e06
Commit
aa452e06
authored
Jun 13, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
1b74447c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
BasicDocuments.vue
src/components/FinancialModule/BasicDocuments.vue
+12
-1
FinancialDocumentsDetail.vue
src/components/FinancialModule/FinancialDocumentsDetail.vue
+12
-1
No files found.
src/components/FinancialModule/BasicDocuments.vue
View file @
aa452e06
...
...
@@ -674,7 +674,7 @@
<!-- 预付款冲抵 电商商品 -->
<czBillModule
:FrID=
'ID'
/>
<!-- 关联单号 -->
<CostmonthDetails
v-if=
"GetDetail.OtherType==75||
GetDetail.CostMonthTemplate
"
:GetDetail=
"GetDetail"
>
<CostmonthDetails
v-if=
"GetDetail.OtherType==75||
(GetDetail.CostMonthTemplate&&getTemplate(GetDetail))
"
:GetDetail=
"GetDetail"
>
</CostmonthDetails>
<myGuanBill
:ID=
"FrID"
:FrID=
'FrID'
:TemplateId=
'GetDetail.TemplateId'
v-if=
"(((GetDetail.TemplateId === 36 || GetDetail.TemplateId === 37) && LeadState) || GetDetail.TemplateId === 63 || GetDetail.TemplateId === 59 || GetDetail.TemplateId === 43 || GetDetail.TemplateId === 48 || GetDetail.TemplateId === 53 || GetDetail.TemplateId === 56) && showModel"
/>
<myJiPiaoBill
:ID=
"FrID"
:FrID=
'FrID'
:TemplateId=
'GetDetail.TemplateId'
v-if=
"GetDetail.TemplateId === 2 || GetDetail.TemplateId === 12 && showModel"
/>
...
...
@@ -1739,6 +1739,17 @@ export default {
CostmonthDetails
},
methods
:{
getTemplate
(
GetDetail
){
let
arr
=
GetDetail
.
CostMonthTemplate
&&
GetDetail
.
CostMonthTemplate
.
split
(
','
)
let
status
=
false
arr
&&
arr
.
forEach
(
x
=>
{
if
(
x
==
GetDetail
.
TemplateId
){
status
=
true
return
true
}
})
if
(
!
status
)
return
false
},
goSigningCustomer
(
id
,
name
)
{
this
.
$router
.
push
({
name
:
'signedFinanceAll'
,
...
...
src/components/FinancialModule/FinancialDocumentsDetail.vue
View file @
aa452e06
...
...
@@ -1117,7 +1117,7 @@
<!-- 预付款冲抵 电商商品-->
<czBillModule
:FrID=
'ID'
/>
<!-- 关联单号 -->
<CostmonthDetails
v-if=
"GetDetail.OtherType==75||
GetDetail.CostMonthTemplate
"
:GetDetail=
"GetDetail"
>
<CostmonthDetails
v-if=
"GetDetail.OtherType==75||
(GetDetail.CostMonthTemplate&&getTemplate(GetDetail))
"
:GetDetail=
"GetDetail"
>
</CostmonthDetails>
<myGuanBill
:ID=
"FrID"
:FrID=
'FrID'
:TemplateId=
'GetDetail.TemplateId'
v-if=
"(((GetDetail.TemplateId === 36 || GetDetail.TemplateId === 37) && LeadState) || GetDetail.TemplateId === 63 || GetDetail.TemplateId === 59 || GetDetail.TemplateId === 43 || GetDetail.TemplateId === 48 || GetDetail.TemplateId === 53 || GetDetail.TemplateId === 56) && showModel"
/>
...
...
@@ -1583,6 +1583,17 @@
}
},
methods
:
{
getTemplate
(
GetDetail
){
let
arr
=
GetDetail
.
CostMonthTemplate
&&
GetDetail
.
CostMonthTemplate
.
split
(
','
)
let
status
=
false
arr
&&
arr
.
forEach
(
x
=>
{
if
(
x
==
GetDetail
.
TemplateId
){
status
=
true
return
true
}
})
if
(
!
status
)
return
false
},
showUpLoadFile2
(
i
)
{
// 预览上传文件
if
(
i
.
substring
(
i
.
lastIndexOf
(
'.'
)
+
1
,
i
.
length
).
toUpperCase
()
==
'PDF'
)
{
this
.
previewPDF
(
i
)
...
...
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