2
0
mirror of https://github.com/frappe/books.git synced 2024-12-23 03:19:01 +00:00

feat: sync address

This commit is contained in:
akshayitzme 2024-12-05 17:09:46 +05:30
parent 22b9b6e1a4
commit dd9df632a6
4 changed files with 11 additions and 1 deletions

View File

@ -68,6 +68,8 @@ export class Doc extends Observable<DocValue | Doc[]> {
_notInserted = true; _notInserted = true;
_syncing = false; _syncing = false;
_addDocToSyncQueue = true;
constructor( constructor(
schema: Schema, schema: Schema,
data: DocValueMap, data: DocValueMap,

View File

@ -10,7 +10,6 @@ export enum ModelNameEnum {
GetStarted = 'GetStarted', GetStarted = 'GetStarted',
Defaults = 'Defaults', Defaults = 'Defaults',
Item = 'Item', Item = 'Item',
ItemPrice = 'ItemPrice',
UOM = 'UOM', UOM = 'UOM',
UOMConversionItem = 'UOMConversionItem', UOMConversionItem = 'UOMConversionItem',
JournalEntry = 'JournalEntry', JournalEntry = 'JournalEntry',
@ -28,6 +27,7 @@ export enum ModelNameEnum {
Payment = 'Payment', Payment = 'Payment',
PaymentFor = 'PaymentFor', PaymentFor = 'PaymentFor',
PriceList = 'PriceList', PriceList = 'PriceList',
PriceListItem = 'PriceListItem',
PricingRule = 'PricingRule', PricingRule = 'PricingRule',
PricingRuleItem = 'PricingRuleItem', PricingRuleItem = 'PricingRuleItem',
PricingRuleDetail = 'PricingRuleDetail', PricingRuleDetail = 'PricingRuleDetail',

View File

@ -51,6 +51,10 @@
{ {
"value": "Shipment", "value": "Shipment",
"label": "Shipment" "label": "Shipment"
},
{
"value": "Address",
"label": "Address"
} }
], ],
"required": true "required": true

View File

@ -43,6 +43,10 @@
{ {
"value": "UOM", "value": "UOM",
"label": "UOM" "label": "UOM"
},
{
"value": "Address",
"label": "Address"
} }
], ],
"required": true "required": true