mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
feat(items) : items preference.
This commit is contained in:
@@ -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",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user