Panel | |
---|---|
On This Page:
|
Include Page | ||||
---|---|---|---|---|
|
About this Release
This release represents a major improvement to the ESB and major and mostly minor improvements to the mobile application.
Include Page | ||||
---|---|---|---|---|
|
Mobile Application Release Notes
New Features
NEW Large Form Factor Dynamic Product Filter
The Add Line Items screen within the Work Order process flow has now been enhanced to allow the user to filter the products in the list when the source is catalog.
Setup: These filters are setup via System Category 201 utilizing the System Categories API. A sample JSON payload is as follows:
Code Block | ||||
---|---|---|---|---|
| ||||
{ "SysCatID": "201", "Desc": { "en": "Product Group Identifiers" }, "SubCats": [ { "SysCatID": "Size", "Desc": { "es": "Admin Category", "en": "Admin Category" }, "SysActs": [ { "SysActID": "1001", "IsActive": true, "Desc": { "es": "Small", "en": "Small" } }, { "SysActID": "1002", "IsActive": true, "Desc": { "es": "Medium", "en": "Medium" } }, { "SysActID": "1003", "IsActive": true, "Desc": { "es": "Large", "en": "Large" } } ], "IsActive": true }, { "SysCatID": "Installation", "Desc": { "es": "Admin Category 2", "en": "Admin Category 2" }, "SysActs": [ { "SysActID": "1001", "IsActive": true, "Desc": { "es": "Easy", "en": "Easy" } }, { "SysActID": "1002", "IsActive": true, "Desc": { "es": "Complex", "en": "Complex" } } ], "IsActive": true }, { "SysCatID": "Helpers", "Desc": { "es": "Admin Category 3", "en": "Admin Category 3" }, "SysActs": [ { "SysActID": "1001", "IsActive": true, "Desc": { "es": "One Helper", "en": "One Helper" } }, { "SysActID": "1002", "IsActive": true, "Desc": { "es": "Two Helpers", "en": "Two Helpers" } }, { "SysActID": "1003", "IsActive": true, "Desc": { "es": "Three Helpers", "en": "Three Helpers" } }, { "SysActID": "1004", "IsActive": true, "Desc": { "es": "Four Helpers", "en": "Four Helpers" } } ], "IsActive": true }, { "SysCatID": "Safety", "Desc": { "es": "Admin Category 4", "en": "Admin Category 4" }, "SysActs": [ { "SysActID": "1001", "IsActive": true, "Desc": { "es": "Not Safe", "en": "Not Safe" } }, { "SysActID": "1002", "IsActive": true, "Desc": { "es": "Safe", "en": "Safe" } } ], "IsActive": true } ] } |
Once these filters are setup in the System Categories, they must also be added to the Mobile Application Configuration as well. This can be done by adding the productSearchDefaultFilters collection as follows:
Code Block | ||||
---|---|---|---|---|
| ||||
"productSearchDefaultFilters": [ "Helpers", "Installation", "Size", "Safety" ], |
Product Setup:
Filters utilize the Tags collection within the product. To setup these filters, add the Tags with the [Top Level] | [Second Level] via the Product API as shown here:
Code Block | ||||
---|---|---|---|---|
| ||||
"Tags": [ "Size|1001", "Installation|1001", "Helpers|1001", "Safety|1002" ], |
Info |
---|
Product Filters are currently required to be setup in the System Categories and then specified as default filters in the Mobile Application Configuration. In an upcoming release, we will provide additional functionality to allow the user to utilize filters not specified as default as they see fit. |
Add Line Item Filter (1)
Add Line Item Filter (2)
Mobile Application Changes
ServiceMobility now provides an indicator when retrieving an ordered part's availability from the back office. Status colour Yellow title CHANGED
FlexAttributes of type Barcode Scannable Field now provides validation. Status colour Yellow title CHANGED
ESB Release Notes
Modified the Work Order REST API and Work Order Export API to change the change the Alerts and AlertResponses block from a map to a collection. Status colour Yellow title CHANGED
Issues Resolved
Resolved an issue where appointment searches were displaying in the order they were received from the API. They now appear in chronological order. Status colour Red title FIXED
Resolved an issue where the superseded part would display multiple times in the line items list when two different parts are superseded by the same part. Status colour Red title FIXED
Resolved an issue where two work orders can simultaneously be put onsite via standard use of the mobile application. Note: Two work orders can be marked onsite by marking them onsite via the Work Order REST API or by unearmarking a work order that is onsite in ServiceScheduling and reearmarking a work order after another work order is already onsite within ServiceMobility. Status colour Red title FIXED
Include Page | ||||
---|---|---|---|---|
|