|
|
|
@ -52,14 +52,14 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
import {
|
|
|
|
|
filterDetailProducts,
|
|
|
|
|
} from "../../api/warehouse/InvProducts";
|
|
|
|
|
import store from "../../store";
|
|
|
|
|
import draggable from "vuedraggable";
|
|
|
|
|
import {getBusType} from "../../api/warehouse/BusRole";
|
|
|
|
|
} from "../../api/warehouse/InvProducts";
|
|
|
|
|
import store from "../../store";
|
|
|
|
|
import draggable from "vuedraggable";
|
|
|
|
|
import {getBusType} from "../../api/warehouse/BusRole";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
export default {
|
|
|
|
|
name: "idQuery",
|
|
|
|
|
props: {
|
|
|
|
|
idQuery: {
|
|
|
|
@ -70,8 +70,9 @@
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
query: {
|
|
|
|
|
productIdFk:null,
|
|
|
|
|
customerId:null,
|
|
|
|
|
productIdFk: null,
|
|
|
|
|
customerId: null,
|
|
|
|
|
batchNo: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20,
|
|
|
|
|
},
|
|
|
|
@ -95,8 +96,8 @@
|
|
|
|
|
path: "",
|
|
|
|
|
});
|
|
|
|
|
this.query = {
|
|
|
|
|
productIdFk:null,
|
|
|
|
|
customerId:null,
|
|
|
|
|
productIdFk: null,
|
|
|
|
|
customerId: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20,
|
|
|
|
|
};
|
|
|
|
@ -120,8 +121,9 @@
|
|
|
|
|
|
|
|
|
|
getCodeList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.query.productIdFk = this.idQuery.id;
|
|
|
|
|
this.query.productIdFk = this.idQuery.relIdFk;
|
|
|
|
|
this.query.customerId = store.getters.customerId;
|
|
|
|
|
this.query.batchNo = this.idQuery.batchNo;
|
|
|
|
|
filterDetailProducts(this.query) //查找该单号下的所有条码
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
@ -170,7 +172,7 @@
|
|
|
|
|
this.getBusType();
|
|
|
|
|
this.getCodeList();
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|