作者 小范

选择收发货人时AEO编码取值改为企业编码

... ... @@ -86,7 +86,7 @@
<el-form-item>
<el-input minlength="1" maxlength="65" onkeyup="this.value=this.value.toUpperCase()"
@keyup.native="shp_oci.oci_csrc_info=shp_oci.oci_csrc_info.replace(/[^A-Za-z0-9_\s]/g,'')"
v-model="shp_oci.oci_csrc_info" auto-complete="off" placeholder="发货人AEO"></el-input>
v-model="shp_oci.oci_csrc_info" auto-complete="off" placeholder="企业编码"></el-input>
</el-form-item>
</el-col>
</el-row>
... ... @@ -177,7 +177,7 @@
<el-form-item>
<el-input minlength="1" maxlength="65" onkeyup="this.value=this.value.toUpperCase()"
@keyup.native="cne_oci.oci_csrc_info=cne_oci.oci_csrc_info.replace(/[^A-Za-z0-9_\s]/g,'')"
v-model="cne_oci.oci_csrc_info" auto-complete="off" placeholder="收货人AEO"></el-input>
v-model="cne_oci.oci_csrc_info" auto-complete="off" placeholder="企业编码"></el-input>
</el-form-item>
</el-col>
</el-row>
... ... @@ -1015,7 +1015,7 @@ Handling Information
<el-form-item>
<el-input minlength="1" maxlength="65" onkeyup="this.value=this.value.toUpperCase()"
@keyup.native="shp_aeo.oci_supplementary=shp_aeo.oci_supplementary.replace(/[^A-Za-z0-9_\s]/g,'')"
v-model="shp_aeo.oci_supplementary" auto-complete="off" placeholder="发货人AEO"></el-input>
v-model="shp_aeo.oci_supplementary" auto-complete="off" placeholder="企业编码"></el-input>
</el-form-item>
</el-col>
</el-row>
... ... @@ -1107,7 +1107,7 @@ Handling Information
<el-col style="width: 80%">
<el-form-item>
<el-input minlength="1" maxlength="65" onkeyup="this.value=this.value.toUpperCase()"
@keyup.native="cne_aeo.oci_supplementary=cne_aeo.oci_supplementary.replace(/[^A-Z0-9_\s]/g,'')" v-model="cne_aeo.oci_supplementary" auto-complete="off" placeholder="收货人AEO"></el-input>
@keyup.native="cne_aeo.oci_supplementary=cne_aeo.oci_supplementary.replace(/[^A-Z0-9_\s]/g,'')" v-model="cne_aeo.oci_supplementary" auto-complete="off" placeholder="企业编码"></el-input>
</el-form-item>
</el-col>
</el-row>
... ... @@ -2314,7 +2314,7 @@ Handling Information
this.form.shp.shp_loc_place = row.conCity;
this.form.shp.shp_country = row.country;
this.form.shp.shp_adr = row.conAddress;
this.shp_oci.oci_csrc_info=row.conAeo;
this.shp_oci.oci_csrc_info=row.enterprise;
this.shp_oci.oci_country_code=row.country;
// this.form.oci.push(this.shp_oci);
this.shp_contact.contact_number=row.conPhone;
... ... @@ -2349,7 +2349,7 @@ Handling Information
this.form.cne.cne_loc_place = row.conCity;
this.form.cne.cne_country = row.country;
this.form.cne.cne_adr = row.conAddress;
this.cne_oci.oci_csrc_info=row.conAeo;
this.cne_oci.oci_csrc_info=row.enterprise;
this.cne_oci.oci_country_code=row.country;
// this.form.oci.push(this.cne_oci);
this.cne_contact.contact_number=row.conPhone;
... ...