| @@ -181,7 +181,7 @@ const PickTable: React.FC<Props> = ({ | |||||
| headerAlign: "right", | headerAlign: "right", | ||||
| renderCell: (params: GridRenderCellParams<JoDetailPickLine>) => { | renderCell: (params: GridRenderCellParams<JoDetailPickLine>) => { | ||||
| const uomShortDesc = getUomShortDesc(params.row); | const uomShortDesc = getUomShortDesc(params.row); | ||||
| return `${decimalFormatter.format(params.value)} ${params.row.shortUom}`; | |||||
| return `${decimalFormatter.format(params.value)} (${params.row.shortUom})`; | |||||
| }, | }, | ||||
| }, | }, | ||||
| { | { | ||||
| @@ -193,7 +193,7 @@ const PickTable: React.FC<Props> = ({ | |||||
| type: "number", | type: "number", | ||||
| renderCell: (params: GridRenderCellParams<JoDetailPickLine>) => { | renderCell: (params: GridRenderCellParams<JoDetailPickLine>) => { | ||||
| const uomShortDesc = getUomShortDesc(params.row); | const uomShortDesc = getUomShortDesc(params.row); | ||||
| return `${decimalFormatter.format(params.value)} ${params.row.shortUom}`; | |||||
| return `${decimalFormatter.format(params.value)} (${params.row.shortUom})`; | |||||
| }, | }, | ||||
| }, | }, | ||||
| { | { | ||||