bug fix: export function & filters
This commit is contained in:
parent
46a1f212f2
commit
9b00473ba4
|
@ -170,7 +170,7 @@ def init (**_args) :
|
|||
project[field_name] = {"$ifNull":[_name,""]} #{"$cond":[{"$eq":[_name,None]},"",_name]}
|
||||
project["_id"] = 1
|
||||
# pipeline = [{"$match":{"procedures":{"$nin":[None,'']}}},{"$unwind":"$"+table},{"$project":project}]
|
||||
pipeline = [{"$unwind":"$"+table},{"$project":project}]
|
||||
pipeline = [{"$match": {table: {"$nin": [None, ""]}}},{"$unwind":"$"+table},{"$project":project}]
|
||||
r += [{"table":table,"mongo":{"aggregate":TABLE_NAME,"cursor":{},"pipeline":pipeline,"allowDiskUse":True},"sql":create(table=table,key='claim_id',fields=fields)}]
|
||||
|
||||
return r
|
||||
|
|
Loading…
Reference in New Issue