自動家計簿システム:領収書を同期、キャッシュフローを予測し、月次レポートを生成

上級

これはInvoice Processing, AI Summarization, Multimodal AI分野の自動化ワークフローで、17個のノードを含みます。主にIf, Set, Cron, Gmail, OpenAiなどのノードを使用。 Gmail・Google Sheets・GPT-4oを使った月次レポート自動生成 financial tracker

前提条件
  • Googleアカウント + Gmail API認証情報
  • OpenAI API Key
  • Google Sheets API認証情報
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "meta": {
    "templateCreatedBy": {
      "id": "template-creator",
      "name": "n8n Template Creator"
    },
    "templateCredentials": [
      "gmailOAuth2",
      "googleSheetsOAuth2Api",
      "openAiApi",
      "smtp"
    ]
  },
  "name": "Auto-Finance Tracker: Sync Receipts, Forecast Cash Flow & Get Monthly Reports",
  "nodes": [
    {
      "id": "sticky-description",
      "name": "📋 テンプレート説明",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        50,
        50
      ],
      "parameters": {
        "content": ""
      },
      "typeVersion": 1
    },
    {
      "id": "cron-trigger-node",
      "name": "月次レポートトリガー",
      "type": "n8n-nodes-base.cron",
      "position": [
        250,
        100
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "user-config",
      "name": "ユーザー設定",
      "type": "n8n-nodes-base.set",
      "position": [
        50,
        200
      ],
      "parameters": {},
      "typeVersion": 2
    },
    {
      "id": "gmail-fetch-node",
      "name": "領収書メールの取得",
      "type": "n8n-nodes-base.gmail",
      "position": [
        250,
        300
      ],
      "parameters": {},
      "typeVersion": 2
    },
    {
      "id": "gmail-get-attachments",
      "name": "添付ファイル付きメールの取得",
      "type": "n8n-nodes-base.gmail",
      "position": [
        450,
        300
      ],
      "parameters": {},
      "typeVersion": 2
    },
    {
      "id": "parse-email-body",
      "name": "メール本文の解析と添付ファイルの確認",
      "type": "n8n-nodes-base.function",
      "position": [
        650,
        300
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "ai-extract-receipt",
      "name": "AI: 領収書データの抽出(GPT-4o)",
      "type": "n8n-nodes-base.openAi",
      "position": [
        850,
        300
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "clean-ai-output",
      "name": "AI出力のクレンジングと解析",
      "type": "n8n-nodes-base.function",
      "position": [
        1050,
        300
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "check-duplicates",
      "name": "重複チェック",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        1250,
        300
      ],
      "parameters": {},
      "typeVersion": 4
    },
    {
      "id": "filter-missing-vendor",
      "name": "フィルター: ベンダー情報がない場合はスキップ",
      "type": "n8n-nodes-base.if",
      "position": [
        1450,
        300
      ],
      "parameters": {},
      "typeVersion": 2
    },
    {
      "id": "append-to-sheet",
      "name": "財務シートへの追加",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        1650,
        300
      ],
      "parameters": {},
      "typeVersion": 4
    },
    {
      "id": "generate-date-range",
      "name": "月次範囲の生成",
      "type": "n8n-nodes-base.function",
      "position": [
        450,
        100
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "read-finance-data",
      "name": "全財務データの読み取り",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        650,
        100
      ],
      "parameters": {},
      "typeVersion": 4
    },
    {
      "id": "aggregate-monthly",
      "name": "月次データの集計",
      "type": "n8n-nodes-base.function",
      "position": [
        850,
        100
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "ai-generate-insights",
      "name": "AI: インサイトの生成",
      "type": "n8n-nodes-base.openAi",
      "position": [
        1050,
        100
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "generate-chart",
      "name": "チャートと最終データの生成",
      "type": "n8n-nodes-base.function",
      "position": [
        1250,
        100
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "email-report",
      "name": "月次レポートの送信",
      "type": "n8n-nodes-base.emailSend",
      "position": [
        1450,
        100
      ],
      "parameters": {},
      "typeVersion": 2
    }
  ],
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "v2.1-production-ready",
  "connections": {
    "check-duplicates": {
      "main": [
        [
          {
            "node": "filter-missing-vendor",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "gmail-fetch-node": {
      "main": [
        [
          {
            "node": "gmail-get-attachments",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "generate-date-range": {
      "main": [
        [
          {
            "node": "read-finance-data",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "ai-generate-insights": {
      "main": [
        [
          {
            "node": "generate-chart",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "read-finance-data": {
      "main": [
        [
          {
            "node": "aggregate-monthly",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "aggregate-monthly": {
      "main": [
        [
          {
            "node": "ai-generate-insights",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "cron-trigger-node": {
      "main": [
        [
          {
            "node": "generate-date-range",
            "type": "main",
            "index": 0
          },
          {
            "node": "gmail-fetch-node",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "clean-ai-output": {
      "main": [
        [
          {
            "node": "check-duplicates",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "gmail-get-attachments": {
      "main": [
        [
          {
            "node": "parse-email-body",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "generate-chart": {
      "main": [
        [
          {
            "node": "email-report",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "filter-missing-vendor": {
      "main": [
        [
          {
            "node": "append-to-sheet",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "ai-extract-receipt": {
      "main": [
        [
          {
            "node": "clean-ai-output",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "parse-email-body": {
      "main": [
        [
          {
            "node": "ai-extract-receipt",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
よくある質問

このワークフローの使い方は?

上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。

このワークフローはどんな場面に適していますか?

上級 - 請求書処理, AI要約, マルチモーダルAI

有料ですか?

このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。

関連ワークフロー

顧客育成メールの自動化と Notion からの顧客評価収集
WhatsApp、GPT-4V、Google Sheets を活用して領収データを抽出・整理
If
Code
Notion
+
If
Code
Notion
18 ノードShelly-Ann Davy
請求書処理
静かなCFOの日の出 —ソフトテクノロジーモーニングブリーフ(ホームCEO)🌸
🌸 CFO 日の出 - 家庭用CEO向けソフトウェア技術モーニングブリーフィング(n8n テンプレート)
Set
Cron
Open Ai
+
Set
Cron
Open Ai
15 ノードShelly-Ann Davy
個人の生産性
競合他社コンテンツギャップ分析ツール:構題マッピングの自動化
Gemini AI、Apify、Google Sheetsを使用して競合企業のコンテンツギャップを分析
If
Set
Code
+
If
Set
Code
30 ノードMychel Garzon
その他
AIを使った求人情報の自動検索
Google Jobs、RemoteOK、GPT-3.5 を使ってAIの求人情報に基づく自動求人検索を行い、AI採用情報に基づく自動求人検索とAI対応の求人情報を提供
If
Set
Code
+
If
Set
Code
17 ノードShelly-Ann Davy
個人の生産性
Notionから自動で顧客育成メールと評価収集を実行
Telegramを使ってGoogleカレンダーとNotion CRMによる会議スケジュールの自動化
If
Set
Code
+
If
Set
Code
19 ノードShelly-Ann Davy
サポートチャットボット
GRCモジュール3:サプライヤー風險評価ツール
AI、Google Sheets、およびメールリマインダーを使用したサプライザー リスク評価の自動化
If
Set
Gmail
+
If
Set
Gmail
7 ノードAdnan Tariq
AI要約
ワークフロー情報
難易度
上級
ノード数17
カテゴリー3
ノードタイプ9
難易度説明

上級者向け、16ノード以上の複雑なワークフロー

作成者
Shelly-Ann Davy

Shelly-Ann Davy

@SheCodesFlow

Founder of The Workflow Muse & @SheCodesFlow. I craft elegant, task-focused automations for creators, founders, and soft-tech enthusiasts. “Automate with grace. Scale with power.”

外部リンク
n8n.ioで表示

このワークフローを共有

カテゴリー

カテゴリー: 34