mirror of
https://github.com/frappe/books.git
synced 2024-11-15 09:54:04 +00:00
22 lines
461 B
TypeScript
22 lines
461 B
TypeScript
import { Doc } from 'fyo/model/doc';
|
|
import { ListViewSettings } from 'fyo/model/types';
|
|
|
|
export class LoyaltyPointEntry extends Doc {
|
|
loyaltyProgram?: string;
|
|
customer?: string;
|
|
invoice?: string;
|
|
purchaseAmount?: number;
|
|
expiryDate?: Date;
|
|
|
|
static override getListViewSettings(): ListViewSettings {
|
|
return {
|
|
columns: [
|
|
'loyaltyProgram',
|
|
'customer',
|
|
'purchaseAmount',
|
|
'loyaltyPoints',
|
|
],
|
|
};
|
|
}
|
|
}
|