|
|
|
@ -135,24 +135,30 @@ |
|
|
|
<el-row :gutter="20"> |
|
|
|
<div class="custom-divider"><span class="text" style="left: 22%">报关要素</span></div> |
|
|
|
<!-- 报关要素--> |
|
|
|
<el-col :span="8"> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item :label="'品牌'" > |
|
|
|
<el-radio v-model="brandType" label="境外品牌(其他)">境外品牌(其他)</el-radio> |
|
|
|
<el-radio v-model="brandType" label="无品牌">无品牌</el-radio> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="8"> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item :label="'品名类型'" > |
|
|
|
<el-radio v-model="hsCodeDescType" label="Y">中文</el-radio> |
|
|
|
<el-radio style="margin-left: 50px;" v-model="hsCodeDescType" label="N">英文</el-radio> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="8"> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item :label="'托/箱'" > |
|
|
|
<el-radio v-model="packageUnit" label="托">托</el-radio> |
|
|
|
<el-radio v-model="packageUnit" label="箱">箱</el-radio> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item :label="'重量'" > |
|
|
|
<el-radio v-model="declarationWeight" label="不显示">不显示</el-radio> |
|
|
|
<el-radio v-model="declarationWeight" label="显示">显示</el-radio> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row :gutter="20"> |
|
|
|
<div class="custom-divider"><span class="text">发票</span></div> |
|
|
|
@ -424,6 +430,12 @@ |
|
|
|
<el-radio v-model="packageUnit" label="箱">箱</el-radio> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item :label="'重量'" > |
|
|
|
<el-radio v-model="declarationWeight" label="不显示">不显示</el-radio> |
|
|
|
<el-radio v-model="declarationWeight" label="显示">显示</el-radio> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</el-form> |
|
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center"> |
|
|
|
@ -853,6 +865,7 @@ |
|
|
|
brandType:'', |
|
|
|
hsCodeDescType:'N', |
|
|
|
packageUnit: '', |
|
|
|
declarationWeight: '不显示', |
|
|
|
exportParam: {}, |
|
|
|
pageIndex: 1, |
|
|
|
pageSize: 100, |
|
|
|
@ -2039,6 +2052,7 @@ |
|
|
|
exportParam.delNo = this.currentRow.delNo |
|
|
|
exportParam.hsCodeDescType=this.hsCodeDescType |
|
|
|
exportParam.packageUnit=this.packageUnit |
|
|
|
exportParam.declarationWeight = this.declarationWeight |
|
|
|
ExportUtil.export( |
|
|
|
"/ecss/coDel/downloadDeclaration", |
|
|
|
exportParam, this.currentRow.declarationNo+"报关单.xlsx" |
|
|
|
@ -2151,6 +2165,7 @@ |
|
|
|
exportParam.brandType = this.brandType |
|
|
|
exportParam.hsCodeDescType=this.hsCodeDescType |
|
|
|
exportParam.packageUnit=this.packageUnit |
|
|
|
exportParam.declarationWeight = this.declarationWeight |
|
|
|
if (this.propertiesList.length>0) { |
|
|
|
this.currentRow.brand='品牌' |
|
|
|
exportParam.brand = '品牌' |
|
|
|
|