feat(items) : items preference.

This commit is contained in:
elforjani3
2021-03-22 17:59:32 +02:00
parent 09c295f62c
commit 13f94e7e35
9 changed files with 311 additions and 30 deletions

View File

@@ -4,7 +4,7 @@ export default {
type: "string",
},
base_currency: {
type: 'string',
type: "string",
},
industry: {
type: "string",
@@ -13,50 +13,50 @@ export default {
type: "string",
},
fiscal_year: {
type: 'string',
type: "string",
},
financial_date_start: {
type: 'string',
type: "string",
},
language: {
type: 'string',
type: "string",
},
time_zone: {
type: 'string',
type: "string",
},
date_format: {
type: 'string',
type: "string",
},
accounting_basis: {
type: 'string',
}
type: "string",
},
},
manual_journals: {
next_number: {
type: 'string',
type: "string",
},
number_prefix: {
type: 'string',
type: "string",
},
auto_increment: {
type: 'boolean',
}
type: "boolean",
},
},
bill_payments: {
withdrawal_account: {
type: 'string'
type: "number",
},
},
sales_estimates: {
next_number: {
type: 'string',
type: "string",
},
number_prefix: {
type: 'string',
type: "string",
},
auto_increment: {
type: "boolean",
}
},
},
sales_receipts: {
next_number: {
@@ -70,7 +70,7 @@ export default {
},
preferred_deposit_account: {
type: "number",
}
},
},
sales_invoices: {
next_number: {
@@ -91,37 +91,37 @@ export default {
type: "string",
},
auto_increment: {
type: 'boolean',
type: "boolean",
},
deposit_account: {
type: 'number',
type: "number",
},
advance_deposit: {
type: 'number',
}
type: "number",
},
},
items: {
sell_account: {
type: 'number',
type: "number",
},
cost_account: {
type: 'number',
type: "number",
},
inventory_account: {
type: 'number',
type: "number",
},
},
expenses: {
preferred_payment_account: {
type: "number",
}
},
},
accounts: {
account_code_required: {
type: 'boolean',
type: "boolean",
},
account_code_unique: {
type: 'boolean',
}
}
type: "boolean",
},
},
};