Commit 48b2daa8 by Sxy

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

parent dc77efcb
......@@ -41,39 +41,38 @@ class DeliverybillDao extends Dao {
// 根据 页面 过滤 交付状态
switch (qobj.bizpath) {
case "/deliveryManage/deliveryRecord": // 交付单记录
filters.push({
delivery_status: {
$in: [
system.SERVERSESTATUS.CLOSED, system.SERVERSESTATUS.SUCCESS, system.SERVERSESTATUS.INSERVICE,
]
},
});
// filters.push({
// delivery_status: {
// $in: [
// system.SERVERSESTATUS.CLOSED, system.SERVERSESTATUS.SUCCESS, system.SERVERSESTATUS.INSERVICE,
// ]
// },
// });
break
case "/deliveryManage/deliveryDealWith": //交付单处理
filters.push({
$or: [{
delivery_status: {
$in: [
system.SERVERSESTATUS.RECEIVED, system.SERVERSESTATUS.WAITUSERCONFIRM
]
}
},
{
delivery_status: system.SERVERSESTATUS.INSERVICE,
$or: [
{
v_setup_status: system.SERVERSESTATUS.NOTSETUP
},
{
v_setup_status: {
$eq: null
}
}
]
}
],
});
// filters.push({
// $or: [{
// delivery_status: {
// $in: [
// system.SERVERSESTATUS.RECEIVED, system.SERVERSESTATUS.WAITUSERCONFIRM
// ]
// }
// },
// {
// delivery_status: system.SERVERSESTATUS.INSERVICE,
// $or: [
// {
// v_setup_status: system.SERVERSESTATUS.NOTSETUP
// },
// {
// v_setup_status: {
// $eq: null
// }
// }
// ]
// }
// ],
// });
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