Project overview
In this chapter, you will be designing the performer model of the invoice processing process. Let's understand this process in detail. Here are the following steps that you should perform:
- Program a robot to start the Order Entry CRM web page.
- Program the robot to read transaction items from the queue named HenryFoodMartInvoice in the Orchestrator workflow.
- Program the robot to extract the following relevant fields from the transaction item that is read from the queue:
- Customer Details:
- Customer name
- Customer address
- Customer phone number
- Customer email ID
- Invoice Particulars:
- Invoice date
- Invoice number
- Order Information:
- Item quantity
- Item description
- Item unit price
- Line total amount
- Subtotal amount
- Shipping amount
- Total amount
- Customer Details:
- Program a robot to enter the following details on the Order Entry CRM web page:
- Customer details
- Invoice particulars
- Repeat Steps 2, 3, and 4 for the remaining queue items.
- Program the robot to successfully end the process...