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
69a1879f
Commit
69a1879f
authored
Mar 06, 2025
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
报价单计算页面修改
parent
7997d729
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
24 deletions
+24
-24
CostNewPriceForm.vue
...nts/TravelManager/TravelNewQuotation/CostNewPriceForm.vue
+24
-24
No files found.
src/components/TravelManager/TravelNewQuotation/CostNewPriceForm.vue
View file @
69a1879f
...
...
@@ -423,7 +423,7 @@
<td
colspan=
"4"
rowspan=
"2"
>
{{$t('objFill.xiaojijpzdsjly')}}:
<br
/>
{{get
CostTotal
Money()}}
<br
/>
{{get
OtherCost
Money()}}
</td>
</tr>
<tr>
...
...
@@ -471,7 +471,7 @@
<td>
<el-form-item
:label=
"$t('objFill.dandijcb')"
>
<el-input
v-model=
"teamPrice.SingleDMCPrice"
@
keyup
.
native=
"checkInteger(teamPrice,'SingleDMCPrice')"
@
blur
=
"getchange()"
class=
"w70"
>
@
change
=
"getchange()"
class=
"w70"
>
</el-input>
</el-form-item>
</td>
...
...
@@ -633,17 +633,17 @@
+
{{
(
getDayXiaoJi
(
9
,
1
)
/
subItem
.
PeopleNumber
).
toFixed
(
2
)
}}
(
{{
$t
(
'objFill.v101.zazhizzzcyrsK'
)
}}
)
</td>
<td>
{{
getLocalJpy
Total
Money
(
subItem
.
PeopleNumber
)
}}
{{
getLocalJpyMoney
(
subItem
.
PeopleNumber
)
}}
</td>
<td>
<template
v-if=
"teamPrice&&teamPrice.SingleDMCPrice&&teamPrice.SingleDMCPrice>0"
>
{{
teamPrice
.
SingleDMCPrice
}}
</
template
>
<
template
v-else-if=
"postConfig.LineId==14||postConfig.LineId==118"
>
{{
getLocal
Total
Money
(
subItem
.
PeopleNumber
)
}}
{{
getLocalMoney
(
subItem
.
PeopleNumber
)
}}
</
template
>
<
template
v-else-if=
"postConfig.LineId==168"
>
{{
getLocal
Total
Money
(
subItem
.
PeopleNumber
)
}}
{{
getLocalMoney
(
subItem
.
PeopleNumber
)
}}
</
template
>
<
template
v-else
>
{{
subItem
.
SubtotalMoney
}}
...
...
@@ -1046,9 +1046,9 @@
return
flag
;
},
//其它成本价格
get
CostTotal
Money
()
{
get
OtherCost
Money
()
{
//机票+中段机票+火车票+税金+领队导游分摊+联运+过夜+保险
let
total
Money
=
this
.
getConvertMoney
(
this
.
otherPrice
.
AirTicketMoeny
)
+
let
other
Money
=
this
.
getConvertMoney
(
this
.
otherPrice
.
AirTicketMoeny
)
+
this
.
getConvertMoney
(
this
.
otherPrice
.
InlandAirTicketMoney
)
+
this
.
getConvertMoney
(
this
.
teamPrice
.
TaxPrice
)
+
this
.
getConvertMoney
(
this
.
teamPrice
.
UnionPrice
)
+
...
...
@@ -1058,7 +1058,7 @@
this
.
getConvertMoney
(
this
.
otherPrice
.
InlandTrainTicketMoney
)
+
this
.
getConvertMoney
(
this
.
otherPrice
.
SafeMoney
)
-
this
.
getConvertMoney
(
this
.
otherPrice
.
KBMoney
)
return
total
Money
;
return
other
Money
;
},
//获取币种对应 的人数报价
getCurrencyNumberList
(
CurrencyId
)
{
...
...
@@ -1195,15 +1195,15 @@
});
},
//计算总价
getSub
total
Money
()
{
getSubMoney
()
{
let
that
=
this
;
if
(
this
.
CostNumberList
&&
this
.
CostNumberList
.
length
>
0
)
{
this
.
CostNumberList
.
forEach
(
x
=>
{
//房餐车景点价格
var
trip
=
Number
(
that
.
getLocal
Total
Money
(
x
.
PeopleNumber
));
var
jpyTrip
=
Number
(
that
.
getLocalJpy
Total
Money
(
x
.
PeopleNumber
));
var
trip
=
Number
(
that
.
getLocalMoney
(
x
.
PeopleNumber
));
var
jpyTrip
=
Number
(
that
.
getLocalJpyMoney
(
x
.
PeopleNumber
));
//其他价格
var
otherPrice
=
Number
(
that
.
get
CostTotal
Money
());
var
otherPrice
=
Number
(
that
.
get
OtherCost
Money
());
var
jpyotherPrice
=
0
;
var
SingleDMCPrice
=
0
;
if
(
that
.
teamPrice
&&
that
.
teamPrice
.
SingleDMCPrice
)
{
...
...
@@ -1222,8 +1222,8 @@
return
parseFloat
(
value
);
},
//获取地接项目(人民币)
getLocal
Total
Money
(
PeopleNumber
)
{
let
total
Money
=
0.0
;
getLocalMoney
(
PeopleNumber
)
{
let
dijie
Money
=
0.0
;
if
(
PeopleNumber
<=
0
)
{
PeopleNumber
=
1
;
}
...
...
@@ -1232,37 +1232,37 @@
var
canPrice
=
Number
(
this
.
getDayXiaoJi
(
4
,
2
));
//餐
var
otherPrice
=
Number
(
this
.
getDayXiaoJi
(
9
,
2
))
/
PeopleNumber
;
//其它费用
var
busFee
=
Number
(
this
.
getDayXiaoJi
(
2
,
2
))
/
PeopleNumber
;
//车费
total
Money
=
busFee
+
hotelPrice
+
sencePrice
+
canPrice
+
otherPrice
;
totalMoney
=
total
Money
.
toFixed
(
2
);
return
total
Money
;
dijie
Money
=
busFee
+
hotelPrice
+
sencePrice
+
canPrice
+
otherPrice
;
dijieMoney
=
dijie
Money
.
toFixed
(
2
);
return
dijie
Money
;
},
//获取地接项目报价(日元)
getLocalJpy
Total
Money
(
PeopleNumber
)
{
getLocalJpyMoney
(
PeopleNumber
)
{
if
(
PeopleNumber
<=
0
)
{
PeopleNumber
=
1
;
}
let
total
Money
=
0.0
;
let
jpydijie
Money
=
0.0
;
var
busFee
=
Number
(
this
.
getDayXiaoJi
(
2
,
1
))
/
PeopleNumber
;
var
hotelPrice
=
Number
(
this
.
getDayXiaoJi
(
1
,
1
));
//酒店费用
var
sencePrice
=
Number
(
this
.
getDayXiaoJi
(
3
,
1
));
//景点费用
var
canPrice
=
Number
(
this
.
getDayXiaoJi
(
4
,
1
));
//早餐
var
otherPrice
=
Number
(
this
.
getDayXiaoJi
(
9
,
1
))
/
PeopleNumber
;
//其它费用
total
Money
=
busFee
+
hotelPrice
+
sencePrice
+
canPrice
+
otherPrice
;
return
total
Money
.
toFixed
(
2
);
jpydijie
Money
=
busFee
+
hotelPrice
+
sencePrice
+
canPrice
+
otherPrice
;
return
jpydijie
Money
.
toFixed
(
2
);
},
getchange
(
type
)
{
this
.
getSubtotalMoney
();
var
that
=
this
;
var
tempPrice
=
0
;
if
(
this
.
CostNumberList
&&
this
.
CostNumberList
.
length
>
0
)
{
this
.
CostNumberList
.
forEach
(
x
=>
{
//房餐车景点价格
tempPrice
=
Number
(
that
.
getLocal
Total
Money
(
x
.
PeopleNumber
));
tempPrice
=
Number
(
that
.
getLocalMoney
(
x
.
PeopleNumber
));
});
}
if
(
this
.
teamPrice
.
SingleDMCPrice
<=
0
||
(
type
&&
type
==
1
))
{
this
.
teamPrice
.
SingleDMCPrice
=
tempPrice
.
toFixed
(
0
);
}
this
.
getSubMoney
();
},
//员工列表
getEmployeeList
()
{
...
...
@@ -1299,7 +1299,7 @@
},
mounted
()
{
this
.
getHotelInit
();
this
.
getSub
total
Money
();
this
.
getSubMoney
();
},
created
()
{
this
.
getEmployeeList
();
...
...
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