mirror of
https://github.com/frappe/books.git
synced 2024-11-08 23:00:56 +00:00
50 lines
1.1 KiB
TypeScript
50 lines
1.1 KiB
TypeScript
import { FormulaMap, ListsMap } from 'fyo/model/types';
|
|
import { Address as BaseAddress } from 'models/baseModels/Address/Address';
|
|
import { codeStateMap } from 'regional/in';
|
|
|
|
export class Address extends BaseAddress {
|
|
formulas: FormulaMap = {
|
|
addressDisplay: {
|
|
formula: async () => {
|
|
return [
|
|
this.addressLine1,
|
|
this.addressLine2,
|
|
this.city,
|
|
this.state,
|
|
this.country,
|
|
this.postalCode,
|
|
]
|
|
.filter(Boolean)
|
|
.join(', ');
|
|
},
|
|
dependsOn: [
|
|
'addressLine1',
|
|
'addressLine2',
|
|
'city',
|
|
'state',
|
|
'country',
|
|
'postalCode',
|
|
],
|
|
},
|
|
|
|
pos: {
|
|
formula: async () => {
|
|
const stateList = Object.values(codeStateMap).sort();
|
|
const state = this.state as string;
|
|
if (stateList.includes(state)) {
|
|
return state;
|
|
}
|
|
return '';
|
|
},
|
|
dependsOn: ['state'],
|
|
},
|
|
};
|
|
|
|
static lists: ListsMap = {
|
|
...BaseAddress.lists,
|
|
pos: () => {
|
|
return Object.values(codeStateMap).sort();
|
|
},
|
|
};
|
|
}
|