Commit 48b2daa8 by Sxy

fix: 交付单列表 不做状态区分

parent dc77efcb
...@@ -41,39 +41,38 @@ class DeliverybillDao extends Dao { ...@@ -41,39 +41,38 @@ class DeliverybillDao extends Dao {
// 根据 页面 过滤 交付状态 // 根据 页面 过滤 交付状态
switch (qobj.bizpath) { switch (qobj.bizpath) {
case "/deliveryManage/deliveryRecord": // 交付单记录 case "/deliveryManage/deliveryRecord": // 交付单记录
filters.push({ // filters.push({
delivery_status: { // delivery_status: {
$in: [ // $in: [
system.SERVERSESTATUS.CLOSED, system.SERVERSESTATUS.SUCCESS, system.SERVERSESTATUS.INSERVICE, // system.SERVERSESTATUS.CLOSED, system.SERVERSESTATUS.SUCCESS, system.SERVERSESTATUS.INSERVICE,
] // ]
}, // },
}); // });
break break
case "/deliveryManage/deliveryDealWith": //交付单处理 case "/deliveryManage/deliveryDealWith": //交付单处理
filters.push({ // filters.push({
$or: [{ // $or: [{
delivery_status: { // delivery_status: {
$in: [ // $in: [
system.SERVERSESTATUS.RECEIVED, system.SERVERSESTATUS.WAITUSERCONFIRM // system.SERVERSESTATUS.RECEIVED, system.SERVERSESTATUS.WAITUSERCONFIRM
] // ]
} // }
}, // },
{ // {
delivery_status: system.SERVERSESTATUS.INSERVICE, // delivery_status: system.SERVERSESTATUS.INSERVICE,
$or: [ // $or: [
{ // {
v_setup_status: system.SERVERSESTATUS.NOTSETUP // v_setup_status: system.SERVERSESTATUS.NOTSETUP
}, // },
{ // {
v_setup_status: { // v_setup_status: {
$eq: null // $eq: null
} // }
} // }
] // ]
} // }
], // ],
// });
});
break break
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment