This commit is contained in:
lwl0608 2024-07-10 14:18:28 +08:00
parent 39742d9aa5
commit b0965b74e1
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,7 @@ class S:
return rows[0]
def proc(self, mid):
print("mid: {}".format(mid))
hds = [
"order_id",
"change",
@ -46,6 +47,7 @@ class S:
]
csv_ = Csv("{}_incom.csv".format(mid), hds)
rows = self.get_ch_income(mid)
print("len(rows): {}".format(len(rows)))
for row in rows:
order_id = safe_get_str(row, "order_id")
typ = "money"