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
f483a328
Commit
f483a328
authored
Sep 25, 2019
by
黄媛媛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
恢复收损单
parent
fea5fce4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
2 deletions
+32
-2
OPRules.vue
src/components/FinancialModule/OPRules.vue
+1
-2
RegistrationList.vue
src/components/TravelManager/TravelList/RegistrationList.vue
+31
-0
No files found.
src/components/FinancialModule/OPRules.vue
View file @
f483a328
...
...
@@ -268,6 +268,7 @@ export default {
.
catch
(()
=>
{});
},
addRule
(){
this
.
PlaceShow
=
false
;
this
.
ruleVisible
=
true
;
this
.
form
=
{
BranchId
:
""
,
...
...
@@ -285,7 +286,6 @@ export default {
}
},
SetRules
(
item
){
console
.
log
(
"item"
,
item
.
LtIdList
)
this
.
ruleVisible
=
true
;
this
.
form
=
{
...
...
@@ -306,7 +306,6 @@ export default {
}
this
.
form
.
LtIdList
=
item
.
LtIdList
;
this
.
PlaceShow
=
true
;
console
.
log
(
"this.form"
,
this
.
form
)
this
.
departmentMsg
.
RB_Branch_Id
=
item
.
BranchId
;
this
.
getLineTeamList
();
...
...
src/components/TravelManager/TravelList/RegistrationList.vue
View file @
f483a328
...
...
@@ -1880,6 +1880,7 @@
@
click=
'EwMsg.OrderId = item.OrderId, EwMsg.ExtraRewardMoney = item.ExtraRewardMoney,EwMsg.ExtraDeductMoney=item.ExtraDeductMoney, OrderMoneyDialog = true'
>
设置额外金额
</div>
<div
@
click=
"SetShouSunClick(item.OrderId,item.GuestNum)"
>
设置收损金额
</div>
<div
@
click=
"ZhuiJiaTuanKuan(item.OrderId)"
v-if=
"RBBranchId == 0"
>
追加团款
</div>
<div
@
click=
'deleteItem(item)'
>
删除
</div>
</div>
...
...
@@ -2190,6 +2191,7 @@
@
click=
'EwMsg.OrderId = childItem.OrderId, EwMsg.ExtraRewardMoney = childItem.ExtraRewardMoney,EwMsg.ExtraDeductMoney=childItem.ExtraDeductMoney, OrderMoneyDialog = true'
>
设置额外金额
</div>
<div
@
click=
"SetShouSunClick(childItem.OrderId, childItem.GuestNum)"
>
设置收损金额
</div>
<div
v-if=
"childItem.IsChargeLossOrders==1"
@
click=
"setChargeLoss(childItem)"
>
恢复收损单
</div>
<div
@
click=
"lianyunFY(childItem)"
>
联运返佣
</div>
<div
@
click=
"ZhuiJiaTuanKuan(childItem.OrderId)"
v-if=
"RBBranchId == 0"
>
追加团款
</div>
<div
@
click=
"importNameOrder(childItem.OrderId)"
v-if=
"OrderDataList.OtherOrderList.length == 1 && subItem.List.length == 1"
>
导入旅客名单
</div>
...
...
@@ -2568,6 +2570,8 @@
@
click=
'EwMsg.OrderId = item.OrderId, EwMsg.ExtraRewardMoney = item.ExtraRewardMoney,EwMsg.ExtraDeductMoney=item.ExtraDeductMoney, OrderMoneyDialog = true'
>
设置额外金额
</div>
<div
@
click=
"SetShouSunClick(item.OrderId, item.GuestNum)"
>
设置收损金额
</div>
<div
@
click=
"ZhuiJiaTuanKuan(item.OrderId)"
v-if=
"RBBranchId == 0"
>
追加团款
</div>
<div
@
click=
"importNameOrder(item.OrderId)"
>
导入旅客名单
</div>
<div
v-if=
"item.OrderState=='2'||item.OrderState=='3'"
@
click=
'deleteItem(item)'
>
删除
</div>
...
...
@@ -3440,6 +3444,33 @@
commonShouSun
:
commonShouSun
},
methods
:
{
setChargeLoss
(
obj
){
console
.
log
(
"obj"
,
obj
)
this
.
$confirm
(
"确定恢复收损单"
,
"提示"
,
{
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
})
.
then
(()
=>
{
this
.
apipost
(
"sellorder_post_RemoveChargeLossOrders"
,
{
OrderId
:
obj
.
OrderId
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
$message
.
success
(
"操作成功!"
);
this
.
getList
();
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
);
}
},
err
=>
{}
);
})
.
catch
(()
=>
{
this
.
$message
.
info
(
"取消!"
);
});
},
//上传
handleAvatarSuccess
(
res
,
file
)
{
if
(
res
.
resultCode
==
1
)
{
...
...
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