...
|
...
|
@@ -357,22 +357,22 @@ |
|
|
<el-row class="product">
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="总件数" prop="awbinfo.pcs">
|
|
|
<el-input v-model="ruleForm.awbinfo.pcs" ></el-input>
|
|
|
<el-input type="number" v-model="ruleForm.awbinfo.pcs" ></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="总重量" prop="awbinfo.weight">
|
|
|
<el-input v-model="ruleForm.awbinfo.weight"></el-input>
|
|
|
<el-input type="number" v-model="ruleForm.awbinfo.weight"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="舱单件数" prop="piece">
|
|
|
<el-input v-model="ruleForm.piece"></el-input>
|
|
|
<el-input type="number" v-model="ruleForm.piece"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="舱单重量" prop="weight">
|
|
|
<el-input v-model="ruleForm.weight"></el-input>
|
|
|
<el-input type="number" v-model="ruleForm.weight"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
...
|
...
|
@@ -953,7 +953,7 @@ |
|
|
:row.status=='21'?'可自动发送':row.status=='22'?'未发送':row.status=='23'?'已发送新增报'
|
|
|
:row.status=='24'?'已发送删除报':row.status=='25'?'已发送修改报':'';
|
|
|
},
|
|
|
//发送舱单报按钮判定事件
|
|
|
//发送舱单报按钮,删除,修改判定事件
|
|
|
btSendStatusFormater:(status) => {
|
|
|
if(status=='23' || status=='24'||status=='25'){
|
|
|
return true;
|
...
|
...
|
@@ -987,6 +987,7 @@ |
|
|
this.FenStatus='ediAwbh';
|
|
|
this.ruleForm=row;
|
|
|
this.ruleForm.originstation=row.originstation+"-"+row.destinationstation;
|
|
|
this.ruleForm.flightno=row.carrier+row.flightno;
|
|
|
this.FenQuery.awba=row.awba;
|
|
|
this.FenQuery.flightno= row.flightno;
|
|
|
this.FenQuery.flightdate=row.flightdate
|
...
|
...
|
@@ -1291,13 +1292,13 @@ |
|
|
},
|
|
|
//分拨申请
|
|
|
Importallocation(index,row){
|
|
|
this.$router.push({name:'进港分拨',params:{carrier:row.carrier,flightno:row.flightno.substr(2),awba:row.awba,flightdate:row.flightdate,
|
|
|
this.$router.push({name:'进港分拨',params:{carrier:row.carrier,flightno:row.flightno,awba:row.awba,flightdate:row.flightdate,
|
|
|
turnpiece:row.awbinfo.pcs,turnweight:row.awbinfo.weight,customcode:row.customcode}});
|
|
|
|
|
|
},
|
|
|
//分拨运抵
|
|
|
Allocatearrive(index,row){
|
|
|
this.$router.push({name:'分拨运抵',params:{carrier:row.carrier,flightno:row.flightno.substr(2),awba:row.awba,flightdate:row.flightdate,
|
|
|
this.$router.push({name:'分拨运抵',params:{carrier:row.carrier,flightno:row.flightno,awba:row.awba,flightdate:row.flightdate,
|
|
|
turnpiece:row.awbinfo.pcs,turnweight:row.awbinfo.weight,customcode:row.customcode,goodsname:row.goodsname}});
|
|
|
},
|
|
|
back(){
|
...
|
...
|
|