Customization Description
This topic describes the changes that will be implemented as part of the customization for the Smart Fix company.
Custom Workflow for the Repair Work Orders Form
A review of the company's business processes has illustrated that the workflow for both services (one of which requires prepayment and one of which does not) can be united into a single workflow, which is shown in the following diagram. In the activities of this guide, you will implement this workflow for the Repair Work Orders (RS301000) form.
In the workflow, you will implement the following items:
- The following states of the workflow, which correspond to the noted statuses of a repair
work order:
WorkOrderStatusConstants.OnHold
(On Hold)WorkOrderStatusConstants.PendingPayment
(Pending Payment)WorkOrderStatusConstants.ReadyForAssignment
(Ready for Assignment)WorkOrderStatusConstants.Assigned
(Assigned)WorkOrderStatusConstants.Completed
(Completed)WorkOrderStatusConstants.Paid
(Paid)
- The following actions, which trigger the transitions of a repair work order and correspond
to the noted command and button on the UI:
ReleaseFromHold
(Remove Hold), which triggers a transition from theOnHold
state to thePendingPayment
orReadyForAssignment
stateAssign
(Assign), which triggers a transition from theReadyForAssignment
state to theAssigned
stateComplete
(Complete), which triggers a transition from theAssigned
state to theCompleted
status
You will also define the
CreateInvoice
action, which generates an invoice for the repair work order. - The transitions between states of a repair work order
- A dialog box that is shown when a user clicks the
Assign
action - The following event handlers, which trigger transitions for a repair work order:
OnInvoiceGotPrepaid
, which triggers a transition from thePendingPayment
state to theReadyForAssignment
stateOnCloseDocument
, which triggers a transition from theCompleted
state to thePaid
state
- The conditions that determine which state a record created on the form should transition to
from the
OnHold
state
You will also customize an existing MYOB Acumatica graph to implement a transition in your custom workflow.
The resulting Repair Work Orders form will appear as shown in the following screenshot.
Customized Workflow for the Invoices Form
To continue working on a repair work order after an invoice has been prepaid, a user needs an action that opens the corresponding repair work order from the Invoices (SO303000) form. Accordingly, you need to customize the predefined workflow of that form. The command corresponding to the action should be named View Repair Work Order and should be displayed on the More menu under the Repair Work Orders category, as shown in the following screenshot.
To implement this task, you will extend the graph to define the action and customize the predefined workflow of the Invoices form. In the customized workflow, you will do the following:
- Define the workflow action
- Define the action category
- Add the action to the workflow state