Browse Source

修改任务筛选查询

hella_online_20240829
lijuncheng 2 months ago
parent
commit
baf9d49195
  1. 4
      src/pages/productPutaway/job/productPutawayJob.vue
  2. 10
      src/pages/productionReceipt/job/productionReceiptJob.vue
  3. 12
      src/pages/purchaseReceipt/job/receiptJob.vue
  4. 4
      src/pages/putaway/job/putawayJob.vue

4
src/pages/productPutaway/job/productPutawayJob.vue

@ -366,11 +366,11 @@
action: "in", action: "in",
value: '1,2', value: '1,2',
}, },
filters.push({ {
column: "accept_user_id", column: "accept_user_id",
action: "==", action: "==",
value: this.$store.state.user.id value: this.$store.state.user.id
}) }
// { // {
// column: "fromLocationCode", // column: "fromLocationCode",
// action: "==", // action: "==",

10
src/pages/productionReceipt/job/productionReceiptJob.vue

@ -272,6 +272,11 @@
action: "==", action: "==",
value: code value: code
}) })
filters.push({
column: "accept_user_id",
action: "==",
value: this.$store.state.user.id
})
var params = { var params = {
filters: filters, filters: filters,
@ -321,6 +326,11 @@
column: "itemCode", column: "itemCode",
action: "==", action: "==",
value: result.label.itemCode value: result.label.itemCode
},
{
column: "accept_user_id",
action: "==",
value: this.$store.state.user.id
} }
] ]
getProductionReceiptJobList({ getProductionReceiptJobList({

12
src/pages/purchaseReceipt/job/receiptJob.vue

@ -412,6 +412,11 @@
column: "status", column: "status",
action: "in", action: "in",
value: '1,2', value: '1,2',
},
{
column: "accept_user_id",
action: "==",
value: this.$store.state.user.id
} }
// { // {
// column: "fromLocationCode", // column: "fromLocationCode",
@ -420,13 +425,6 @@
// } // }
] ]
} }
filters.push({
column: "accept_user_id",
action: "==",
value: this.$store.state.user.id
})
getPurchaseReceiptJobList({ getPurchaseReceiptJobList({
filters: filters, filters: filters,
pageNo: 1, pageNo: 1,

4
src/pages/putaway/job/putawayJob.vue

@ -346,11 +346,11 @@ import { Exception } from 'sass';
action: "in", action: "in",
value: '1,2', value: '1,2',
}, },
filters.push({ {
column: "accept_user_id", column: "accept_user_id",
action: "==", action: "==",
value: this.$store.state.user.id value: this.$store.state.user.id
}) }
// { // {
// column: "fromLocationCode", // column: "fromLocationCode",
// action: "==", // action: "==",

Loading…
Cancel
Save