|
@@ -603,6 +603,27 @@ |
|
@@ -603,6 +603,27 @@ |
603
|
Also Notify Area
|
603
|
Also Notify Area
|
604
|
</el-col>
|
604
|
</el-col>
|
605
|
</el-row>
|
605
|
</el-row>
|
|
|
606
|
+ <el-row style="padding-top: 10px">
|
|
|
607
|
+ <el-col :span="22" style="border-right: 1px solid #a5a5a5;border-bottom:1px solid #a5a5a5;border-left:1px solid #a5a5a5;padding: 5px">
|
|
|
608
|
+ <span style="font-size: 12px">
|
|
|
609
|
+ Special Handling Details
|
|
|
610
|
+ </span>
|
|
|
611
|
+ <el-row style="margin-bottom: -2px">
|
|
|
612
|
+ <el-col style="width: 100%">
|
|
|
613
|
+ <el-form-item>
|
|
|
614
|
+ <!-- 每行65个字符-->
|
|
|
615
|
+ <el-input
|
|
|
616
|
+ v-model="sphCodes"
|
|
|
617
|
+ show-word-limit
|
|
|
618
|
+ maxlength="27"
|
|
|
619
|
+ type="textarea"
|
|
|
620
|
+ :autosize="{ minRows: 1, maxRows: 9}"
|
|
|
621
|
+ auto-complete="off" placeholder="特殊操作代码列表,一行一个代码,最多9行"></el-input>
|
|
|
622
|
+ </el-form-item>
|
|
|
623
|
+ </el-col>
|
|
|
624
|
+ </el-row>
|
|
|
625
|
+ </el-col>
|
|
|
626
|
+ </el-row>
|
606
|
<!-- 处理信息-->
|
627
|
<!-- 处理信息-->
|
607
|
<el-row style="padding-top: 10px">
|
628
|
<el-row style="padding-top: 10px">
|
608
|
<el-col :span="22" style="border-right: 1px solid #a5a5a5;border-bottom:1px solid #a5a5a5;border-left:1px solid #a5a5a5;padding: 5px">
|
629
|
<el-col :span="22" style="border-right: 1px solid #a5a5a5;border-bottom:1px solid #a5a5a5;border-left:1px solid #a5a5a5;padding: 5px">
|
|
@@ -2290,8 +2311,12 @@ Handling Information |
|
@@ -2290,8 +2311,12 @@ Handling Information |
2290
|
},
|
2311
|
},
|
2291
|
cer:{
|
2312
|
cer:{
|
2292
|
cer_signature:' DHL GLOBAL'
|
2313
|
cer_signature:' DHL GLOBAL'
|
|
|
2314
|
+ },
|
|
|
2315
|
+ sph:{
|
|
|
2316
|
+ sph_code:[]
|
2293
|
}
|
2317
|
}
|
2294
|
},
|
2318
|
},
|
|
|
2319
|
+ sphCodes: "",
|
2295
|
ssr_content:"NO SOLID WOODEN PACKING MATERIALS",
|
2320
|
ssr_content:"NO SOLID WOODEN PACKING MATERIALS",
|
2296
|
cne_contact:{
|
2321
|
cne_contact:{
|
2297
|
contact_id:'TE',
|
2322
|
contact_id:'TE',
|
|
@@ -3049,6 +3074,13 @@ Handling Information |
|
@@ -3049,6 +3074,13 @@ Handling Information |
3049
|
//const O38 = (worksheet['O38'] && worksheet['O38'].v) || '';
|
3074
|
//const O38 = (worksheet['O38'] && worksheet['O38'].v) || '';
|
3050
|
const X38 = (worksheet['X38'] && worksheet['X38'].v) || '';
|
3075
|
const X38 = (worksheet['X38'] && worksheet['X38'].v) || '';
|
3051
|
const AF38 = (worksheet['AF38'] && worksheet['AF38'].v) || '';
|
3076
|
const AF38 = (worksheet['AF38'] && worksheet['AF38'].v) || '';
|
|
|
3077
|
+ //判定acc 中是否包含COU 特殊操作代码
|
|
|
3078
|
+ const S10 = (worksheet['S10'] && worksheet['S10'].v) || '';
|
|
|
3079
|
+
|
|
|
3080
|
+ if (S10.includes("COU")){
|
|
|
3081
|
+ this.sphCodes += "COU"
|
|
|
3082
|
+ }
|
|
|
3083
|
+
|
3052
|
|
3084
|
|
3053
|
if(I18.includes("/")){
|
3085
|
if(I18.includes("/")){
|
3054
|
const inFlightInfo = I18.split('/');
|
3086
|
const inFlightInfo = I18.split('/');
|
|
@@ -3221,6 +3253,26 @@ Handling Information |
|
@@ -3221,6 +3253,26 @@ Handling Information |
3221
|
this.ssr_content = value; // 更新视图中的数据
|
3253
|
this.ssr_content = value; // 更新视图中的数据
|
3222
|
}
|
3254
|
}
|
3223
|
},
|
3255
|
},
|
|
|
3256
|
+ sphCodeFormat:{
|
|
|
3257
|
+ get(){
|
|
|
3258
|
+ return this.sphCodes;
|
|
|
3259
|
+ },
|
|
|
3260
|
+ set(value){
|
|
|
3261
|
+ const lines = value.split('\n');
|
|
|
3262
|
+ if (lines.length > 9) {
|
|
|
3263
|
+ this.$message.error('最多只能输入9行文本!');
|
|
|
3264
|
+ return;
|
|
|
3265
|
+ }
|
|
|
3266
|
+ for (let line of lines) {
|
|
|
3267
|
+ if (line.length > 3) {
|
|
|
3268
|
+ this.$message.error('每行不能超过3个字符!每行一个特殊操作代码,如:ELI');
|
|
|
3269
|
+ return;
|
|
|
3270
|
+ }
|
|
|
3271
|
+ }
|
|
|
3272
|
+ this.form.sph.sph_code = lines
|
|
|
3273
|
+ this.sphCodes = value;
|
|
|
3274
|
+ }
|
|
|
3275
|
+ },
|
3224
|
flightNumber: {
|
3276
|
flightNumber: {
|
3225
|
get() {
|
3277
|
get() {
|
3226
|
// 返回拼接后的完整航班号
|
3278
|
// 返回拼接后的完整航班号
|
|
@@ -3254,6 +3306,12 @@ Handling Information |
|
@@ -3254,6 +3306,12 @@ Handling Information |
3254
|
this.formattedSsrContent = newVal; // 触发计算属性的setter
|
3306
|
this.formattedSsrContent = newVal; // 触发计算属性的setter
|
3255
|
},
|
3307
|
},
|
3256
|
immediate: true // 立即执行监听器
|
3308
|
immediate: true // 立即执行监听器
|
|
|
3309
|
+ },
|
|
|
3310
|
+ sphCodes:{
|
|
|
3311
|
+ handler(newVal) {
|
|
|
3312
|
+ this.sphCodeFormat = newVal; // 触发计算属性的setter
|
|
|
3313
|
+ },
|
|
|
3314
|
+ immediate: true // 立即执行监听器
|
3257
|
}
|
3315
|
}
|
3258
|
}
|
3316
|
}
|
3259
|
}
|
3317
|
}
|