mirror of
https://github.com/frappe/books.git
synced 2024-11-14 09:24:04 +00:00
20 lines
420 B
TypeScript
20 lines
420 B
TypeScript
import { Doc } from 'fyo/model/doc';
|
|
import { FormulaMap } from 'fyo/model/types';
|
|
import { ModelNameEnum } from 'models/types';
|
|
|
|
export class PricingRuleItem extends Doc {
|
|
item?: string;
|
|
unit?: string;
|
|
|
|
formulas: FormulaMap = {
|
|
unit: {
|
|
formula: () => {
|
|
if (!this.item) {
|
|
return;
|
|
}
|
|
return this.fyo.getValue(ModelNameEnum.Item, this.item, 'unit');
|
|
},
|
|
},
|
|
};
|
|
}
|