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
cb92bf27
Commit
cb92bf27
authored
Mar 24, 2025
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
90b6ede9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
10 deletions
+41
-10
platformFinancialSale.vue
src/components/FinancialModule/platformFinancialSale.vue
+41
-10
No files found.
src/components/FinancialModule/platformFinancialSale.vue
View file @
cb92bf27
...
...
@@ -363,7 +363,7 @@ export default {
},
selectable
(
row
,
index
)
{
if
(
row
.
InvoiceState
>
0
)
{
return
fals
e
;
return
tru
e
;
}
else
{
return
true
;
}
...
...
@@ -548,16 +548,47 @@ export default {
},
goCreateInvoice
(){
if
(
!
(
this
.
multipleSelection
&&
this
.
multipleSelection
.
length
>
0
)){
this
.
$message
.
error
(
'请勾选平台数据'
);
}
let
batchOrder
=
this
.
multipleSelection
.
map
(
x
=>
x
.
FrID
).
join
(
','
);
let
errFinanceIds
=
[];
this
.
multipleSelection
.
forEach
(
x
=>
{
if
(
x
.
InvoiceState
>
0
){
errFinanceIds
.
push
(
x
.
FrID
);
}
})
if
(
errFinanceIds
.
length
>
0
){
let
errF
=
errFinanceIds
.
join
(
','
);
let
query
=
{
batch
:
batchOrder
,
blank
:
"y"
,
};
this
.
$router
.
push
({
path
:
"/invoicesManagerAdd"
,
query
});
this
.
$confirm
(
errF
+
"存在发票信息,是否继续提交?"
,
this
.
$t
(
'tips.tips'
),
{
confirmButtonText
:
this
.
$t
(
'pub.sureBtn'
),
cancelButtonText
:
this
.
$t
(
'pub.cancelBtn'
),
type
:
'warning'
}).
then
(()
=>
{
let
batchOrder
=
this
.
multipleSelection
.
map
(
x
=>
x
.
FrID
).
join
(
','
);
let
query
=
{
batch
:
batchOrder
,
blank
:
"y"
,
};
this
.
$router
.
push
({
path
:
"/invoicesManagerAdd"
,
query
});
}).
catch
(()
=>
{
this
.
$message
({
type
:
'info'
,
message
:
"已取消"
});
});
}
else
{
let
batchOrder
=
this
.
multipleSelection
.
map
(
x
=>
x
.
FrID
).
join
(
','
);
let
query
=
{
batch
:
batchOrder
,
blank
:
"y"
,
};
this
.
$router
.
push
({
path
:
"/invoicesManagerAdd"
,
query
});
}
}
}
}
...
...
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