tap order 数据写入mysql

This commit is contained in:
pengtao 2019-10-16 14:07:32 +08:00
parent 2891f878fa
commit d2fbec077b

View File

@ -26,7 +26,9 @@ class TapTapReport:
def build_report(self): def build_report(self):
all = dict() all = dict()
for item in (self.day, self.bday): for item in (self.day, self.bday):
all.update(self.split_order_data(item)) b_d = self.split_order_data(item)
print(f"b_d={b_d}")
all.update(b_d)
print(all) print(all)