BaseCloud Accounting¶
Overview¶
The BaseCloud Accounting task provides integrated accounting functionality within your BaseCloud CRM system. It handles quotes, invoices, PDF generation, payment links, and automated payment tracking—all without requiring external accounting software.
Key Features:
- 4 Actions: Create quotes/invoices, fetch documents, mark as paid
- Invoice Layout System: Customizable HTML templates with placeholder support
- PDF Generation: Automatic document generation with S3 storage
- Payment Links: Integrated payment portal at
pay.basecloudglobal.com - Global Triggers: Fire CRM automations on invoice events
- Tracking Categories: Two-level project/department tracking
- Multi-Currency: Support for multiple currency symbols and formats
Use Cases:
- Automated invoicing workflows triggered by CRM events
- Quote-to-invoice conversion on client approval
- Subscription billing with recurring invoice generation
- Project-based invoicing with tracking categories
- Payment link distribution via email
Prerequisites¶
1. Invoice Layout Configuration¶
Before creating invoices, configure an invoice layout:
- Navigate to Settings → Invoice Layouts in BaseCloud CRM
- Create or edit a layout with HTML template
- Use placeholders like
{{invoice_number}},{{client_name}},{{total_incl}}, etc. - Note the Layout ID (invoice_var_id) for task configuration
2. Client Records¶
- Clients must exist in your CRM with valid
client_id - Client details (name, email, address) populate invoice placeholders
3. Tracking Categories (Optional)¶
- Configure tracking categories for project/department tracking
- Navigate to Settings → Tracking Categories
- Create category values (e.g., Department: Sales, Marketing, Support)
Configuration¶
Action 1: fetch_quote_invoice¶
Retrieve an existing quote or invoice with all details, generate PDF if needed, and create payment link.
| Field | Required | Description | Example |
|---|---|---|---|
| accounting_action | Yes | Must be "fetch_quote_invoice" | fetch_quote_invoice |
| Quote / Invoice ID | Yes | Document ID (formats: "INV123", "QU456", or just "123") | INV-{{client_invoice_number}} |
Output Variables:
task_22001_client_id // Client ID associated with invoice
task_22001_id // Internal invoice database ID
task_22001_invoice_number // Display number (e.g., 123)
task_22001_o_inv_id // Full formatted ID ("INV123" or "QU456")
task_22001_type // "Quote" or "Invoice"
task_22001_status // "Unpaid", "Void", or "Paid"
task_22001_date_paid // Date paid (if status=paid)
task_22001_date_created // Creation date (DD/MM/YYYY HH:mm)
task_22001_date_expiry // Expiry/due date (DD/MM/YYYY HH:mm)
task_22001_subtotal // Subtotal before tax
task_22001_total // Total including tax
task_22001_item_description // Pipe-delimited descriptions
task_22001_item_code // Pipe-delimited item codes
task_22001_item_quantity // Pipe-delimited quantities
task_22001_item_unit_price // Pipe-delimited unit prices
task_22001_item_tax_rate // Pipe-delimited tax rates (%)
task_22001_tracking_1_label // Pipe-delimited TC1 labels
task_22001_tracking_1_value // Pipe-delimited TC1 value IDs
task_22001_tracking_2_label // Pipe-delimited TC2 labels
task_22001_tracking_2_value // Pipe-delimited TC2 value IDs
task_22001_file_name // Slugified filename for PDF
task_22001_document_url // S3 URL to generated PDF
task_22001_payment_link // Payment portal URL
How It Works:
- Extracts numeric ID from input (removes non-digits: "INV123" → 123)
- Retrieves invoice from
invoicestable with all line items - Fetches tracking category labels for each line item
- Generates PDF if not already generated (via Puppeteer + S3 upload)
- Creates 36-character payment token for payment portal link
- Returns complete invoice data with pipe-delimited line items
Action 2: paid_quote_invoice¶
Mark an invoice as paid, optionally convert quote to invoice, and trigger global CRM automation.
| Field | Required | Description | Example |
|---|---|---|---|
| accounting_action | Yes | Must be "paid_quote_invoice" | paid_quote_invoice |
| Quote / Invoice ID | Yes | Document ID to mark as paid | {{automation_invoice_id}} |
| Date Paid | No | Payment date (defaults to today) | {{payment_received_date}} |
Output Variables:
Same as fetch_quote_invoice action (returns full invoice data after update).
How It Works:
- Validates invoice exists and is currently unpaid (status=0)
- If document is a quote (quote_invoice=0), converts to invoice (quote_invoice=1)
- Updates status to paid (status=1)
- Sets
date_paidfield (defaults to today if not provided) - Nullifies
file_urlto force PDF regeneration with "PAID" stamp - Triggers Global CRM Automation: Type 3 trigger with
var_id='invoice_paid' - Returns complete updated invoice data
Error Scenarios:
- "No quote/invoice found": Invalid document ID provided
- "Invoice already marked as paid": Status is not 0 (unpaid)
- "Invalid Date Paid provided": Date string cannot be parsed
Global Trigger:
When an invoice is marked as paid, BaseCloud automatically runs all CRM automations configured with:
- Trigger Type: Quote/Invoice Changes
- Variable:
invoice_paid
This enables automated workflows like:
- Send payment confirmation emails
- Update client status to "Active"
- Trigger fulfillment/provisioning tasks
- Create workflow notes for accounting team
Action 3: create_quote¶
Create a new quote (quote_invoice=0) with line items, tracking categories, and automatic PDF generation.
| Field | Required | Description | Example |
|---|---|---|---|
| accounting_action | Yes | Must be "create_quote" | create_quote |
| Client ID | Yes | Valid client ID from CRM | {{client_id}} |
| Invoice Layout ID | Yes | Template/layout ID from Settings | 5 |
| item_Description | Yes | Pipe-delimited descriptions | Consulting Services\|Design Work\|Development |
| item_Code | Yes | Pipe-delimited item codes | CONSULT\|DESIGN\|DEV |
| item_Quantity | Yes | Pipe-delimited quantities | 10\|5\|20 |
| item_Unit_Cost | Yes | Pipe-delimited unit costs | 150.00\|200.00\|100.00 |
| item_Tax_Rate | Yes | Pipe-delimited tax rates (%) | 15\|15\|15 |
| tracking_category_1 | No | Pipe-delimited TC1 value IDs | 12\|12\|13 |
| tracking_category_2 | No | Pipe-delimited TC2 value IDs | 45\|45\|45 |
Output Variables:
Same as fetch_quote_invoice action (returns full quote data after creation).
How It Works:
- Validates
client_idexists in CRM - Validates
invoice_var_id(layout) exists ininvoice_varstable - Splits pipe-delimited line item arrays (all must be same length)
- Generates next sequential
o_inv_id(e.g., "QU001") - Sets
quote_invoice=0(indicates quote, not invoice) - Sets
expiry_dateto +7 days from today (hardcoded) - Creates invoice record in
invoicestable - Batch inserts line items in
invoice_line_itemstable - Triggers Global CRM Automation: Type 3 trigger with
var_id='invoice_created' - Generates PDF document via Puppeteer (HTML template → PDF → S3)
- Returns complete quote data with PDF URL and payment link
Line Item Calculation:
For each line item:
Subtotal = Quantity × Unit_Cost
Tax_Amount = Subtotal × (Tax_Rate / 100)
Line_Total = Subtotal + Tax_Amount
Invoice totals:
Total_Subtotal = SUM(all line subtotals)
Total_Tax = SUM(all line tax amounts)
Total_Including_Tax = Total_Subtotal + Total_Tax
Action 4: create_invoice¶
Create a new invoice (quote_invoice=1) with line items. Configuration and process identical to create_quote with one difference:
| Field | Value |
|---|---|
| accounting_action | create_invoice |
| quote_invoice | Set to 1 (indicates invoice) |
| o_inv_id | Sequential ID with "INV" prefix (e.g., "INV001") |
All other fields, validation, and output identical to create_quote action.
Special Features¶
Invoice Layout/Template System¶
BaseCloud uses HTML-based invoice templates with placeholder replacement:
Common Placeholders:
| Placeholder | Description | Example Value |
|---|---|---|
{{invoice_number}} | Display invoice number | 123 |
{{o_inv_id}} | Full formatted ID | INV123 or QU456 |
{{client_name}} | Client name | Acme Corporation |
{{client_email}} | Client email | billing@acme.com |
{{client_address}} | Client address | 123 Main St, City |
{{date_created}} | Creation date | 15/01/2024 14:30 |
{{date_expiry}} | Due/expiry date | 22/01/2024 14:30 |
{{subtotal}} | Subtotal before tax | 1000.00 |
{{total_vat}} | Total tax amount | 150.00 |
{{total_incl}} | Total including tax | 1150.00 |
{{currency_symbol}} | Currency symbol | $, R, £ |
{{status}} | Payment status | Unpaid, Paid, Void |
{{payment_link}} | Payment portal URL | Full URL with token |
Line Items Loop:
Templates include special section for line item iteration:
<table>
<tr>
<th>Description</th>
<th>Quantity</th>
<th>Unit Price</th>
<th>Tax Rate</th>
<th>Total</th>
</tr>
{{#line_items}}
<tr>
<td>{{description}}</td>
<td>{{quantity}}</td>
<td>{{currency_symbol}}{{unit_price}}</td>
<td>{{tax_rate}}%</td>
<td>{{currency_symbol}}{{line_total}}</td>
</tr>
{{/line_items}}
</table>
PDF Generation Process¶
- Template Retrieval: Fetches HTML template from
invoice_layoutstable - Placeholder Replacement: Substitutes all
{{...}}placeholders with actual data - Puppeteer Rendering:
- Launches headless Chrome
- Renders HTML to PDF
- Settings: A4 size, print background, margins
- S3 Upload: Uploads PDF to S3 bucket with slugified filename
- URL Storage: Saves S3 URL in
file_urlfield - Special Handling: Detects BaseCloud internal billing (owner_id 10/11) for custom formatting
- Grouped Line Items: Supports grouping by tracking categories (TC1=76, TC2=77)
PDF Filename Format:
Payment Link Generation¶
Payment links enable clients to pay invoices directly via the BaseCloud payment portal:
Link Format:
Token Generation:
- 36-character alphanumeric token
- Stored in
invoicestable inpayment_tokenfield - Unique per invoice, never reused
Payment Portal Features:
- Client-facing payment page (BC_PAYMENT_FE)
- Displays invoice details, line items, totals
- Accepts credit card payments
- Automatically marks invoice as paid on successful payment
- Triggers
invoice_paidglobal automation
Global Trigger System¶
BaseCloud fires CRM automations on invoice events:
Trigger Type: Quote/Invoice Changes
Events:
invoice_created- Fired when quote or invoice createdinvoice_paid- Fired when invoice marked as paidinvoice_edited- Fired when invoice updatedinvoice_deleted- Fired when invoice deleted
Usage Example:
Create automation with:
- Trigger: Quote/Invoice Changes
- Variable:
invoice_paid - Tasks: Send receipt email → Update client status → Create workflow note
When any invoice is marked as paid (via task or payment portal), automation runs automatically.
Tracking Categories¶
Track invoices by project, department, cost center, or custom categories:
Configuration:
- Navigate to Settings → Tracking Categories
- Create categories (e.g., "Department", "Project")
- Add category values (e.g., Department: Sales, Marketing, Support)
- Note value IDs for use in line items
Two-Level Tracking:
- Tracking Category 1: Primary classification (e.g., Department)
- Tracking Category 2: Secondary classification (e.g., Project)
Line Item Assignment:
item_Description: "Consulting Services|Design Work"
tracking_category_1: "12|13" // 12=Sales, 13=Marketing
tracking_category_2: "45|45" // 45=Website Project
Reporting:
Query invoices by tracking categories for departmental/project revenue reports.
Number Management¶
Sequential Generation:
- Quotes and invoices share same sequence per owner
- Function: Get current max
invoice_number+ 1 - Format: Numeric (e.g., 1, 2, 3, ..., 123)
Full ID Format:
- Quotes:
QU{invoice_number}(e.g., QU001) - Invoices:
INV{invoice_number}(e.g., INV001)
Sequence Reset:
Contact BaseCloud support to reset invoice numbering sequence.
Real-World Examples¶
Example 1: Automated Service Invoicing¶
Scenario: Automatically create and send invoices when a service is marked complete in CRM.
Workflow:
- Trigger: CRM Trigger - Service Status Changed
-
Condition:
{{service_status}}equals "Complete" -
Task: BaseCloud Accounting - Create Invoice
-
Task: Variable - Store Invoice Details
-
Task: Email - Send Invoice to Client
-
Task: Workflow Note - Log Invoice Sent
Result: Invoices automatically generated and emailed when services complete, with payment links for easy client payment.
Example 2: Quote-to-Invoice Conversion¶
Scenario: Create quote for prospect, convert to invoice on approval, trigger fulfillment.
Workflow Part 1: Create Quote
-
Trigger: Manual Button - Generate Quote
-
Task: BaseCloud Accounting - Create Quote
accounting_action: create_quote Client ID: {{client_id}} Invoice Layout ID: 3 item_Description: {{quote_item_description}}|{{quote_item_description_2}} item_Code: {{quote_item_code}}|{{quote_item_code_2}} item_Quantity: {{quote_quantity}}|{{quote_quantity_2}} item_Unit_Cost: {{quote_unit_price}}|{{quote_unit_price_2}} item_Tax_Rate: 15|15 -
Task: Variable - Store Quote ID
-
Task: Email - Send Quote
Workflow Part 2: Quote Approval (Separate Automation)
-
Trigger: Manual Button - Quote Approved
-
Task: BaseCloud Accounting - Mark as Paid (converts to invoice)
-
Global Trigger Fires:
invoice_paidautomation runs -
Task (in Global Automation): Edit Client
-
Task (in Global Automation): Webhook Out - Trigger Fulfillment System
-
Task (in Global Automation): Email - Send Order Confirmation
Result: Quotes seamlessly convert to invoices on approval, automatically triggering fulfillment and client communication workflows.
Example 3: Subscription Billing with Retry Logic¶
Scenario: Monthly recurring invoices for SaaS subscriptions with automated payment retry on failure.
Workflow Part 1: Monthly Billing
-
Trigger: Timer Trigger - Monthly (1st of month at 09:00)
-
Task: MySQL Query - Get Active Subscriptions
-
Task: Loop - Iterate Subscribers
-
Task (Inside Loop): BaseCloud Accounting - Create Invoice
accounting_action: create_invoice Client ID: {{loop_item_client_id}} Invoice Layout ID: 7 item_Description: {{loop_item_subscription_item_description}} item_Code: {{loop_item_subscription_item_code}} item_Quantity: 1 item_Unit_Cost: {{loop_item_subscription_price}} item_Tax_Rate: 15 tracking_category_1: 25 // Subscription revenue -
Task (Inside Loop): If Condition - Check Invoice Created
-
Task (Inside If - Success): Email - Send Invoice
-
Task (Inside If - Success): MySQL - Update Next Billing Date
-
Task (Inside If - Fail): Email - Alert Accounting Team
Workflow Part 2: Payment Reminder (Separate Automation)
-
Trigger: Timer Trigger - Daily (10:00)
-
Task: MySQL Query - Get Unpaid Invoices (>7 days old)
-
Task: Loop - Send Reminders
-
Task (Inside Loop): Email - Payment Reminder
To: {{loop_item_email}} Subject: Payment Reminder - Invoice {{loop_item_o_inv_id}} Body: Hi {{loop_item_first_name}}, This is a friendly reminder that invoice {{loop_item_o_inv_id}} for ${{loop_item_total}} is still outstanding. Pay online: https://pay.basecloudglobal.com/{{loop_item_payment_token}}
Result: Fully automated subscription billing with monthly invoice generation and proactive payment reminders for overdue invoices.
Example 4: Project-Based Invoicing with Tracking¶
Scenario: Time tracking integration - create invoices with departmental and project tracking for accurate reporting.
Workflow:
-
Trigger: Manual Button - Generate Project Invoice
-
Task: MySQL Query - Get Billable Time Entries
-
Task: Formatter - Prepare Line Items
Format: Pipe-delimited arrays item_Description: Join descriptions with | item_Code: "CONSULTING|CONSULTING|..." item_Quantity: Join total_hours with | item_Unit_Cost: Join hourly_rate with | item_Tax_Rate: "15|15|..." tracking_category_1: Join department_id with | tracking_category_2: Join project_id with | -
Task: BaseCloud Accounting - Create Invoice
accounting_action: create_invoice Client ID: {{client_id}} Invoice Layout ID: 6 item_Description: {{formatted_descriptions}} item_Code: {{formatted_codes}} item_Quantity: {{formatted_hours}} item_Unit_Cost: {{formatted_rates}} item_Tax_Rate: {{formatted_tax}} tracking_category_1: {{formatted_departments}} tracking_category_2: {{formatted_projects}} -
Task: MySQL - Mark Time Entries as Invoiced
-
Task: Email - Send Invoice
To: {{client_email}} Subject: Invoice {{task_22001_o_inv_id}} - Project {{project_name}} Body: Please find attached invoice for consulting services rendered during the billing period. Total Hours: {{total_billable_hours}} Amount Due: ${{task_22001_total}} Pay online: {{task_22001_payment_link}} Attachment: {{task_22001_document_url}} -
Task: Workflow Note - Log Invoice
Reporting (Separate Automation):
-
Trigger: Timer Trigger - Monthly (Last day at 23:00)
-
Task: MySQL Query - Department Revenue by Tracking
SELECT tc1.label as department, SUM(il.total_incl) as revenue FROM invoice_line_items il JOIN tracking_categories_values tc1 ON il.tracking_category_1 = tc1.id JOIN invoices i ON il.invoice_id = i.id WHERE i.status = 1 -- Paid AND MONTH(i.date_paid) = MONTH(CURDATE()) AND YEAR(i.date_paid) = YEAR(CURDATE()) GROUP BY tc1.label ORDER BY revenue DESC -
Task: Email - Monthly Department Report
Result: Time entries automatically converted to invoices with dual tracking (department + project), enabling granular financial reporting and project profitability analysis.
Example 5: Multi-Invoice Payment Portal Link¶
Scenario: Send clients a single payment link for multiple outstanding invoices.
Workflow:
-
Trigger: Manual Button - Send Payment Reminder
-
Task: MySQL Query - Get Unpaid Invoices for Client
-
Task: Loop - Fetch Each Invoice Details
-
Task (Inside Loop): BaseCloud Accounting - Fetch Invoice
-
Task (Inside Loop): Variable - Collect Payment Links
-
Task: Formatter - Format Invoice List
-
Task: Email - Send Consolidated Statement
-
Task: Workflow Note - Log Reminder Sent
Result: Clients receive organized statement with individual payment links for each outstanding invoice, improving payment collection rates.
Troubleshooting¶
Error: "No quote/invoice found"¶
Cause: Invalid document ID provided to fetch_quote_invoice or paid_quote_invoice
Solutions:
-
Verify invoice ID exists in database:
-
Check format - accepts "INV123", "QU456", or numeric "123"
-
Ensure invoice belongs to correct owner (multi-tenant system)
-
Use
{{task_22001_o_inv_id}}from create action for subsequent fetches
Error: "Invoice already marked as paid"¶
Cause: Attempting to mark invoice as paid when status is not 0 (unpaid)
Solutions:
-
Check current invoice status:
-
Only mark unpaid invoices (status "Unpaid")
-
Voided invoices (status=2) cannot be marked as paid
-
Add conditional check before marking paid:
Error: "Invalid Date Paid provided"¶
Cause: Date string cannot be parsed by JavaScript Date constructor
Solutions:
- Use standard date formats:
DD/MM/YYYY HH:mm✓YYYY-MM-DD✓-
MM/DD/YYYY✓ -
Leave blank to default to today's date
-
Use Date Formatter task to standardize date format
-
Validate date before passing:
Error: "Client ID not found"¶
Cause: client_id does not exist in clients table
Solutions:
-
Verify client exists in CRM
-
Use valid
{{client_id}}from trigger or previous task -
Create client first with New Client task if needed
-
Check for typos in client ID variable reference
Error: "Invoice Layout ID not found"¶
Cause: invoice_var_id does not exist in invoice_vars table
Solutions:
-
Navigate to Settings → Invoice Layouts in CRM
-
Verify layout exists and note correct ID
-
Ensure layout belongs to current owner (multi-tenant)
-
Use default layout ID if unsure (check with admin)
Error: "Line items length mismatch"¶
Cause: Pipe-delimited arrays have different lengths
Solutions:
-
Count pipe delimiters in each field - must match:
-
Use Formatter task to ensure consistent array lengths
-
Validate data source before creating invoice
-
Use Loop task with individual line item creation if arrays are dynamic
PDF Generation Failed¶
Cause: Puppeteer/Chrome error during PDF rendering
Solutions:
-
Check invoice layout HTML is valid (no unclosed tags)
-
Ensure all placeholders in template have values
-
Verify S3 credentials configured correctly (server-side)
-
Check server has sufficient memory for Puppeteer
-
Retry: Call
fetch_quote_invoiceagain - regenerates PDF -
Contact BaseCloud support for persistent PDF failures
Payment Link Not Working¶
Cause: Payment token not generated or payment portal misconfigured
Solutions:
-
Verify
{{task_22001_payment_link}}is not empty -
Check payment portal is accessible: https://pay.basecloudglobal.com
-
Ensure invoice belongs to owner with payment portal enabled
-
Regenerate link by calling
fetch_quote_invoiceagain -
Use payment portal directly with token:
Tracking Category Values Not Showing¶
Cause: Invalid tracking category value IDs provided
Solutions:
-
Verify value IDs exist in
tracking_categories_valuestable: -
Use correct numeric IDs (not labels)
-
Leave blank if no tracking needed (not "null" string)
-
Ensure tracking categories belong to correct owner
Global Trigger Not Firing¶
Cause: No automations configured for invoice_created or invoice_paid event
Solutions:
-
Create automation with Trigger Type: Quote/Invoice Changes
-
Select Variable:
invoice_paidorinvoice_created -
Ensure automation is Active (not disabled)
-
Check trigger conditions (if any) are met
-
Verify automation owner matches invoice owner
-
Test by manually marking invoice as paid
Best Practices¶
Invoice Layout Design¶
-
Test Templates: Create test invoice first to preview PDF output
-
Responsive Design: Use tables and fixed widths for consistent PDF rendering
-
Placeholder Validation: Ensure all placeholders have fallback values in template
-
Branding: Include company logo, colors, and contact information
-
Legal Requirements: Include tax registration numbers, terms, and payment instructions
Line Item Management¶
-
Consistent Arrays: Always ensure all pipe-delimited fields have same number of items
-
Item Codes: Use meaningful codes for reporting (e.g., "CONSULT", "DEV", "DESIGN")
-
Descriptions: Be specific - helps clients understand charges
-
Tax Rates: Verify correct tax rates per jurisdiction/product type
-
Tracking: Assign tracking categories for financial reporting
Payment Collection¶
-
Always Include Payment Links: Even if not primary payment method
-
Email Timing: Send invoices during business hours for better engagement
-
Payment Terms: Clearly state due dates and late payment policies
-
Reminders: Set up automated reminders at 7, 14, and 30 days
-
Multiple Channels: Send via email, SMS, and portal notifications
Automation Strategy¶
-
Global Triggers: Leverage
invoice_paidandinvoice_createdfor centralized workflows -
Error Handling: Use If Conditions to handle invoice creation failures gracefully
-
Logging: Always create workflow notes for invoice events (audit trail)
-
Testing: Test automations with quotes first (less impact than invoices)
-
Reconciliation: Regularly compare CRM invoices with accounting records
Security & Compliance¶
-
Access Control: Limit invoice creation to authorized users/automations
-
Data Privacy: Don't include sensitive client data in email bodies (use PDFs)
-
Audit Trail: Use workflow notes to log all invoice actions
-
Backup: Regular database backups include invoice data
-
Tax Compliance: Ensure invoice layouts meet local tax authority requirements
FAQ¶
Q: Can I edit an invoice after it's created?
A: Not directly via task. Invoices are edit-protected once created. Options:
- Void and create new invoice
- Manually edit via database (not recommended)
- Contact BaseCloud support for invoice edits
Q: What's the difference between quotes and invoices?
A:
- Quotes (quote_invoice=0): Pre-sale documents, prefixed "QU", can be converted to invoices
- Invoices (quote_invoice=1): Post-sale documents, prefixed "INV", used for payment collection
Both use same database table and share invoice numbering sequence.
Q: Can I delete or void invoices?
A: Yes, but not via task action:
- Set
status=2in database to void - Triggers
invoice_deletedglobal automation - Voided invoices still appear in reports (not deleted)
Q: How do I handle refunds or credit notes?
A: BaseCloud Accounting task doesn't support credit notes. Options:
- Create negative amount invoice (workaround)
- Handle refunds via payment processor directly
- Request credit note feature from BaseCloud support
Q: Can I use custom invoice numbering?
A: Partially:
invoice_numberfield is auto-generated sequentialo_inv_idis formatted as "INV{number}" or "QU{number}"- Custom numbering requires database changes (contact support)
Q: What currencies are supported?
A: All currencies supported via currency_symbol in invoice layout:
- Set per invoice layout in Settings
- Default: $ (USD)
- Examples: R (ZAR), £ (GBP), € (EUR), ¥ (JPY)
Note: BaseCloud Accounting doesn't handle currency conversion - use single currency per owner.
Q: How do I invoice multiple clients at once?
A: Use Loop task:
- MySQL Query: Get list of clients to invoice
- Loop: Iterate through results
- Inside Loop: Create Invoice task per client
See Example 3 (Subscription Billing) for complete implementation.
Q: Can I send invoices to multiple recipients?
A: Yes:
- Use Email task with comma-separated addresses
- Or use Loop to send individual emails per recipient
- Payment portal link works for any recipient
Q: What happens if PDF generation fails?
A: Invoice is still created, but file_url is NULL:
- Call
fetch_quote_invoiceto retry PDF generation - Check invoice layout HTML for errors
- Contact support if persistent failures
Q: How do I integrate with external payment gateways?
A:
- Use global trigger on
invoice_paidevent - Trigger Stripe/Paystack/PayPal webhook task
- Or include payment link in invoice emails
- Payment portal supports credit card processing
Q: Can I schedule invoice generation?
A: Yes, use Timer Trigger:
- Set schedule (e.g., monthly on 1st at 09:00)
- Add Create Invoice task
- See Example 3 (Subscription Billing)
Q: How do I query invoices for reporting?
A: Use MySQL Query task:
-- Total revenue this month
SELECT SUM(total) as monthly_revenue
FROM invoices
WHERE status = 1 -- Paid
AND MONTH(date_paid) = MONTH(CURDATE())
AND owner_id = {current_owner}
-- Unpaid invoices by client
SELECT c.first_name, c.last_name, i.o_inv_id, i.total
FROM invoices i
JOIN clients c ON i.client_id = c.client_id
WHERE i.status = 0 -- Unpaid
AND i.quote_invoice = 1 -- Invoice
ORDER BY i.date_created DESC
Q: What's the maximum number of line items per invoice?
A: No hard limit, but practical limits:
- Database limit: 100+ line items supported
- PDF rendering: Very long invoices may have formatting issues
- Recommendation: Group similar items for better readability
Q: How do I add discounts to invoices?
A: BaseCloud Accounting doesn't have dedicated discount field. Workarounds:
- Discount Line Item: Add negative amount line item
- Pre-calculate: Subtract discount from unit cost
- Use Tracking: Mark discount items with specific tracking category
Q: Can I customize email templates for invoice emails?
A: Yes:
- Email task allows full HTML customization
- Use placeholders from
task_22001_*variables - Include PDF attachment:
{{task_22001_document_url}} - Include payment link:
{{task_22001_payment_link}}
Q: How do I handle partial payments?
A: BaseCloud Accounting is binary (paid/unpaid). For partial payments:
- Create workflow note with partial amount
- Use custom client field to track balance
- Mark fully paid only when complete
- Or split invoice into multiple invoices per payment
Q: What happens when invoice is paid via payment portal?
A:
- Client pays via
https://pay.basecloudglobal.com/{token} - Payment processed by integrated gateway
- Invoice status updated to paid (status=1)
date_paidset to today- Global trigger fires
invoice_paidautomation - Client receives payment confirmation email
Q: Can I use BaseCloud Accounting with external accounting software?
A: Yes, common integrations:
- Export: Use MySQL Query to export invoice data
- Xero/Sage: Create invoices in BaseCloud, sync to external system via API
- QuickBooks: Export CSV and import
- Custom Integration: Use global triggers + Webhook Out tasks
Q: How do I archive old invoices?
A: Invoices never deleted, only voided:
- Query by date range to show recent invoices
- Void old invoices: Set
status=2 - Use tracking categories to mark archived periods
- Database retains all historical invoice data
Related Tasks¶
- Email - Send invoice PDFs and payment reminders
- Webhook Out - Integrate with external accounting systems
- MySQL - Query invoice data for reporting
- Loop - Bulk invoice creation
- If Statement - Handle invoice creation success/failure
- Workflow Note - Log invoice events
- Timer Trigger - Schedule recurring invoicing
- CRM Trigger - Quote/Invoice Changes trigger
Technical Details¶
- Type ID: 22
- Function:
taskBaseCloudAccounting()in automationService.js (lines 5029-5650) - Database Tables:
invoices,invoice_line_items,invoice_vars,invoice_layouts,tracking_categories_values - External Services: AWS S3 (PDF storage), Puppeteer (PDF generation)
- Output Prefix:
task_22001_* - Global Triggers: Type 3 (Quote/Invoice Changes) with
var_idvalues:invoice_created,invoice_paid,invoice_edited,invoice_deleted