Commit 93ec4fe9 authored by 黄奎's avatar 黄奎
parents 58b7626f 4d5d118f
...@@ -536,6 +536,11 @@ ...@@ -536,6 +536,11 @@
{{$t('objFill.uncompleted')}} {{$t('objFill.uncompleted')}}
</template> </template>
</div> </div>
<div class="orderType cf fz12" v-if="scope.row.isChargeLossOrders == 1"
>
{{$t('fnc.sun')}}
</div>
<div class="c9e fz12"> <div class="c9e fz12">
<span>{{$t('fnc.danhao')}}:</span> <span>{{$t('fnc.danhao')}}:</span>
<span>{{scope.row.visaTCNUM}}({{scope.row.id}})</span> <span>{{scope.row.visaTCNUM}}({{scope.row.id}})</span>
...@@ -800,7 +805,10 @@ ...@@ -800,7 +805,10 @@
v-if="scope.row.income<=0&&(scope.row.visaOrderStatus==1||scope.row.visaOrderStatus==3)"> v-if="scope.row.income<=0&&(scope.row.visaOrderStatus==1||scope.row.visaOrderStatus==3)">
<span class="cF1416C">{{ $t('pub.cancelBtn') }}</span> <span class="cF1416C">{{ $t('pub.cancelBtn') }}</span>
</div> </div>
<div class="row-c cursor-pointer radius5 cancel py5" @click='orderMsg.OrderId=scope.row.id;outerVisible=true'
v-if="scope.row.income>0&&scope.row.visaOrderStatus==1&&scope.row.isChargeLossOrders==0">
<span class="cF1416C">{{$t('objFill.shezhishoushunje')}}</span>
</div>
<div class="row-c cursor-pointer radius5 change py5" @click='goUrlT(scope.row)' <div class="row-c cursor-pointer radius5 change py5" @click='goUrlT(scope.row)'
v-if="(scope.row.visaOrderStatus==1||scope.row.visaOrderStatus==3)&&pagesTitle=='销售'"> v-if="(scope.row.visaOrderStatus==1||scope.row.visaOrderStatus==3)&&pagesTitle=='销售'">
<span class="c059FF6">{{ $t('salesModule.LKMD') }}</span> <span class="c059FF6">{{ $t('salesModule.LKMD') }}</span>
...@@ -982,6 +990,45 @@ ...@@ -982,6 +990,45 @@
<el-button size="mini" @click="EditOPVisible = false">{{$t('pub.cancelBtn')}}</el-button> <el-button size="mini" @click="EditOPVisible = false">{{$t('pub.cancelBtn')}}</el-button>
<el-button size="mini" type="danger" @click="sureOPEmp">{{$t('pub.sureBtn')}}</el-button> <el-button size="mini" type="danger" @click="sureOPEmp">{{$t('pub.sureBtn')}}</el-button>
</span> </span>
</el-dialog>
<el-dialog
custom-class="w400"
:title="$t('objFill.shezhishoushunje')"
:visible.sync="outerVisible"
>
<div>
<el-form label-width="80px" :model="orderMsg" :rules="rules2" ref="orderMsg">
<el-row :gutter="20">
<el-col :span="20">
<el-form-item :label="$t('salesModule.SSJE')" prop="LossMoney">
<el-input-number
class="w200"
v-model="orderMsg.LossMoney"
:min="0"
:max="10000000"
></el-input-number>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20" style="margin-top: 20px; margin-bottom: 20px">
<el-col :span="24" style="text-align: right">
<input
type="button"
class="normalBtn"
:value="$t('pub.saveBtn')"
@click="submitForm('orderMsg')"
/>
<input
type="button"
class="hollowFixedBtn"
:value="$t('pub.cancelBtn')"
@click="(outerVisible = false), $refs['orderMsg'].resetFields()"
/>
</el-col>
</el-row>
</el-form>
</div>
</el-dialog> </el-dialog>
<offset :isShow="cdState" :obj="queryObj" @close="cdState=false"></offset> <offset :isShow="cdState" :obj="queryObj" @close="cdState=false"></offset>
<TransferOrder v-if="showTransferOrder" :isShow="showTransferOrder" :obj="queryObj" <TransferOrder v-if="showTransferOrder" :isShow="showTransferOrder" :obj="queryObj"
...@@ -1005,6 +1052,7 @@ ...@@ -1005,6 +1052,7 @@
CompletedLoading: false, CompletedLoading: false,
multipleSelection: [], multipleSelection: [],
isCommissionDialog: false, isCommissionDialog: false,
outerVisible:false,
objNew: {}, objNew: {},
queryObj: null, queryObj: null,
cdState: false, cdState: false,
...@@ -1031,6 +1079,10 @@ ...@@ -1031,6 +1079,10 @@
SendEndDate: '', SendEndDate: '',
Name: '', Name: '',
VisaTCNUM: '' VisaTCNUM: ''
},
orderMsg: {
OrderId: "",
LossMoney: 0,
}, },
addMsg: { addMsg: {
Id: 0, Id: 0,
...@@ -1067,6 +1119,15 @@ ...@@ -1067,6 +1119,15 @@
message: this.$t('rule.EnterCJRQ'), message: this.$t('rule.EnterCJRQ'),
trigger: "blur" trigger: "blur"
}] }]
},
rules2: {
LossMoney: [
{
required: true,
message: this.$t('objFill.qinshurushoushunje'),
trigger: "blur",
},
],
}, },
updateRemarksStatus: false, updateRemarksStatus: false,
SendStartDate: '', SendStartDate: '',
...@@ -1108,6 +1169,52 @@ ...@@ -1108,6 +1169,52 @@
} }
}, },
methods: { methods: {
//提交
submitForm(msg) {
//提交创建、修改表单
this.$refs[msg].validate((valid) => {
if (valid) {
if (!this.loading2) {
this.saveUpdate();
}
} else {
// this.Error("请完成必填项");
return false;
}
});
},
saveUpdate() {
let text = this.$t('objFill.shifouquedinss');
this.$confirm(text, this.$t('tips.tips'), {
confirmButtonText: this.$t('pub.sureBtn'),
cancelButtonText: this.$t('pub.cancelBtn'),
type: "warning",
})
.then(() => {
this.loading2 = true;
this.apipost(
"dmc_post_SetVisaOrderRevenueLoss",
{
OrderId: this.orderMsg.OrderId,
LossMoney: this.orderMsg.LossMoney,
},
(res) => {
if (res.data.resultCode == 1) {
this.Success(res.data.message);
this.$emit("success");
} else {
this.Error(res.data.message);
}
this.loading2 = false;
this.outerVisible = false;
},
(err) => {
(this.loading2 = false), (this.outerVisible = false);
}
);
})
.catch(() => {});
},
clickCorrelation(item, ) { clickCorrelation(item, ) {
this.CorrelationObj = JSON.parse(JSON.stringify(item)); this.CorrelationObj = JSON.parse(JSON.stringify(item));
this.CorrelationObj.TypeNum = 7; this.CorrelationObj.TypeNum = 7;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment