π€ Fields not showing in your document?
When adding merge fields to your Word document, it's important to add an equals sign in front of the available references that are listed below.
As an example, referencing the project name in a Word document as "project_name" will not work, you must refer to it as "=project_name".
Available To All Dynamic Documents
Project Information
project_name
- Name of the projectproject_number
- Project reference numbertotal_budget
- Total project budget with currency formattingstart_date
- Project start date (DD Month YYYY format)end_date
- Project end date (DD Month YYYY format)
Company Details
company_name
- Company namecompany_trading_name
- Company trading namecompany_legal_name
- Company legal namecompany_*
- Any custom company fields (replace * with field name in snake_case)
Project Custom Fields
Any custom project fields will be available using their label in snake_case
Project Roles
Each project role is available using its name in snake_case
For single-user roles: access
first_name
andlast_name
For multi-user roles: iterate through the array of users with
first_name
andlast_name
System Information
date
- Current date (DD Month YYYY format)user_name
- Current user's full nameuser_email
- Current user's email address
For Progress Claims
Progress Claim Details
name
- Progress claim namedescription
- Progress claim descriptionstart_date
- Claim period start dateend_date
- Claim period end dateissued_date
- Date the claim was issuedapproved_date
- Date the claim was approvedstatus
- Current claim statusapproved_by
- Name of the person who approved the claim
Financial Totals
approved_total
- Total approved amount including taxapproved_total_excluding_tax
- Total approved amount excluding taxrequested_total
- Total requested amount including taxrequested_total_excluding_tax
- Total requested amount excluding taxpreviously_claimed_total
- Total amount previously claimedapproved_budget
- Approved budget amount
Claim Items
Use these fields within a claim_items
loop:
description
- Item descriptionproject_procedure
- Associated procedure nameapproved_amount
- Approved amount with taxapproved_amount_excluding_tax
- Approved amount without taxrequested_amount
- Requested amount with taxrequested_amount_excluding_tax
- Requested amount without taxclaim_percentage
- Percentage claimedtotal_budget_excluding_tax
- Budget for this itemcosts_in_period
- Costs incurred during the claim period
π΅βπ« Looping through lists in your Word document
A progress claim in Drum potentially has many claim items associated with it.
This means you have to "loop" through each claim item to display it within your Word document (e.g. in a table or list).
In the case of claim items, your document will look something like:
<< claim_items:each(item) >>
<< =item.name >> - << =item.approved_amount_excluding_tax >>
<< claim_items:endEach >>
Each of the dynamic fields above are a "Merge Field" in Word, so the above cannot be copy and pasted directly to a Word document, you have to manually insert merge fields as required.
Remember to reference the video at the top of this article for additional detail!
For Invoices
Invoice-Specific Fields
invoice_number
- Unique invoice identifierinvoice_date
- Date invoice was issued (DD Month YYYY format)due_date
- Invoice payment due date (DD Month YYYY format)description
- Invoice descriptionreference
- Invoice reference numbertotal
- Total invoice amount including taxtotal_excluding_tax
- Total invoice amount excluding taxamount_paid
- Amount already paidstatus
- Current invoice statuscurrency_code
- Invoice currencysent_to
- Invoice recipient
Line Items
Use these fields within a line_items
loop:
name
- Item namedescription
- Item descriptionquantity
example_drum_claim_template.docx- Item quantityprice
- Unit price with currency formattingtotal
- Line item totaltotal_excluding_tax
- Line item total excluding taxtax_amount
- Tax amounttax_rate
- Applied tax rate percentagediscount
- Applied discount with currency formattingposition
- Line item position/order
All monetary values are automatically formatted with currency symbols and decimal places.