2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00

Fixed pos issue in countries other than India

This commit is contained in:
Piyush Singhania 2021-12-29 12:40:13 +05:30
parent 00c81beec1
commit 5d6104ce0d

View File

@ -19,12 +19,8 @@ export default function getAugmentedAddress({ country }) {
options: Object.keys(stateCodeMap).map((key) => capitalize(key)), options: Object.keys(stateCodeMap).map((key) => capitalize(key)),
}, },
]; ];
Address.quickEditFields = [...Address.quickEditFields, 'pos'];
} }
Address.quickEditFields = [
...Address.quickEditFields,
'pos',
];
return Address; return Address;
} }