From ddc71762739f8160c23e3bbd07056f3a2a6c75b8 Mon Sep 17 00:00:00 2001 From: jkortleven-clearit Date: Sat, 1 Aug 2026 15:34:59 +0200 Subject: [PATCH] Add invoice options for Amount Due, Paid Date, and Payment status Added new options for invoice details including Amount Due, Paid Date, and Payment status. --- .../actions/invoices/update/description.ts | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/nodes/HaloPSA/actions/invoices/update/description.ts b/nodes/HaloPSA/actions/invoices/update/description.ts index 2469d38..b8d1f46 100644 --- a/nodes/HaloPSA/actions/invoices/update/description.ts +++ b/nodes/HaloPSA/actions/invoices/update/description.ts @@ -28,6 +28,13 @@ export const updateDescription: INodeProperties[] = [ }, }, options: [ + { + displayName: 'Amount Due', + name: 'amountdue', + type: 'number', + default: 0, + description: 'The amount due for the invoice', + }, { displayName: 'Client ID', name: 'client_id', @@ -55,6 +62,13 @@ export const updateDescription: INodeProperties[] = [ default: '', description: 'Additional notes for the invoice', }, + { + displayName: 'Paid Date', + name: 'datepaid', + type: 'dateTime', + default: '', + description: 'The date the invoice was paid', + }, { displayName: 'Posted', name: 'posted', @@ -76,6 +90,13 @@ export const updateDescription: INodeProperties[] = [ default: '', description: 'Invoice payment reference', }, + { + displayName: 'Payment status', + name: 'paymentstatus', + type: 'number', + default: 0, + description: 'Invoice payment status', + }, { displayName: 'Site Number', name: 'sitenumber',