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",
value: '1,2',
},
filters.push({
{
column: "accept_user_id",
action: "==",
value: this.$store.state.user.id
})
}
// {
// column: "fromLocationCode",
// action: "==",

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

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

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

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

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

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

Loading…
Cancel
Save