|
@@ -506,20 +506,6 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
- <el-row>
|
|
|
- <el-col :span="8" v-if="showfCustomno">
|
|
|
- <el-form-item
|
|
|
- label="备案序号"
|
|
|
- prop="fEmsSeqNo"
|
|
|
- >
|
|
|
- <el-input
|
|
|
- v-model="form.fEmsSeqNo"
|
|
|
- style="width: 80%"
|
|
|
- placeholder="备案序号"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
</div>
|
|
|
|
|
|
<el-row>
|
|
@@ -606,6 +592,21 @@
|
|
|
</el-row>
|
|
|
</div>
|
|
|
<el-row>
|
|
|
+ <el-col :span="12" v-if="showInstockFEmsSeqNo === '0'">
|
|
|
+ <el-form-item
|
|
|
+ label="备案序号"
|
|
|
+ prop="fEmsSeqNo"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ v-model="form.fEmsSeqNo"
|
|
|
+ style="width: 80%"
|
|
|
+ placeholder="备案序号"
|
|
|
+ :disabled="
|
|
|
+ browseStatus || current !== before || form.warehouseStatus > 3
|
|
|
+ "
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
<el-input
|
|
@@ -6274,7 +6275,8 @@
|
|
|
<el-dialog title="电子标签"
|
|
|
:visible.sync="showElabelDialog"
|
|
|
:close-on-click-modal="false"
|
|
|
- width="40%">
|
|
|
+ width="40%"
|
|
|
+ >
|
|
|
<span>
|
|
|
<el-table :data="elabelList" element-loading-text="努力加载中">
|
|
|
<el-table-column
|
|
@@ -6500,7 +6502,8 @@ export default {
|
|
|
fWarehouseid: [{ required: true, message: ' ', trigger: 'blur' }],
|
|
|
fbillingway: [{ required: true, message: ' ', trigger: 'blur' }],
|
|
|
fTocorpid: [{ required: true, message: ' ', trigger: 'blur' }],
|
|
|
- fGoodsid: [{ required: true, message: ' ', trigger: 'blur' }]
|
|
|
+ fGoodsid: [{ required: true, message: ' ', trigger: 'blur' }],
|
|
|
+ fEmsSeqNo: [{ required: true, message: ' ', trigger: 'blur' }]
|
|
|
// fUnit: [{required: true, message: " ", trigger: "blur"}],
|
|
|
},
|
|
|
imporRules: {
|
|
@@ -6849,6 +6852,7 @@ export default {
|
|
|
rkTime: null,
|
|
|
lsTime: null,
|
|
|
showfCustomno: false,
|
|
|
+ showInstockFEmsSeqNo: '1',
|
|
|
showfBusinessAttribution: [],
|
|
|
showfIfsampling: null,
|
|
|
showfWeighingDate: null,
|
|
@@ -6875,7 +6879,7 @@ export default {
|
|
|
signature: null, //打印时候的电子签章
|
|
|
showDataElabel: null,
|
|
|
showElabelDialog: false,
|
|
|
- elabelList: [],
|
|
|
+ elabelList: []
|
|
|
}
|
|
|
},
|
|
|
async created() {
|
|
@@ -6940,6 +6944,9 @@ export default {
|
|
|
this.getConfigKey('show_fCustomno').then((response) => {
|
|
|
this.showfCustomno = response.msg
|
|
|
})
|
|
|
+ this.getConfigKey('show.instock_fEmsSeqNo').then((response) => {
|
|
|
+ this.showInstockFEmsSeqNo = response.msg
|
|
|
+ })
|
|
|
this.getConfigKey('show_fBusinessAttribution').then((response) => {
|
|
|
this.showfBusinessAttribution = response.msg
|
|
|
})
|
|
@@ -9224,11 +9231,11 @@ export default {
|
|
|
},
|
|
|
// 查看电子标签
|
|
|
showElabel() {
|
|
|
- this.showElabelDialog = true;
|
|
|
+ this.showElabelDialog = true
|
|
|
if (this.form.fId) {
|
|
|
listElabelByfGPid(this.form.fId).then((response) => {
|
|
|
- this.elabelList = response.data.elabelList;
|
|
|
- });
|
|
|
+ this.elabelList = response.data.elabelList
|
|
|
+ })
|
|
|
}
|
|
|
},
|
|
|
//打印
|