|
|
|
@ -106,12 +106,12 @@
|
|
|
|
|
<el-table v-loading="loading" :data="codeArray" style="width: 100%;" :row-class-name="tableRowClassName" border
|
|
|
|
|
highlight-current-row max-height="300" height="300" ref="multipleTable">
|
|
|
|
|
<el-table-column label="序号" type="index" width="60"></el-table-column>
|
|
|
|
|
<el-table-column label="DI/物资编码" prop="nameCode"></el-table-column>
|
|
|
|
|
<el-table-column label="物资名称" prop="productName" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="商品名称" prop="spmc" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="规格型号" prop="spec" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="计量单位" prop="measname" show-overflow-tooltip="true" width="100"></el-table-column>
|
|
|
|
|
<el-table-column width="150" label="申购数量">
|
|
|
|
|
<el-table-column label="DI/物资编码" prop="nameCode" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="物资名称" prop="productName" show-overflow-tooltip="true" width="140"></el-table-column>
|
|
|
|
|
<el-table-column label="商品名称" prop="spmc" show-overflow-tooltip="true" width="110"></el-table-column>
|
|
|
|
|
<el-table-column label="规格型号" prop="spec" show-overflow-tooltip="true" width="140"></el-table-column>
|
|
|
|
|
<el-table-column label="计量单位" prop="measname" show-overflow-tooltip="true" width="80"></el-table-column>
|
|
|
|
|
<el-table-column width="110" label="申购数量">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-input size="small" v-model="scope.row.count"
|
|
|
|
|
placeholder="请输入数量" style="width: 80%"
|
|
|
|
@ -120,10 +120,10 @@
|
|
|
|
|
oninput="value=value.replace(/[^\d]/g,'')"></el-input>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column>
|
|
|
|
|
<el-table-column label="生产厂家" prop="manufactory"></el-table-column>
|
|
|
|
|
<el-table-column label="供应商" prop="supName"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="120">
|
|
|
|
|
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh" width="140"></el-table-column>
|
|
|
|
|
<el-table-column label="生产厂家" prop="manufactory" width="140"></el-table-column>
|
|
|
|
|
<el-table-column label="供应商" prop="supName" width="140"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="120" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" size="small" :disabled="scope.row.index === selectedIndex" @click.stop="true"
|
|
|
|
|
@click.native="rowChange(scope.row)">编辑
|
|
|
|
@ -212,6 +212,10 @@ export default {
|
|
|
|
|
type: Function,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
isRepeat: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
@ -514,6 +518,29 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getDetailByRepeat(value) {
|
|
|
|
|
this.query = {
|
|
|
|
|
orderIdFk: value
|
|
|
|
|
}
|
|
|
|
|
listApplyDetail(this.query) //查找该单号下的所有条码
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.codeArray = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.codeArray.forEach(item => {
|
|
|
|
|
item.orderIdFk = value
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
filters: {},
|
|
|
|
|
mounted() {
|
|
|
|
@ -523,21 +550,7 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.$nextTick(res => {
|
|
|
|
|
//当父id为空的时候生成id
|
|
|
|
|
if (this.pId == null) {
|
|
|
|
|
addApplyId().then(response => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.pId = response.data
|
|
|
|
|
console.log("最初生成id:")
|
|
|
|
|
console.log(this.pId)
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
debugger
|
|
|
|
|
if (this.$isNotBlank(this.idQuery.id)) {
|
|
|
|
|
this.query.limit = 100;
|
|
|
|
|
this.pId = this.idQuery.id;
|
|
|
|
@ -547,25 +560,64 @@ export default {
|
|
|
|
|
this.sValue = this.formData.corpName;
|
|
|
|
|
this.getStockOrderDetailList();
|
|
|
|
|
} else {
|
|
|
|
|
var date = new Date();
|
|
|
|
|
this.formData = {
|
|
|
|
|
id: null,
|
|
|
|
|
billNo: null,
|
|
|
|
|
remark: "",
|
|
|
|
|
deptCode: null,
|
|
|
|
|
locStorageCode: null,
|
|
|
|
|
invWarehouseCode: null,
|
|
|
|
|
createTime: parseTime(
|
|
|
|
|
let date = new Date();
|
|
|
|
|
if (this.isRepeat) {
|
|
|
|
|
this.formData = this.idQuery.formData
|
|
|
|
|
let orderId = this.idQuery.formData.id;
|
|
|
|
|
this.createTime = parseTime(
|
|
|
|
|
date,
|
|
|
|
|
"{y}-{m}-{d} {h}:{i}:{s}"
|
|
|
|
|
),
|
|
|
|
|
};
|
|
|
|
|
this.orderEditor = false;
|
|
|
|
|
)
|
|
|
|
|
this.formData.billNo = null
|
|
|
|
|
addApplyId().then(response => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.pId = response.data
|
|
|
|
|
this.formData.id = this.pId
|
|
|
|
|
this.$nextTick(res => {
|
|
|
|
|
this.getDetailByRepeat(orderId)
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
this.formData = {
|
|
|
|
|
id: null,
|
|
|
|
|
billNo: null,
|
|
|
|
|
remark: "",
|
|
|
|
|
deptCode: null,
|
|
|
|
|
locStorageCode: null,
|
|
|
|
|
invWarehouseCode: null,
|
|
|
|
|
createTime: parseTime(
|
|
|
|
|
date,
|
|
|
|
|
"{y}-{m}-{d} {h}:{i}:{s}"
|
|
|
|
|
),
|
|
|
|
|
};
|
|
|
|
|
this.orderEditor = false;
|
|
|
|
|
this.$nextTick(res => {
|
|
|
|
|
//当父id为空的时候生成id
|
|
|
|
|
if (this.pId == null) {
|
|
|
|
|
addApplyId().then(response => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.pId = response.data
|
|
|
|
|
this.formData.id = this.pId
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
this.findSubInvs();
|
|
|
|
|
this.codeArray = [];
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
</script>
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|