TEST: Difference between revisions
From Calidus HUB
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
Marshalls MLP PDA Styling changes | |||
== Requirements == | |||
= | |||
Changes are to the MLP device styling only. | |||
* No pagination on styling of products list. | |||
* Switch Long Description and Description on products list | |||
* Product Quantity entry to split Packs and Loose to separate lines for actual quantity, plus UOM on second line. Planned quantity to remain the same layout. | |||
For example: | |||
Actual: CCCCC / | |||
UUUUU UOM | |||
Planned: CCCCC / UUUUU | |||
== Solution Overview == | |||
The product list defaults to 10 items per page. The style for MLP devices ('MAR-LAND') will be modified so that this has no pages. | |||
== Functional Description == | |||
=== PDA Style === | |||
The style for MLP devices ('MAR-LAND') will be modified to achieve the changes required. | |||
Pagination will be removed from the products list. | |||
{{DevNotes|This will be achieved by adding the following to the 'MAR-LAND' PDA Style: | |||
"ColDel_lvProductList": { | |||
"intPageSize": 0 | |||
}, | |||
}} | |||
| | |||
| | Long Description will be used instead of Description on the Products list. | ||
{{DevNotes|This will be achieved by changing the 'MAR-LAND' PDA Style for the product list from: | |||
}} | "ProdList_Items": [ | ||
"lblProductID", | |||
"lblPackSize", | |||
"lblProductUnitType", | |||
"lblProductPlannedQty", | |||
"lblProductDesc" | |||
], | |||
to this: | |||
"ProdList_Items": [ | |||
"lblProductID", | |||
"lblPackSize", | |||
"lblProductUnitType", | |||
"lblProductPlannedQty", | |||
"lblLongDesc" | |||
], | |||
"ProdList_lblLongDesc": { | |||
"width": "98%", | |||
"left": "1%", | |||
"color": "#000000", | |||
"font": { | |||
"fontSize": "16 * Ti.App.resMod" | |||
} | |||
}, | |||
}} |
Revision as of 14:45, 17 January 2019
Marshalls MLP PDA Styling changes
Requirements
Changes are to the MLP device styling only.
- No pagination on styling of products list.
- Switch Long Description and Description on products list
- Product Quantity entry to split Packs and Loose to separate lines for actual quantity, plus UOM on second line. Planned quantity to remain the same layout.
For example:
Actual: CCCCC / UUUUU UOM Planned: CCCCC / UUUUU
Solution Overview
The product list defaults to 10 items per page. The style for MLP devices ('MAR-LAND') will be modified so that this has no pages.
Functional Description
PDA Style
The style for MLP devices ('MAR-LAND') will be modified to achieve the changes required.
Pagination will be removed from the products list.
Developer Notes: This will be achieved by adding the following to the 'MAR-LAND' PDA Style:
"ColDel_lvProductList": { "intPageSize": 0 },
Long Description will be used instead of Description on the Products list.
Developer Notes: This will be achieved by changing the 'MAR-LAND' PDA Style for the product list from:
"ProdList_Items": [ "lblProductID", "lblPackSize", "lblProductUnitType", "lblProductPlannedQty", "lblProductDesc" ],
to this:
"ProdList_Items": [ "lblProductID", "lblPackSize", "lblProductUnitType", "lblProductPlannedQty", "lblLongDesc" ], "ProdList_lblLongDesc": { "width": "98%", "left": "1%", "color": "#000000", "font": { "fontSize": "16 * Ti.App.resMod" } },