We have introduced the new ADvendio Invoice item-related list on the Invoice object. It is a Lightning web componentThis view can be a very useful tool for the end user to see invoice items that are not technical reversals as well as use it for invoice or invoice item cancelation.
Users should be able to set Table fields using the feature settings, like in the Campaign item-related list
...
The checkboxes has been disabled for canceled and cancellation items, so users can't select them in the list
Info |
---|
|
The filter Don't show the canceled item
has been added to the related list - this will hide Invoice items that are cancelation or are canceled
Users should be able to add more filters through the feature setting (just like Campaign Item-related list feature settings)
The Cancel Invoice items button has also been added
Here is the demo of enhancement
After the billing run record has been created and invoice records are generated
...
Open an Invoice record, click on Cancel button:
...
When the pop up displays, click on Select Invoice Items button:
...
You will see the new Full Invoice Item Related List displayed:
...
Click on the name of the Invoice record:
...
You will see the detail page of that invoice record
...
Open Related tab, you will see the Select Invoice Items related list with maximum 6 records in the table:
...
Select some records in the table, then click on View All button:
...
You will see the Full page Related list with the selected item in the table:
...
Hover the mouse over the table header, You will see that the sort icon would be displayed:
...
Click on the table header, for example, Name header, you sill see the records are sorted by the name, and the sort icon was changed related to the sorting:
...
After selecting some items, click on Cancel Invoice Items button:
...
Click on Cancel Invoice Items button , you will notice after the process was completed, a Success pop up displayed and the page was routed to the related PreInvoice record:
...
Open above Invoice record again, you will see the invoice items that were canceled have “Canceled” status and the checkbox of those items were disabled:
...
Click on Don’t Show Canceled Items button, you will see the button color has changed and the data table only displays the active invoice items:
...
Click on the Don’t Show Canceled Items button again, you will see that the color of the button has changed, and the canceled items were displayed again:
...
Open the Invoice Item related list in the Invoice record, you will see that there are some dummy character in the filter button (I added them for this scenario):
...
Go to Feature Settings tab, open All view:
...
Search for “InvoiceItemRelatedList”, You will see that there are 3 feature setting records for Invoice Item Related List:
...
Open FilterButtons record:
...
Change the label of the filter:
...
Open the Invoice Item related list in the Invoice record, refresh the page several times (because LWC keeps the caching memory, so that in some cases, we need to do the refreshing several time to clear the caching memory, or we can use Clear Caching Memory feature of the browser directly), You will see that the new label :
...
In the feature settings, open TableFields record of InvoiceItemRelatedList, change the list of field in that record, then open the Invoice Item Related List In the Invoice Record, refresh the page several time to get the latest information from feature setting, You will see that the updated field list in the table.
...
after updated:
...
.
The following feature settings can be set up:
Feature Setting Name | TableFields | |
Feature Name | InvoiceItemRelatedList | |
{"TableFields" : ["Name","ADvendio__Invoice__c","ADvendio__Status__c","ADvendio__InvoicedAmountNet3__c","ADvendio__InvoicedAmountNet3Delta__c","ADvendio__InvoiceItemStartDate__c","ADvendio__InvoiceItemEndDate__c","ADvendio__InvoicedQuantity__c","ADvendio__ConnectedItem__c"]} |
Feature Setting Name | FilterButtons | |
Feature Name | InvoiceItemRelatedList | |
{ "Buttons":[ { "title":"Hide Cancelled Item", "label":"Hide Cancelled Item", "filter":"ADvendio__Invoice__r.ADvendio__Status__c != 'Canceled' AND ADvendio__Status__c != 'Canceled'", "isActive":false }, { "title":"Hide Technical Reversal", "label":"Hide Technical Reversal", "filter":"ConnectedItem__c = null", "isActive":true }] } |