Workflow: Quote → Invoice Conversion
Workflow: Quote → Invoice Conversion
Section titled “Workflow: Quote → Invoice Conversion”Estimated time: 10 minutes Difficulty: Beginner Category: 📋 Administrative Professions: All
🌐 Disponible aussi en Français
Use Case
Section titled “Use Case”A client has accepted your quote and you need to quickly convert it to an invoice. This workflow helps you:
- Automatically convert quote to invoice
- Maintain numbering and amount consistency
- Add invoice legal mentions
- Archive correctly
⚠️ Important: Always verify that the accepted quote matches exactly the invoiced services.
Prerequisites
Section titled “Prerequisites”- Cowork enabled in Claude Desktop
- Accepted quote (PDF or Word)
- Next invoice number
- Client approval (email, signature, or confirmation)
- Workspace folder created
Step-by-Step Instructions
Section titled “Step-by-Step Instructions”Step 1: Prepare source quote
Section titled “Step 1: Prepare source quote”mkdir -p ~/Cowork-Workspace/{input,output/invoices}
# Copy accepted quotecp ~/Documents/Quotes/Q2026-042.pdf ~/Cowork-Workspace/input/Step 2: Convert to invoice
Section titled “Step 2: Convert to invoice”Convert quote ~/Cowork-Workspace/input/Q2026-042.pdf to invoice
TRANSFORMATIONS:1. Replace "QUOTE" with "INVOICE"2. Replace quote number Q2026-042 with INV-2026-0853. Replace quote date with invoice date: January 20, 20264. Add due date: February 19, 2026 (30 days)
KEEP IDENTICAL:- Client details- Services and quantities- Unit prices and totals (subtotal, tax, total)- Terms and conditions (if present)
ADD:- Note "Quote Q2026-042 dated [quote date] accepted on [acceptance date]"- Payment terms: Net 30 days- Late payment penalties: [applicable rate]- Payment method: [Wire transfer / Check / Other]- Bank details (IBAN/account number)
REMOVE (if present):- "Quote is non-binding" mention- Quote validity period (no longer relevant on invoice)
Format: PDFSave to: ~/Cowork-Workspace/output/invoices/INV-2026-085.pdfStep 3: Verify consistency
Section titled “Step 3: Verify consistency”Cowork will show the plan. Verify:
- ✓ Identical quote/invoice amounts
- ✓ Correct and unique numbering
- ✓ Coherent dates (invoice ≥ quote)
- ✓ All legal mentions present
If changes from quote:
WARNING: Client requested modification after quote
Original quote Q2026-042:- Service A: $500
Client requests:- Service A: $600 (premium option added)
Invoice INV-2026-085:- Service A premium: $600- Add note: "Modification agreed with client on [date]"Step 4: Generate and archive
Section titled “Step 4: Generate and archive”Proceed with conversionVerify and archive:
# Open generated invoiceopen ~/Cowork-Workspace/output/invoices/INV-2026-085.pdf
# Create quote ↔ invoice link for traceabilityecho "Quote Q2026-042 → Invoice INV-2026-085 on 01/20/2026" >> ~/Cowork-Workspace/output/correspondences.txtStep 5: Follow-up (optional)
Section titled “Step 5: Follow-up (optional)”Create due date reminder:
From invoice INV-2026-085 (due 02/19/2026):
Create payment reminder:- Alert date: 02/12/2026 (7 days before due)- Action: Check if payment received- If not: Courteous reminder
Format: Line in ~/Cowork-Workspace/output/payment-reminders.csvColumns: Invoice | Client | Amount | Due Date | Reminder | StatusExample Prompts
Section titled “Example Prompts”Simple conversion
Section titled “Simple conversion”Quote Q2026-038 accepted → Invoice INV-2026-074
Quote: ~/Cowork-Workspace/input/Q2026-038.pdfInvoice date: 01/20/2026Due date: +30 days (02/19/2026)No changes to services
Add:- Note "Quote Q2026-038 dated 01/12/2026 accepted on 01/18/2026"- Bank details: IBAN... SWIFT...- Payment via wire transfer
Save to: ~/Cowork-Workspace/output/invoices/INV-2026-074.pdfConversion with deposit
Section titled “Conversion with deposit”Quote Q2026-051 Total: $5,000
Client pays 30% deposit = $1,500
Generate 2 invoices:
INVOICE 1 (deposit):- Number: INV-2026-089- Date: 01/20/2026- Amount: $1,500- Note: "30% deposit - Quote Q2026-051"- Due: Immediate (payment on order)
INVOICE 2 (balance - issue later):- Number: INV-2026-XXX (TBD)- Amount: $3,500- Note: "Balance - Quote Q2026-051 - Deposit INV-2026-089 deducted"- Due: After delivery/completion
For now, generate only INV-2026-089 (deposit)Save to: ~/Cowork-Workspace/output/invoices/INV-2026-089-deposit.pdfBatch conversion
Section titled “Batch conversion”Batch convert 5 accepted quotes in ~/Cowork-Workspace/input/accepted-quotes/
For each quote:1. Read quote number Q2026-XXX2. Generate invoice INV-2026-YYY (sequential numbering from INV-2026-090)3. Invoice date: 01/20/20264. Due date: +30 days5. Add standard mentions
Also create summary Excel file:- Columns: Quote | Invoice | Client | Amount | Date | Due Date- Save to: ~/Cowork-Workspace/output/conversions-january-2026.xlsxTroubleshooting
Section titled “Troubleshooting”Incomplete or modified quote
Section titled “Incomplete or modified quote”Cause: Negotiation after quote Solution: Document changes:
Quote Q2026-042 was modified after acceptance:
ORIGINAL QUOTE:- Service A: $1,000- Service B: $500Total: $1,500
CLIENT AGREEMENT (email 01/18):- Service A removed- Service B: $500- Service C added: $700Total: $1,200
INVOICE INV-2026-085:Use final agreement ($1,200)Add note: "Price per email agreement 01/18/2026"Attach copy of acceptance emailNumbering gap
Section titled “Numbering gap”Cause: Forgotten invoice or duplicate Solution: Verify register:
List all invoices in ~/Cowork-Workspace/output/invoices/Sort by chronological numberIdentify last number used: INV-2026-084Next number: INV-2026-085
If gap in numbering (ex: INV-2026-082 missing):→ Investigate: invoice cancelled? forgotten?→ Never reuse cancelled number (create INV-2026-085A if needed)Best Practices
Section titled “Best Practices”- Keep quotes — Archive quote AND invoice together (traceability)
- Formal acceptance — Always have proof of acceptance (email, signature)
- Reasonable delay — Issue invoice max 1 month after quote acceptance
- Amount consistency — If modified, document and inform client
- Unique numbering — Never 2 invoices with same number
- Double verification — Review before sending (invoice error = credit note + new invoice)
- Clear due date — Always mention payment deadline
- Prompt sending — Send invoice within 48h of acceptance (professionalism)