mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 14:50:32 +00:00
Merge pull request #617 from bigcapitalhq/fix-impoort-itemns
fix: Cannot import items income and cost accounts
This commit is contained in:
@@ -257,25 +257,25 @@ export default {
|
|||||||
name: 'item.field.sell_price',
|
name: 'item.field.sell_price',
|
||||||
fieldType: 'number',
|
fieldType: 'number',
|
||||||
},
|
},
|
||||||
cost_price: {
|
costPrice: {
|
||||||
name: 'item.field.cost_price',
|
name: 'item.field.cost_price',
|
||||||
fieldType: 'number',
|
fieldType: 'number',
|
||||||
},
|
},
|
||||||
costAccount: {
|
costAccountId: {
|
||||||
name: 'item.field.cost_account',
|
name: 'item.field.cost_account',
|
||||||
fieldType: 'relation',
|
fieldType: 'relation',
|
||||||
relationModel: 'Account',
|
relationModel: 'Account',
|
||||||
relationImportMatch: ['name', 'code'],
|
relationImportMatch: ['name', 'code'],
|
||||||
importHint: 'Matches the account name or code.',
|
importHint: 'Matches the account name or code.',
|
||||||
},
|
},
|
||||||
sellAccount: {
|
sellAccountId: {
|
||||||
name: 'item.field.sell_account',
|
name: 'item.field.sell_account',
|
||||||
fieldType: 'relation',
|
fieldType: 'relation',
|
||||||
relationModel: 'Account',
|
relationModel: 'Account',
|
||||||
relationImportMatch: ['name', 'code'],
|
relationImportMatch: ['name', 'code'],
|
||||||
importHint: 'Matches the account name or code.',
|
importHint: 'Matches the account name or code.',
|
||||||
},
|
},
|
||||||
inventoryAccount: {
|
inventoryAccountId: {
|
||||||
name: 'item.field.inventory_account',
|
name: 'item.field.inventory_account',
|
||||||
fieldType: 'relation',
|
fieldType: 'relation',
|
||||||
relationModel: 'Account',
|
relationModel: 'Account',
|
||||||
|
|||||||
@@ -43,12 +43,22 @@ export class CreateItem {
|
|||||||
itemDTO.sellAccountId
|
itemDTO.sellAccountId
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
// Validate the income account id existance if the item is sellable.
|
||||||
|
this.validators.validateIncomeAccountExistance(
|
||||||
|
itemDTO.sellable,
|
||||||
|
itemDTO.sellAccountId
|
||||||
|
);
|
||||||
if (itemDTO.costAccountId) {
|
if (itemDTO.costAccountId) {
|
||||||
await this.validators.validateItemCostAccountExistance(
|
await this.validators.validateItemCostAccountExistance(
|
||||||
tenantId,
|
tenantId,
|
||||||
itemDTO.costAccountId
|
itemDTO.costAccountId
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
// Validate the cost account id existance if the item is purchasable.
|
||||||
|
this.validators.validateCostAccountExistance(
|
||||||
|
itemDTO.purchasable,
|
||||||
|
itemDTO.costAccountId
|
||||||
|
);
|
||||||
if (itemDTO.inventoryAccountId) {
|
if (itemDTO.inventoryAccountId) {
|
||||||
await this.validators.validateItemInventoryAccountExistance(
|
await this.validators.validateItemInventoryAccountExistance(
|
||||||
tenantId,
|
tenantId,
|
||||||
|
|||||||
@@ -55,6 +55,11 @@ export class EditItem {
|
|||||||
itemDTO.categoryId
|
itemDTO.categoryId
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
// Validate the income account id existance if the item is sellable.
|
||||||
|
this.validators.validateIncomeAccountExistance(
|
||||||
|
itemDTO.sellable,
|
||||||
|
itemDTO.sellAccountId
|
||||||
|
);
|
||||||
// Validate the sell account existance on the storage.
|
// Validate the sell account existance on the storage.
|
||||||
if (itemDTO.sellAccountId) {
|
if (itemDTO.sellAccountId) {
|
||||||
await this.validators.validateItemSellAccountExistance(
|
await this.validators.validateItemSellAccountExistance(
|
||||||
@@ -62,6 +67,11 @@ export class EditItem {
|
|||||||
itemDTO.sellAccountId
|
itemDTO.sellAccountId
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
// Validate the cost account id existance if the item is purchasable.
|
||||||
|
this.validators.validateCostAccountExistance(
|
||||||
|
itemDTO.purchasable,
|
||||||
|
itemDTO.costAccountId
|
||||||
|
);
|
||||||
// Validate the cost account existance on the storage.
|
// Validate the cost account existance on the storage.
|
||||||
if (itemDTO.costAccountId) {
|
if (itemDTO.costAccountId) {
|
||||||
await this.validators.validateItemCostAccountExistance(
|
await this.validators.validateItemCostAccountExistance(
|
||||||
|
|||||||
@@ -85,6 +85,42 @@ export class ItemsValidators {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validates income account existance.
|
||||||
|
* @param {number|null} sellable - Detarmines if the item sellable.
|
||||||
|
* @param {number|null} incomeAccountId - Income account id.
|
||||||
|
* @throws {ServiceError(ERRORS.INCOME_ACCOUNT_REQUIRED_WITH_SELLABLE_ITEM)}
|
||||||
|
*/
|
||||||
|
public validateIncomeAccountExistance(
|
||||||
|
sellable?: boolean,
|
||||||
|
incomeAccountId?: number
|
||||||
|
) {
|
||||||
|
if (sellable && !incomeAccountId) {
|
||||||
|
throw new ServiceError(
|
||||||
|
ERRORS.INCOME_ACCOUNT_REQUIRED_WITH_SELLABLE_ITEM,
|
||||||
|
'Income account is require with sellable item.'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validates the cost account existance.
|
||||||
|
* @param {boolean|null} purchasable - Detarmines if the item purchasble.
|
||||||
|
* @param {number|null} costAccountId - Cost account id.
|
||||||
|
* @throws {ServiceError(ERRORS.COST_ACCOUNT_REQUIRED_WITH_PURCHASABLE_ITEM)}
|
||||||
|
*/
|
||||||
|
public validateCostAccountExistance(
|
||||||
|
purchasable: boolean,
|
||||||
|
costAccountId?: number
|
||||||
|
) {
|
||||||
|
if (purchasable && !costAccountId) {
|
||||||
|
throw new ServiceError(
|
||||||
|
ERRORS.COST_ACCOUNT_REQUIRED_WITH_PURCHASABLE_ITEM,
|
||||||
|
'The cost account is required with purchasable item.'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Validate item inventory account existance and type.
|
* Validate item inventory account existance and type.
|
||||||
* @param {number} tenantId
|
* @param {number} tenantId
|
||||||
|
|||||||
@@ -26,6 +26,11 @@ export const ERRORS = {
|
|||||||
|
|
||||||
PURCHASE_TAX_RATE_NOT_FOUND: 'PURCHASE_TAX_RATE_NOT_FOUND',
|
PURCHASE_TAX_RATE_NOT_FOUND: 'PURCHASE_TAX_RATE_NOT_FOUND',
|
||||||
SELL_TAX_RATE_NOT_FOUND: 'SELL_TAX_RATE_NOT_FOUND',
|
SELL_TAX_RATE_NOT_FOUND: 'SELL_TAX_RATE_NOT_FOUND',
|
||||||
|
|
||||||
|
INCOME_ACCOUNT_REQUIRED_WITH_SELLABLE_ITEM:
|
||||||
|
'INCOME_ACCOUNT_REQUIRED_WITH_SELLABLE_ITEM',
|
||||||
|
COST_ACCOUNT_REQUIRED_WITH_PURCHASABLE_ITEM:
|
||||||
|
'COST_ACCOUNT_REQUIRED_WITH_PURCHASABLE_ITEM',
|
||||||
};
|
};
|
||||||
|
|
||||||
export const DEFAULT_VIEW_COLUMNS = [];
|
export const DEFAULT_VIEW_COLUMNS = [];
|
||||||
|
|||||||
Reference in New Issue
Block a user