Question
Could you please let know can we add invoice number on verification station in Batch Type tab.
Answer
The batch name could be changed using a Processing script.
It can be added when creating an Automatic batch processing stage in the Advanced mode of the Workflow setup:
The following script should be used to replace the name of the Batch with the Invoice Number:
using System;
using System.IO;
Batch.Name = Documents[0].Field("Invoice Layout\\InvoiceNumber").Text;
Comments
0 comments
Please sign in to leave a comment.