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
89a8c06c
Commit
89a8c06c
authored
Mar 23, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
报价单增加汇率,支付方式
parent
dd1275d8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
6 deletions
+36
-6
CostNewPrice.vue
...ponents/TravelManager/TravelNewQuotation/CostNewPrice.vue
+16
-2
CostNewPriceAudit.vue
...ts/TravelManager/TravelNewQuotation/CostNewPriceAudit.vue
+20
-4
No files found.
src/components/TravelManager/TravelNewQuotation/CostNewPrice.vue
View file @
89a8c06c
...
...
@@ -938,18 +938,25 @@
</tr>
<tr>
<td
class=
"CP_ComTitle2"
>
人数统计
</td>
<td
class=
"CP_ComTitle2"
>
成本价
</td>
<td
class=
"CP_ComTitle2"
colspan=
"2"
>
销售价格
</td>
<td
class=
"CP_ComTitle2"
>
成本价(人民币)
</td>
<td
class=
"CP_ComTitle2"
>
成本价(日元)
</td>
<td
class=
"CP_ComTitle2"
colspan=
"2"
>
销售价格(人民币)
</td>
<td
class=
"CP_ComTitle2"
colspan=
"2"
>
销售价格(日元)
</td>
<td
class=
"CP_ComTitle2"
colspan=
"2"
>
手配费
</td>
<td
colspan=
"6"
class=
"CP_ComTitle2"
>
备注
</td>
</tr>
<tr
v-for=
"item in CostNumberList"
:key=
"item.subCode"
>
<td>
{{item.PeopleNumber}}+1
</td>
<td>
{{item.TotalMoney}}
</td>
<td>
{{item.JPYSalePrice}}
</td>
<td
colspan=
"2"
>
<el-input
type=
'text'
class=
"w70"
v-model=
"item.SalePrice"
@
keyup
.
native=
"checkPrice(item,'SalePrice',true)"
maxlength=
"8"
></el-input>
</td>
<td
colspan=
"2"
>
<el-input
type=
'text'
class=
"w70"
v-model=
"item.JPYTotalMoney"
@
keyup
.
native=
"checkPrice(item,'JPYTotalMoney',true)"
maxlength=
"8"
></el-input>
</td>
<td
colspan=
"2"
>
<el-input
type=
'text'
class=
"w70"
v-model=
"item.ShouPeiFee"
@
keyup
.
native=
"checkPrice(item,'ShouPeiFee',true)"
maxlength=
"8"
></el-input>
...
...
@@ -1547,6 +1554,13 @@
x
.
TotalMoney
=
(
trip
+
otherPrice
+
Number
(
that
.
getConvertMoney
(
x
.
SubtotalMoney
))
).
toFixed
(
0
);
// console.log('this.getCurrencyMoney(this.subItem.CurrencyId)', this.dayCostPrice)
// console.log('this.getCurrencyMoney(this.subItem.CurrencyId)', this.getCurrencyMoney(this.dayCostPrice[0].CurrencyId), this.dayCostPrice[0].CurrencyId)
if
(
this
.
dayCostPrice
[
0
]
&&
this
.
dayCostPrice
[
0
].
CurrencyId
)
{
x
.
JPYSalePrice
=
((
trip
+
otherPrice
+
Number
(
that
.
getConvertMoney
(
x
.
SubtotalMoney
))
)
/
this
.
getCurrencyMoney
(
this
.
dayCostPrice
[
0
].
CurrencyId
)).
toFixed
(
0
);
}
});
},
//价格转换器
...
...
src/components/TravelManager/TravelNewQuotation/CostNewPriceAudit.vue
View file @
89a8c06c
...
...
@@ -677,17 +677,23 @@
<tr>
<td
class=
"CP_ComTitle2"
>
人数统计
</td>
<td
class=
"CP_ComTitle2"
>
成本价
</td>
<td
class=
"CP_ComTitle2"
colspan=
"2"
>
销售价格
</td>
<td
class=
"CP_ComTitle2"
>
成本价(人民币)
</td>
<td
class=
"CP_ComTitle2"
>
成本价(日元)
</td>
<td
class=
"CP_ComTitle2"
colspan=
"2"
>
销售价格(人民币)
</td>
<td
class=
"CP_ComTitle2"
colspan=
"2"
>
销售价格(日元)
</td>
<td
class=
"CP_ComTitle2"
colspan=
"2"
>
手配费
</td>
<td
colspan=
"6"
class=
"CP_ComTitle2"
>
备注
</td>
</tr>
<tr
v-for=
"item in CostNumberList"
:key=
"item.subCode"
>
<td>
{{item.PeopleNumber}}+1
</td>
<td>
{{item.TotalMoney}}
</td>
<td>
{{item.JPYSalePrice}}
</td>
<td
colspan=
"2"
>
{{item.SalePrice}}
</td>
<td
colspan=
"2"
>
{{item.JPYTotalMoney}}
</td>
<td
colspan=
"2"
>
{{item.ShouPeiFee}}
</td>
...
...
@@ -766,9 +772,18 @@
</tr>
<tr>
<td
class=
"CP_ComTitle2"
>
审核备注
</td>
<td
colspan=
"
12
"
>
<td
colspan=
"
8
"
>
<el-input
type=
"textarea"
v-model=
"postConfig.AuditContent"
></el-input>
</td>
<td
class=
"CP_ComTitle2"
>
付款方式
</td>
<td
colspan=
"4"
>
<el-select
style=
"width:100%"
v-model=
"postConfig.OfferPayType"
:placeholder=
"$t('pub.pleaseSel')"
filterable
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
'0'
></el-option>
<el-option
v-for=
"item in payTypeList"
:label=
'item.label'
:value=
'item.value'
:key=
'item.value'
>
</el-option>
</el-select>
</td>
</tr>
<tr>
<td
colspan=
"13"
style=
"text-align:center;"
>
...
...
@@ -792,7 +807,8 @@
//审核信息
AduitMsg
:
{
}
},
payTypeList
:
[{
value
:
1
,
label
:
'收现'
},{
value
:
2
,
label
:
'汇款'
},{
value
:
3
,
label
:
'外站自理'
},]
}
},
methods
:
{
...
...
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