|
|
|
@ -138,7 +138,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {filterCompanyProductRelevance} from "../../../api/basic/udiRlSuptRelevance";
|
|
|
|
|
import {filterCompanyProductplanRelevance, filterCompanyProductRelevance} from "../../../api/basic/udiRlSuptRelevance";
|
|
|
|
|
import {addApplyDetail, addApply} from "../../../api/purchase/purApply";
|
|
|
|
|
import store from "../../../store";
|
|
|
|
|
import udiRlDetailDialog from "./../../purchase/purApply/purUdiRlDetailDialog";
|
|
|
|
@ -297,7 +297,7 @@ export default {
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.listQuery.customerId = store.getters.customerId;
|
|
|
|
|
filterCompanyProductRelevance(this.listQuery)
|
|
|
|
|
filterCompanyProductplanRelevance(this.listQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
@ -328,17 +328,14 @@ export default {
|
|
|
|
|
|
|
|
|
|
if (this.ids.length > 0) {
|
|
|
|
|
for (var i = 0; i < this.ids.length; i++) {
|
|
|
|
|
if (this.ids[i] == this.multipleSelection.rlId) {
|
|
|
|
|
if (this.ids[i] == this.multipleSelection.id) {
|
|
|
|
|
this.$message.error("该产品已录入!");
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!this.multipleSelection.companyName) {
|
|
|
|
|
this.$message.error("配送企业为空!请重新选择!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let str = this.multipleSelection.zczbhhzbapzbh;
|
|
|
|
|
if (str.search(",") != -1) {
|
|
|
|
|
this.currentCert = null;
|
|
|
|
@ -352,7 +349,7 @@ export default {
|
|
|
|
|
combine() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
let tQuery = {
|
|
|
|
|
productId: this.multipleSelection.rlId,
|
|
|
|
|
productId: this.multipleSelection.id,
|
|
|
|
|
productName: this.multipleSelection.cpmctymc,
|
|
|
|
|
count: 1,
|
|
|
|
|
orderIdFk: this.pId,
|
|
|
|
|