mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
26 lines
790 B
TypeScript
26 lines
790 B
TypeScript
import { IInventoryAdjustment } from '@/interfaces';
|
|
import { Transformer } from '@/lib/Transformer/Transformer';
|
|
|
|
export default class InventoryAdjustmentTransformer extends Transformer {
|
|
/**
|
|
* Include these attributes to sale invoice object.
|
|
* @returns {Array}
|
|
*/
|
|
public includeAttributes = (): string[] => {
|
|
return ['formattedType'];
|
|
};
|
|
|
|
/**
|
|
* Retrieves the formatted and localized adjustment type.
|
|
* @param {IInventoryAdjustment} inventoryAdjustment
|
|
* @returns {string}
|
|
*/
|
|
formattedType(inventoryAdjustment: IInventoryAdjustment) {
|
|
const types = {
|
|
increment: 'inventory_adjustment.type.increment',
|
|
decrement: 'inventory_adjustment.type.decrement',
|
|
};
|
|
return this.context.i18n.__(types[inventoryAdjustment.type] || '');
|
|
}
|
|
}
|