前提・実現したいこと
現在、『python 自動処理の教科書』 という参考書で勉強しています。
【顧客ごとに請求書を発行しよう】という項目でプログラムを実行してもファイルに顧客ごとの請求書が作成されません。
どなたかご教示頂けれが幸いです。
何卒宜しくお願い致します。
###下記がソースコードです。
import openpyxl as excel, json in_file = 'matome.json' out_dir = './invoice02' template_file = 'invoice-template.xlsx' subject = "2月のご請求" def gen_invoice(): with open(in_file, "rt") as fp: users = json.load(fp) for name, data in users.items(): make_user_invoice(name, data) def make_user_invoice(name, data): book = excel.load_workbook(template_file) sheet = book.active sheet["B4"] = name sheet["C10"] = subject sheet["C11"] = data["total"] for i, it in enumerate(data['items']): date, summary, cnt, price = it row = 15 + i sheet.cell(row, 2, summary+'('+date+')') sheet.cell(row, 5, cnt) sheet.cell(row, 6, price) sheet.cell(row, 7, cnt*price) out_file = out_dir+'/' + name + '様.xlsx' book.save(out_file) print("save: ", out_file) if __name__ == " __main__": gen_invoice()
###下記はサンプルとして使用している顧客データです。
ファイル名:『matome.xlsx』
試したこと
先に『invoice02』というフォルダを作成し
その後、プログラムを実行すると下の画像の様に
顧客ごとに請求書ができるそうなのですが、
実際、プログラムを実行前に作成した『invoice02』は空の状態でした。
###補足1
上記フォルダ等含め、すべて同じファイルに保存はしてあります。
また、下の画像はサンプルとして使用している請求書です。
ファイル名:『invoice-template.xlsx』
###補足2
下記のコードにより事前に「matome.json」のファイルは作成できている?と思います。
import openpyxl as excel, json in_file = 'matome.xlsx' out_file = 'matome.json' def split_list(): users = read_and_split(in_file) reslut = {} for name, rows in users.items(): result[name] = calc_user(rows) print(name, result[name]['total']) with open(out_file, "wt") as fp: json.dump(result, fp) def read_and_split(in_file): users ={} sheet = excel.load_workbook(in_file).active for row in sheet.iter_rows(): values = [col.value for col in row] name = values[1] if name not in users: users[name] = [] users[name].append(values) return users def calc_user(rows): total = 0 items = [] for row in rows: date, _, item, cnt, price, _ = row date_s = date.strftime('%m%d') items.append([date_s, item, cnt, price]) total += cnt * price return {'items': items, 'total': total} if __name__=="__main__": split_list()
###上記のプログラミングを実行した結果
下記の写真の「matome」のexcelファイルとjsonファイルができました。
###「matome」のjson形式ファイルの中身です。
文字化けしているように見えます。
本書では、json形式で作成されたデータをWebブラウザのjsonビューワーで確認してみましょう。
との事ですが、jsonビューワーの使用方法が分かりませんでした。(ご教授頂けると幸いです。)
]], "total": 19100}, "\u5c71\u7530 \u53f2\u6717": {"items": [["0315", "\u30df\u30ab\u30f3", 4, 2500], ["0317", "\u30d6\u30c9\u30a6", 2, 3000], ["0307", "\u30d0\u30ca\u30ca", 8, 1000], ["0316", "\u30a4\u30c1\u30b4", 5, 2000]], "total": 34000}, "\u4e0a\u7530 \u7950\u8f1d": {"items": [["0306", "\u91a4\u6cb9", 20, 1500], ["0320", "\u5473\u564c", 8, 950], ["0303", "\u8c46\u8150", 4, 1000], ["0307", "\u5927\u8c46\u30bb\u30c3\u30c8", 2, 2000]], "total": 45600}, "\u677e\u5c71 \u7adc\u5175": {"items": [["0311", "\u30bd\u30fc\u30b9", 2, 1500], ["0321", "\u91a4\u6cb9", 10, 1500], ["0321", "\u6843\u30bc\u30ea\u30fc", 10, 1500], ["0305", "\u8c46\u8150", 1, 1000], ["0315", "\u5c0f\u8c46", 1, 1000], ["0320", "\u5c0f\u8c46", 5, 1000]], "total": 40000}, "\u9234\u6728 \u592a\u90ce": {"items": [["0306", "\u30df\u30ab\u30f3\u30bc\u30ea\u30fc", 20, 1500], ["0303", "\u30d0\u30ca\u30ca", 3, 1000]], "total": 33000}, "\u5927\u5185 \u572d\u4eba": {"items": [["0305", "\u6e6f\u8449", 1, 2000], ["0316", "\u8c46\u8150", 4, 1000]], "total": 6000}, "\u5c71\u4e0b \u4e94\u90ce": {"items": [["0320", "\u30de\u30f3\u30b4\u30fc", 3, 1900]], "total": 5700}}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。