Merge pull request 'testing-bug-fix' (#175) from testing-bug-fix into main

Reviewed-on: Pozomind/pozo-retail-app#175
This commit is contained in:
karthikalakshmi 2026-02-25 16:28:20 +05:30
commit f0b40a6002
2 changed files with 3 additions and 3 deletions

View File

@ -3806,7 +3806,7 @@ const BSBillingEditQuantity = (props) => {
/>
</>
)}
{RadioBtnSelection == 'weightAmount' && (
{(RadioBtnSelection == 'weightAmount') && isKg && (
<>
<WeightCalculatePrice
CartOrderDetails={CartOrderDetails}

View File

@ -16,8 +16,8 @@ const ShortcutKeyHelper = ({ }) => {
{ key: 'Alt + W', description: 'Hold and Recall' },
{ key: 'Ctrl + Q', description: 'Qty Change' },
{ key: 'Ctrl + E', description: 'Price Change' },
{ key: 'Ctrl + Y', description: 'Weight / Amount' },
{ key: 'Ctrl + B', description: 'Packing' },
{ key: 'Ctrl + Y', description: 'Packing' },
{ key: 'Ctrl + B', description: 'Weight / Amount' },
{ key: 'Alt + P', description: 'Change Total Amount' },
{ key: 'Ctrl + I', description: 'Customer Rate History' },
];