作者 xudada

excel毛重计费重量Bug修复,

货重金额,预付总计加去掉内容前后空格校验
@@ -808,7 +808,7 @@ Handling Information @@ -808,7 +808,7 @@ Handling Information
808 </el-row> 808 </el-row>
809 <el-row style="padding-top: 20px"> 809 <el-row style="padding-top: 20px">
810 <el-col :span="7" style="border-right: 1px solid #a5a5a5"> 810 <el-col :span="7" style="border-right: 1px solid #a5a5a5">
811 - <el-input :disabled="form.cvd.cvd_charge_prepaid=='CC'" v-model="form.ppd.ppd_weight_amount" auto-complete="off" placeholder="货重金额" size="mini"></el-input> 811 + <el-input :disabled="form.cvd.cvd_charge_prepaid=='CC'" v-model="form.ppd.ppd_weight_amount" oninput="this.value=this.value.replace(/[^0-9\.]/g,'');" auto-complete="off" placeholder="货重金额" size="mini"></el-input>
812 </el-col> 812 </el-col>
813 <el-col :span="10" style="border-right: 1px solid #a5a5a5;text-align: center"> 813 <el-col :span="10" style="border-right: 1px solid #a5a5a5;text-align: center">
814 <span style="font-size: 12px"> 814 <span style="font-size: 12px">
@@ -816,7 +816,7 @@ Handling Information @@ -816,7 +816,7 @@ Handling Information
816 </span> 816 </span>
817 </el-col> 817 </el-col>
818 <el-col :span="7"> 818 <el-col :span="7">
819 - <el-input :disabled="form.cvd.cvd_charge_prepaid=='PP'" v-model="form.ppd.ppd_weight_amount" auto-complete="off" placeholder="货重金额" size="mini"></el-input> 819 + <el-input :disabled="form.cvd.cvd_charge_prepaid=='PP'" v-model="form.ppd.ppd_weight_amount" auto-complete="off" oninput="this.value=this.value.replace(/[^0-9\.]/g,'');" placeholder="货重金额" size="mini"></el-input>
820 </el-col> 820 </el-col>
821 </el-row> 821 </el-row>
822 </el-col> 822 </el-col>
@@ -918,7 +918,7 @@ Handling Information @@ -918,7 +918,7 @@ Handling Information
918 <el-row> 918 <el-row>
919 <el-col style="width: 95%"> 919 <el-col style="width: 95%">
920 <el-form-item> 920 <el-form-item>
921 - <el-input :disabled="form.cvd.cvd_charge_prepaid=='CC'" v-model="form.ppd.ppd_charge_summary_total" auto-complete="off" placeholder="预付总计" size="mini"></el-input> 921 + <el-input :disabled="form.cvd.cvd_charge_prepaid=='CC'" v-model="form.ppd.ppd_charge_summary_total" oninput="this.value=this.value.replace(/[^0-9\.]/g,'');" auto-complete="off" placeholder="预付总计" size="mini"></el-input>
922 </el-form-item> 922 </el-form-item>
923 </el-col> 923 </el-col>
924 </el-row> 924 </el-row>
@@ -942,7 +942,7 @@ Handling Information @@ -942,7 +942,7 @@ Handling Information
942 <el-row> 942 <el-row>
943 <el-col style="width: 95%"> 943 <el-col style="width: 95%">
944 <el-form-item> 944 <el-form-item>
945 - <el-input :disabled="form.cvd.cvd_charge_prepaid=='PP'" v-model="form.ppd.ppd_charge_summary_total" auto-complete="off" placeholder="到付费用总额" size="mini"></el-input> 945 + <el-input :disabled="form.cvd.cvd_charge_prepaid=='PP'" v-model="form.ppd.ppd_charge_summary_total" oninput="this.value=this.value.replace(/[^0-9\.]/g,'');" auto-complete="off" placeholder="到付费用总额" size="mini"></el-input>
946 </el-form-item> 946 </el-form-item>
947 </el-col> 947 </el-col>
948 </el-row> 948 </el-row>
@@ -2188,17 +2188,17 @@ Handling Information @@ -2188,17 +2188,17 @@ Handling Information
2188 }, 2188 },
2189 flt:{ 2189 flt:{
2190 cariier:"HQ", 2190 cariier:"HQ",
2191 - day:'08', 2191 + day:'09',
2192 flightNumber:'405', 2192 flightNumber:'405',
2193 cariier2:"HQ", 2193 cariier2:"HQ",
2194 - day2:'08', 2194 + day2:'09',
2195 flightNumber2:'4055', 2195 flightNumber2:'4055',
2196 cariier3:"", 2196 cariier3:"",
2197 day3:'', 2197 day3:'',
2198 flightNumber3:'', 2198 flightNumber3:'',
2199 }, 2199 },
2200 isu:{ 2200 isu:{
2201 - isu_day_mounth_year:'2024-11-07', 2201 + isu_day_mounth_year:'2024-11-08',
2202 isu_place_or_airport_code:'ZHENGZHOU', 2202 isu_place_or_airport_code:'ZHENGZHOU',
2203 isu_signature:'CHINA', 2203 isu_signature:'CHINA',
2204 }, 2204 },
@@ -3051,8 +3051,8 @@ Handling Information @@ -3051,8 +3051,8 @@ Handling Information
3051 this.form.flt.flightNumber2=this.fileContent.outFlightNumber.substring(2); 3051 this.form.flt.flightNumber2=this.fileContent.outFlightNumber.substring(2);
3052 this.ssr_content=this.fileContent.SSRInfo; 3052 this.ssr_content=this.fileContent.SSRInfo;
3053 this.form.bill.quantity_picecs=this.fileContent.A22; 3053 this.form.bill.quantity_picecs=this.fileContent.A22;
3054 - this.form.bill.quantity_weight=parseFloat(this.fileContent.K22).toFixed(2);  
3055 - this.form.rtd.rtd_charge_weight=parseFloat(this.fileContent.C22).toFixed(2); 3054 + this.form.bill.quantity_weight=parseFloat(this.fileContent.C22).toFixed(2);
  3055 + this.form.rtd.rtd_charge_weight=parseFloat(this.fileContent.K22).toFixed(2);
3056 this.form.rtd.rtd_rate_charge=this.fileContent.P22; 3056 this.form.rtd.rtd_rate_charge=this.fileContent.P22;
3057 this.form.rtd.rtd_total=parseFloat(this.fileContent.U22).toFixed(2); 3057 this.form.rtd.rtd_total=parseFloat(this.fileContent.U22).toFixed(2);
3058 this.form.rtd.rtd_goods_DES=this.fileContent.AF22; 3058 this.form.rtd.rtd_goods_DES=this.fileContent.AF22;