mirror of
https://github.com/frappe/books.git
synced 2024-11-15 01:44:04 +00:00
7d10951316
- update and remove fields
38 lines
757 B
TypeScript
38 lines
757 B
TypeScript
import { Doc } from 'fyo/model/doc';
|
|
import { FormulaMap } from 'fyo/model/types';
|
|
import { Money } from 'pesa';
|
|
import type { PriceList } from './PriceList';
|
|
import { ModelNameEnum } from 'models/types';
|
|
|
|
export class PriceListItem extends Doc {
|
|
item?: string;
|
|
unit?: string;
|
|
rate?: Money;
|
|
parentdoc?: PriceList;
|
|
|
|
get isBuying() {
|
|
return !!this.parentdoc?.buying;
|
|
}
|
|
|
|
get isSelling() {
|
|
return !!this.parentdoc?.selling;
|
|
}
|
|
|
|
get priceList() {
|
|
return this.parentdoc?.name;
|
|
}
|
|
|
|
formulas: FormulaMap = {
|
|
unit: {
|
|
formula: async () => {
|
|
if (!this.item) {
|
|
return;
|
|
}
|
|
|
|
return await this.fyo.getValue(ModelNameEnum.Item, this.item, 'unit');
|
|
},
|
|
dependsOn: ['item'],
|
|
},
|
|
};
|
|
}
|