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:
parent
22b9b6e1a4
commit
dd9df632a6
@ -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,
|
||||||
|
@ -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',
|
||||||
|
@ -51,6 +51,10 @@
|
|||||||
{
|
{
|
||||||
"value": "Shipment",
|
"value": "Shipment",
|
||||||
"label": "Shipment"
|
"label": "Shipment"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"value": "Address",
|
||||||
|
"label": "Address"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"required": true
|
"required": true
|
||||||
|
@ -43,6 +43,10 @@
|
|||||||
{
|
{
|
||||||
"value": "UOM",
|
"value": "UOM",
|
||||||
"label": "UOM"
|
"label": "UOM"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"value": "Address",
|
||||||
|
"label": "Address"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"required": true
|
"required": true
|
||||||
|
Loading…
Reference in New Issue
Block a user