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
efabe642
Commit
efabe642
authored
May 31, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
65be6034
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
26 deletions
+32
-26
PlatformAccDetail.vue
...omponents/FinancialModule/accDetail/PlatformAccDetail.vue
+32
-26
No files found.
src/components/FinancialModule/accDetail/PlatformAccDetail.vue
View file @
efabe642
...
...
@@ -224,12 +224,25 @@
<th>
{{
$t
(
'fnc.yueacc'
)
}}
</th>
</tr>
<tr>
<td
:colspan=
"11"
>
{{
$t
(
'fnc.a_qcyue'
)
}}
:
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>
{{
moneyFormat
(
StartMoney
)
}}
</td>
<td
:colspan=
"11"
>
{{
$t
(
'fnc.a_heji'
)
}}
(
{{
$t
(
'hotel.hotel_totalRoom'
)
}}{{
DataList
.
length
}}{{
$t
(
'hotel.hotel_item'
)
}}
)
</td>
<td>
{{
InMoneyB
==
0
?
'-'
:
moneyFormat
(
InMoneyB
)
}}
</td>
<td>
{{
OutMoneyB
==
0
?
'-'
:
moneyFormat
(
OutMoneyB
)
}}
</td>
<td>
{{
InMoney
==
0
?
'-'
:
moneyFormat
(
InMoney
)
}}
</td>
<td>
<span>
<!--
{{
OutMoney
==
0
?
moneyFormat
(
InMoney
)
:
moneyFormat
(
OutMoney
)
}}
-->
{{
OutMoney
==
0
?
'-'
:
moneyFormat
(
OutMoney
)
}}
</span>
</td>
<td>
<span
v-if=
"OutMoney == 0"
>
0
</span>
<span
v-else
>
{{
moneyFormat
(
allMoney
)
}}
</span>
</td>
</tr>
<tr
v-for=
" ( item , index ) in DataList "
>
<td>
...
...
@@ -274,26 +287,14 @@
<td>
{{
moneyFormat
(
item
.
EndMoney
)
}}
</td>
</tr>
<tr>
<td
:colspan=
"11"
>
{{
$t
(
'fnc.a_heji'
)
}}
(
{{
$t
(
'hotel.hotel_totalRoom'
)
}}{{
DataList
.
length
}}{{
$t
(
'hotel.hotel_item'
)
}}
)
</td>
<td>
{{
InMoneyB
==
0
?
'-'
:
moneyFormat
(
InMoneyB
)
}}
</td>
<td>
{{
OutMoneyB
==
0
?
'-'
:
moneyFormat
(
OutMoneyB
)
}}
</td>
<td>
{{
InMoney
==
0
?
'-'
:
moneyFormat
(
InMoney
)
}}
</td>
<td>
<span>
<!--
{{
OutMoney
==
0
?
moneyFormat
(
InMoney
)
:
moneyFormat
(
OutMoney
)
}}
-->
{{
OutMoney
==
0
?
'-'
:
moneyFormat
(
OutMoney
)
}}
</span>
</td>
<td>
<span
v-if=
"OutMoney == 0"
>
0
</span>
<span
v-else
>
{{
moneyFormat
(
allMoney
)
}}
</span>
</td>
<td
:colspan=
"11"
>
{{
$t
(
'fnc.a_qcyue'
)
}}
:
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>
{{
moneyFormat
(
StartMoney
)
}}
</td>
</tr>
</table>
</div>
<el-dialog
custom-class=
'w750'
title=
"合并单据"
:visible
.
sync=
"addChuNa"
center
:before-close=
"initAddChuNa"
v-loading=
"allLoading"
>
...
...
@@ -798,7 +799,12 @@ export default {
this
.
InMoneyB
=
InMoneyB
;
this
.
OutMoneyB
=
OutMoneyB
;
}
this
.
DataList
=
data
// this.DataList = data
this
.
DataList
=
data
.
reduceRight
(
function
(
acc
,
cur
)
{
acc
.
push
(
cur
);
return
acc
;
},
[]);
this
.
loading
=
false
;
if
(
this
.
msg
.
ClientID
==
0
){
this
.
msg
.
ClientID
=
''
;
...
...
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