|
|
|
@ -35,6 +35,14 @@
|
|
|
|
|
<el-input v-model="listQuery.thrPiId" placeholder="第三方产品编码" clearable="true"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<!-- <el-form-item class="query-form-item">-->
|
|
|
|
|
<!-- <el-select v-model="listQuery.groupBuy" placeholder="是否集采" clearable="true">-->
|
|
|
|
|
<!-- <el-option label="全部" value=""></el-option>-->
|
|
|
|
|
<!-- <el-option label="集采" value="true"></el-option>-->
|
|
|
|
|
<!-- <el-option label="非集采" value="false"></el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
|
|
|
@ -100,6 +108,21 @@
|
|
|
|
|
prop="qxlb"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="是否集采"
|
|
|
|
|
prop="groupBuy"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
|
|
<el-tag :type="(scope.row.groupBuy) | statusFilterType">
|
|
|
|
|
<span>{{ enableMap[scope.row.groupBuy] }}</span>
|
|
|
|
|
</el-tag>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="配送企业"
|
|
|
|
|
prop="companyName"
|
|
|
|
@ -189,7 +212,7 @@ export default {
|
|
|
|
|
erpName: "",
|
|
|
|
|
keys: [],
|
|
|
|
|
},
|
|
|
|
|
ids:[],
|
|
|
|
|
ids: [],
|
|
|
|
|
radioCheck: null,
|
|
|
|
|
dataList: [],
|
|
|
|
|
pageTotal: 1,
|
|
|
|
@ -201,6 +224,10 @@ export default {
|
|
|
|
|
thirdSysFk: null,
|
|
|
|
|
busTypes: [],
|
|
|
|
|
actDateRange: [],
|
|
|
|
|
enableMap: {
|
|
|
|
|
true: "集采",
|
|
|
|
|
false: "非集采",
|
|
|
|
|
},
|
|
|
|
|
pickerOptions: {
|
|
|
|
|
shortcuts: [
|
|
|
|
|
{
|
|
|
|
@ -245,12 +272,12 @@ export default {
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: "",
|
|
|
|
|
});
|
|
|
|
|
this.listQuery.udiCode=null
|
|
|
|
|
this.listQuery.unionCode=null
|
|
|
|
|
this.listQuery.cpmctymc=null
|
|
|
|
|
this.listQuery.ggxh=null
|
|
|
|
|
this.listQuery.ylqxzcrbarmc=null
|
|
|
|
|
this.listQuery.thrPiId=null
|
|
|
|
|
this.listQuery.udiCode = null
|
|
|
|
|
this.listQuery.unionCode = null
|
|
|
|
|
this.listQuery.cpmctymc = null
|
|
|
|
|
this.listQuery.ggxh = null
|
|
|
|
|
this.listQuery.ylqxzcrbarmc = null
|
|
|
|
|
this.listQuery.thrPiId = null
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
tableRowClassName({row}) {
|
|
|
|
@ -290,11 +317,10 @@ export default {
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.listQuery.customerId = store.getters.customerId;
|
|
|
|
|
if( this.data.companyName!=undefined && this.data.companyName!=null ){
|
|
|
|
|
if (this.data.companyName != undefined && this.data.companyName != null) {
|
|
|
|
|
this.listQuery.companyName = this.data.companyName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
debugger
|
|
|
|
|
stockOrderDetailFilterProduct(this.listQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
@ -379,20 +405,29 @@ export default {
|
|
|
|
|
selectCert() {
|
|
|
|
|
if (this.currentCert == null) {
|
|
|
|
|
this.$message.error("请先选择对应的注册证!");
|
|
|
|
|
}else{
|
|
|
|
|
this.multipleSelection.zczbhhzbapzbh = this.currentCert;
|
|
|
|
|
this.combine();
|
|
|
|
|
} else {
|
|
|
|
|
this.multipleSelection.zczbhhzbapzbh = this.currentCert;
|
|
|
|
|
this.combine();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
components: {udiRlDetailDialog},
|
|
|
|
|
|
|
|
|
|
filters: {
|
|
|
|
|
statusFilterType(status) {
|
|
|
|
|
const statusMap = {
|
|
|
|
|
false: "warning",
|
|
|
|
|
true: "success",
|
|
|
|
|
};
|
|
|
|
|
return statusMap[status];
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
created() {
|
|
|
|
|
if (this.$isNotBlank(this.data)) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// this.listQuery.nameCode = this.data.udi;
|
|
|
|
|
// if (this.data.billType != null) {
|
|
|
|
|
// this.listQuery.billType = this.data.billType;
|
|
|
|
@ -404,9 +439,9 @@ export default {
|
|
|
|
|
// }
|
|
|
|
|
// this.orderEditor = this.data.orderEditor;
|
|
|
|
|
// this.orderId = this.data.orderId;
|
|
|
|
|
this.ids=[];
|
|
|
|
|
if(this.data.stockOrderLists.length>0){
|
|
|
|
|
for(var i=0;i<this.data.stockOrderLists.length;i++){
|
|
|
|
|
this.ids = [];
|
|
|
|
|
if (this.data.stockOrderLists.length > 0) {
|
|
|
|
|
for (var i = 0; i < this.data.stockOrderLists.length; i++) {
|
|
|
|
|
this.ids.push(this.data.stockOrderLists[i].productId);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|