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
1aa96b6b
Commit
1aa96b6b
authored
Jun 06, 2019
by
liudong1993
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
158d5445
d7ce8819
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
260 additions
and
142 deletions
+260
-142
PoolAccDetail.vue
src/components/FinancialModule/accDetail/PoolAccDetail.vue
+32
-7
addFinancialProcess.vue
src/components/FinancialModule/addFinancialProcess.vue
+1
-1
HotelProductManage2.vue
src/components/Hotel/HotelProductManage2.vue
+104
-65
FoodOrder.vue
src/components/Restaurant/FoodOrder.vue
+6
-0
HotelProductManage.vue
src/components/Supplier/HotelProductManage.vue
+111
-68
ScenTicketOrder.vue
src/components/scenicSpot/ScenTicketOrder.vue
+6
-1
No files found.
src/components/FinancialModule/accDetail/PoolAccDetail.vue
View file @
1aa96b6b
...
...
@@ -202,12 +202,21 @@
</tr>
<tr>
<td
:colspan=
"5"
>
{{
$t
(
'fnc.a_heji'
)
}}
(
{{
$t
(
'hotel.hotel_totalRoom'
)
}}
{{
DataList
.
length
}}
{{
$t
(
'hotel.hotel_item'
)
}}
)
</td>
<td></td>
<
!--
<
td></td>
<td></td>
<td>
{{
moneyFormat
(
endRStartMoney
)
}}
</td>
<td></td>
<td></td>
<td></td>
<td>
{{
moneyFormat
(
endStartMoney
)
}}
</td>
-->
<td>
{{
moneyFormat
(
wShou
)
}}
</td>
<td>
{{
moneyFormat
(
wZhi
)
}}
</td>
<td>
{{
moneyFormat
(
endRStartMoney
)
}}
</td>
<td></td>
<td>
{{
moneyFormat
(
bShou
)
}}
</td>
<td>
{{
moneyFormat
(
bZhi
)
}}
</td>
<td>
{{
moneyFormat
(
endStartMoney
)
}}
</td>
</tr>
</table>
...
...
@@ -437,6 +446,10 @@ export default {
allBPrice
:
0
,
allWPrice
:
0
,
userInfo
:{},
wShou
:
0
,
wZhi
:
0
,
bShou
:
0
,
bZhi
:
0
,
}
},
created
(){
this
.
userInfo
=
this
.
getLocalStorage
();
...
...
@@ -584,23 +597,35 @@ export default {
}
this
.
endStartMoney
=
''
;
this
.
endRStartMoney
=
''
;
this
.
bShou
=
0
;
this
.
wShou
=
0
;
this
.
bZhi
=
0
;
this
.
wZhi
=
0
;
this
.
apipost
(
'Financial_post_GetAccountDetailList'
,
this
.
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
){
let
data
=
res
.
data
.
data
;
if
(
data
.
length
){
this
.
StartMoney
=
data
[
0
].
StartMoney
?
data
[
0
].
StartMoney
:
0
;
// 外币
this
.
RStartMoney
=
data
[
0
].
StartMoney
?
data
[
0
].
StartMoney
:
0
;
// 本位币
let
endStartMoney
=
0
,
endRStartMoney
=
0
;
this
.
RStartMoney
=
data
[
0
].
RStartMoney
?
data
[
0
].
R
StartMoney
:
0
;
// 本位币
let
endStartMoney
=
this
.
StartMoney
;
let
endRStartMoney
=
this
.
RStartMoney
;
data
.
forEach
(
(
x
,
i
)
=>
{
if
(
x
.
Type
==
1
){
endRStartMoney
=
endStartMoney
+
x
.
OriginalMoney
;
// endRStartMoney = endStartMoney + x.OriginalMoney;
// endStartMoney = endStartMoney + x.Money;
// x.enRSMoney = endRStartMoney;
// x.enSMoney = endStartMoney;
this
.
bShou
=
this
.
bShou
+
x
.
Money
;
this
.
wShou
=
this
.
wShou
+
x
.
OriginalMoney
;
endRStartMoney
=
endRStartMoney
+
x
.
OriginalMoney
;
endStartMoney
=
endStartMoney
+
x
.
Money
;
x
.
enRSMoney
=
endRStartMoney
;
x
.
enRSMoney
=
endRStartMoney
;
//外币收入
x
.
enSMoney
=
endStartMoney
;
}
else
if
(
x
.
Type
==
2
){
endRStartMoney
=
endStartMoney
-
x
.
OriginalMoney
;
this
.
bZhi
=
this
.
bZhi
+
x
.
Money
;
this
.
wZhi
=
this
.
wZhi
+
x
.
OriginalMoney
;
endRStartMoney
=
endRStartMoney
-
x
.
OriginalMoney
;
endStartMoney
=
endStartMoney
-
x
.
Money
;
x
.
enRSMoney
=
endRStartMoney
;
x
.
enSMoney
=
endStartMoney
;
...
...
src/components/FinancialModule/addFinancialProcess.vue
View file @
1aa96b6b
...
...
@@ -367,7 +367,7 @@
<div
class=
"approval_page_title"
>
{{
$t
(
'fnc.lcshezhi'
)
}}
</div>
<div
class=
"approval_page_content"
>
<div
class=
"approval_person_content"
>
<span
class=
"approval_span_type"
>
流程设置
{{
$t
(
'fnc.mrspliucheng'
)
}}
</span>
<span
class=
"approval_span_type"
>
{{
$t
(
'fnc.mrspliucheng'
)
}}
</span>
<span
style=
"float:right"
><el-button
@
click=
"Auditshow=true,EditAudit()"
style=
"padding:4px"
type=
"primary"
icon=
"el-icon-edit"
circle
></el-button></span>
<div
class=
"approval_person_list fl"
>
...
...
src/components/Hotel/HotelProductManage2.vue
View file @
1aa96b6b
This diff is collapsed.
Click to expand it.
src/components/Restaurant/FoodOrder.vue
View file @
1aa96b6b
...
...
@@ -214,6 +214,12 @@ export default {
this
.
currentPage
=
1
;
},
getList
()
{
if
(
!
this
.
msg
.
startDate
){
this
.
msg
.
startDate
=
""
;
}
if
(
!
this
.
msg
.
endDate
){
this
.
msg
.
endDate
=
""
;
}
this
.
loading
=
true
;
this
.
apiJavaPost
(
"/api/erp/dining/getDiningOrder"
,
this
.
msg
,
res
=>
{
this
.
loading
=
false
;
...
...
src/components/Supplier/HotelProductManage.vue
View file @
1aa96b6b
This diff is collapsed.
Click to expand it.
src/components/scenicSpot/ScenTicketOrder.vue
View file @
1aa96b6b
...
...
@@ -268,13 +268,18 @@ export default {
this
.
currentPage
=
1
;
},
getList
()
{
if
(
!
this
.
msg
.
startDate
){
this
.
msg
.
startDate
=
""
;
}
if
(
!
this
.
msg
.
endDate
){
this
.
msg
.
endDate
=
""
;
}
this
.
loading
=
true
;
this
.
apiJavaPost
(
"/api/erp/ticketCoupons/getTicketCouponsOrder"
,
this
.
msg
,
res
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
===
1
)
{
this
.
total
=
res
.
data
.
data
.
count
;
this
.
dataList
=
res
.
data
.
data
.
pageData
;
console
.
log
(
this
.
dataList
,
'datalist'
);
}
else
{
this
.
Error
(
res
.
data
.
message
)
}
...
...
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