fix
This commit is contained in:
parent
7a67325ec7
commit
94013b8fc4
|
@ -125,6 +125,15 @@ select mid, sum(`change`) as income from vas_ch_income where mid in (%s) and ct>
|
|||
)
|
||||
print(mid_income_map)
|
||||
|
||||
for zid in zids:
|
||||
mid = self.zid2mid(zid)
|
||||
uid, name = self.mid2uid_name(mid)
|
||||
ac = safe_get_int(zid_cnt_map, zid)
|
||||
income = safe_get_int(mid_income_map, mid)
|
||||
|
||||
doc = [uid, name, ac, income]
|
||||
print(doc)
|
||||
|
||||
|
||||
s = S()
|
||||
s.proc()
|
||||
|
|
Loading…
Reference in New Issue