Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
48b2daa8
Commit
48b2daa8
authored
Sep 29, 2020
by
Sxy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 交付单列表 不做状态区分
parent
dc77efcb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
31 deletions
+30
-31
tx-fi-tax/app/base/db/impl/bizchance/deliverybillDao.js
+30
-31
No files found.
tx-fi-tax/app/base/db/impl/bizchance/deliverybillDao.js
View file @
48b2daa8
...
@@ -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
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment