This commit is contained in:
parent
600bcaccbd
commit
7c5345785e
|
@ -571,6 +571,7 @@ class S:
|
|||
# 找订单id
|
||||
def find_order_ids(self):
|
||||
order_ids = []
|
||||
order_id_map = dict()
|
||||
for item in mid_zid_list:
|
||||
mid = int(item[0])
|
||||
zid = int(item[1])
|
||||
|
@ -583,8 +584,10 @@ class S:
|
|||
if len(order_id) <= 0:
|
||||
continue
|
||||
order_ids.append(order_id)
|
||||
order_id_map[order_id] = 1
|
||||
# print(mid, zid, order_id)
|
||||
print(len(order_ids))
|
||||
print(len(order_id_map))
|
||||
|
||||
sql = "select * from vas_order where id in (%s)" % get_list_str_str(order_ids)
|
||||
# print(sql)
|
||||
|
|
Loading…
Reference in New Issue