サプライヤ見積比較ツールとAIによるインタラクティブ調整表

中級

これはDocument Extraction, AI Summarization分野の自動化ワークフローで、9個のノードを含みます。主にWait, Webhook, Function, EmailSend, HttpRequestなどのノードを使用。 Grok AI を使ってサプライヤーの見積もりを比較し、Google Sheets およびメールにエクスポートする

前提条件
  • HTTP Webhookエンドポイント(n8nが自動生成)
  • ターゲットAPIの認証情報が必要な場合あり
  • Google Sheets API認証情報

カテゴリー

ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "id": "I7WH7YAkU7thNKGJ",
  "meta": {
    "instanceId": "dd69efaf8212c74ad206700d104739d3329588a6f3f8381a46a481f34c9cc281",
    "templateCredsSetupCompleted": true
  },
  "name": "Vendor Quotation Comparator with Smart AI Summary Table",
  "tags": [],
  "nodes": [
    {
      "id": "f13d14c0-5c12-49dc-8fdc-09374c800045",
      "name": "見積書アップロード",
      "type": "n8n-nodes-base.webhook",
      "position": [
        -480,
        -140
      ],
      "webhookId": "vendor-quote-upload",
      "parameters": {
        "path": "vendor-quote-upload",
        "options": {}
      },
      "typeVersion": 1
    },
    {
      "id": "3d583a32-3731-4b44-98b0-b90866128a54",
      "name": "ファイルデータ抽出",
      "type": "n8n-nodes-base.function",
      "position": [
        -260,
        -140
      ],
      "parameters": {
        "functionCode": "return items.map(item => {\n  const file = item.binary['data'];\n  return {\n    json: {\n      fileName: file.fileName,\n      fileData: file.data\n    }\n  };\n});"
      },
      "typeVersion": 1
    },
    {
      "id": "bd191a98-5b73-4732-bffa-1c9d09faadb4",
      "name": "AI要約",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        -40,
        -140
      ],
      "parameters": {
        "url": "https://api.grok.xai.com/summarize",
        "options": {}
      },
      "typeVersion": 1
    },
    {
      "id": "616fcc3f-2c98-4816-ad3a-5285e47322f5",
      "name": "要約フォーマット",
      "type": "n8n-nodes-base.function",
      "position": [
        400,
        -140
      ],
      "parameters": {
        "functionCode": "return items.map(item => {\n  const summary = item.json;\n  return {\n    json: {\n      vendor: summary.vendor || 'Unknown',\n      price: summary.price || 0,\n      deliveryTime: summary.deliveryTime || 'N/A',\n      features: summary.features || []\n    }\n  };\n});"
      },
      "typeVersion": 1
    },
    {
      "id": "e322b3b3-3b5e-4a2b-b734-6d3c2a8a7a51",
      "name": "Google Sheetsに記録",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        620,
        -140
      ],
      "parameters": {
        "range": "QuotationSummary!A:D",
        "options": {},
        "sheetId": "your-google-sheet-id",
        "operation": "append"
      },
      "credentials": {
        "googleApi": {
          "id": "ScSS2KxGQULuPtdy",
          "name": "Google Sheets- test"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "9e515cef-d701-47d3-b1a8-6b5e235ab5bf",
      "name": "返信待機",
      "type": "n8n-nodes-base.wait",
      "position": [
        180,
        -140
      ],
      "webhookId": "4d3d095b-db33-4a57-a49b-bb0314c6c54b",
      "parameters": {},
      "typeVersion": 1.1
    },
    {
      "id": "6a812cc2-8d22-4e08-83af-0f0bafe66ac4",
      "name": "メール送信",
      "type": "n8n-nodes-base.emailSend",
      "position": [
        840,
        -140
      ],
      "webhookId": "98e88dd5-5189-4451-bdcc-7e4077b7d221",
      "parameters": {
        "text": "json: {\n      vendor: summary.vendor || 'Unknown',\n      price: summary.price || 0,\n      deliveryTime: summary.deliveryTime || 'N/A',\n      features: summary.features || []\n    }",
        "options": {},
        "subject": "Vendor Quotation Comparison",
        "toEmail": "team@gmail.com",
        "fromEmail": "admin@gmail.com",
        "emailFormat": "text"
      },
      "credentials": {
        "smtp": {
          "id": "G1kyF8cSWTZ4vouN",
          "name": "SMTP -test"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "54b92d68-e46a-4af9-8fd2-c4cd16c36316",
      "name": "付箋",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        300,
        -560
      ],
      "parameters": {
        "color": 4,
        "width": 580,
        "height": 260,
        "content": "## Minimal Google Sheet Columns (Top 5):\n\n**Vendor Name** – Name of the vendor\n\n**Total Amount** – Final quoted price\n\n**Delivery Timeline** – Estimated delivery time\n\n**AI Summary** – Key points from the quotation\n\n**Status** – e.g., Logged, Reviewed, Selected"
      },
      "typeVersion": 1
    },
    {
      "id": "ccf6e6a7-6e08-4cc5-ada8-5e70dd688ef1",
      "name": "付箋1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -500,
        -740
      ],
      "parameters": {
        "width": 680,
        "height": 560,
        "content": "### 🧷 **Notes for Each Node:**\n1. **Upload Quotes** (Webhook Trigger)\n   📌 *Triggers the workflow when vendor quote files are uploaded (via webhook).*\n   ➤ Accepts input like PDF, Excel, or other documents.\n\n2. **Extract File Data** (Code/Function Node)\n   📌 *Parses and extracts key data from uploaded quote files.*\n   ➤ Converts file contents to structured text or JSON.\n\n3. **AI Summarization** (HTTP Request to Grok API)\n   📌 *Sends the extracted data to an AI model to generate a comparison summary.*\n   ➤ Uses Grok or another LLM to create a smart summary.\n\n4. **Wait For Reply** (Wait Node)\n   📌 *Waits for the AI response before proceeding.*\n   ➤ Ensures no step runs before the summary is ready.\n\n5. **Format Summary** (Code/Function Node)\n   📌 *Cleans and formats the AI response into a readable comparison table.*\n   ➤ Converts raw AI output into structured rows/columns.\n\n6. **Log to Google Sheets** (Google Sheets Node)\n   📌 *Appends the formatted summary into a Google Sheet.*\n   ➤ Maintains a log of all vendor comparisons for easy tracking.\n\n7. **Send Email** (Email Node)\n   📌 *Emails the formatted summary to stakeholders or procurement team.*\n   ➤ Sends decision-ready content to the right people."
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "5b1389b3-0c98-4fb8-8ac1-ba2de9c736c9",
  "connections": {
    "f13d14c0-5c12-49dc-8fdc-09374c800045": {
      "main": [
        [
          {
            "node": "3d583a32-3731-4b44-98b0-b90866128a54",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "616fcc3f-2c98-4816-ad3a-5285e47322f5": {
      "main": [
        [
          {
            "node": "e322b3b3-3b5e-4a2b-b734-6d3c2a8a7a51",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "9e515cef-d701-47d3-b1a8-6b5e235ab5bf": {
      "main": [
        [
          {
            "node": "616fcc3f-2c98-4816-ad3a-5285e47322f5",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "bd191a98-5b73-4732-bffa-1c9d09faadb4": {
      "main": [
        [
          {
            "node": "9e515cef-d701-47d3-b1a8-6b5e235ab5bf",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "3d583a32-3731-4b44-98b0-b90866128a54": {
      "main": [
        [
          {
            "node": "bd191a98-5b73-4732-bffa-1c9d09faadb4",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "e322b3b3-3b5e-4a2b-b734-6d3c2a8a7a51": {
      "main": [
        [
          {
            "node": "6a812cc2-8d22-4e08-83af-0f0bafe66ac4",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
よくある質問

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

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

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

中級 - 文書抽出, AI要約

有料ですか?

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

関連ワークフロー

AI駆動のイベント後レポートと要約ジェネレーター
GPT-4を使用してイベント後のレポートを生成し、メール送信とデータベース保存をサポートする
Code
Webhook
Postgres
+
Code
Webhook
Postgres
13 ノードOneclick AI Squad
文書抽出
Instagramへの顧客苦情をサポートチケットに変換+SLA自動化
Instagramのクレーム処理の自動化にはClaude AI、チケット、SLA管理を使用
If
Set
Cron
+
If
Set
Cron
31 ノードOneclick AI Squad
チケット管理
放射線画像から詳細なレポートへの変換ツール
GPT-4 VisionとPDFメールを使用して放射線画像を患者フレンドリーなレポートに変換
Code
Wait
Gmail
+
Code
Wait
Gmail
12 ノードOneclick AI Squad
文書抽出
スマート在庫補充と自動発注
OpenAI予測とERP統合に基づくAI駆動型在庫管理
Code
Filter
Postgres
+
Code
Filter
Postgres
24 ノードOneclick AI Squad
文書抽出
AI候補者選考・面接スケジュールシステム
AIベースの候補者スクリーニングと面接スケジューリング(OpenAI GPTとGoogleスイート)
If
Code
Webhook
+
If
Code
Webhook
18 ノードOneclick AI Squad
人事
n8nの航空会社ネットチェックインフロッパーとAIおよびベクターストアの併用
Ollama AI、Google Sheets、Postgresベクトルデータベースを使って航空会社のネット値段チェックデータを取り込む
Wait
Http Request
Google Sheets
+
Wait
Http Request
Google Sheets
14 ノードOneclick AI Squad
文書抽出
ワークフロー情報
難易度
中級
ノード数9
カテゴリー2
ノードタイプ7
難易度説明

経験者向け、6-15ノードの中程度の複雑さのワークフロー

作成者
Oneclick AI Squad

Oneclick AI Squad

@oneclick-ai

The AI Squad Initiative is a pioneering effort to build, automate and scale AI-powered workflows using n8n.io. Our mission is to help individuals and businesses integrate AI agents seamlessly into their daily operations from automating tasks and enhancing productivity to creating innovative, intelligent solutions. We design modular, reusable AI workflow templates that empower creators, developers and teams to supercharge their automation with minimal effort and maximum impact.

外部リンク
n8n.ioで表示

このワークフローを共有

カテゴリー

カテゴリー: 34