feat: add bundling breakdown type

fix/bug-firman
shancheas 2024-08-15 16:04:15 +07:00
parent 50e8951b71
commit e966de6158
2 changed files with 4 additions and 0 deletions

View File

@ -3,4 +3,5 @@ export enum ItemType {
WAHANA = 'wahana',
BUNDLING = 'bundling',
FREE_GIFT = 'free gift',
OTHER = 'other',
}

View File

@ -56,6 +56,9 @@ export class ItemModel
@Column('boolean', { name: 'show_to_booking', default: false })
show_to_booking: boolean;
@Column('boolean', { name: 'breakdown_bundling', default: false })
breakdown_bundling: boolean;
@Column('enum', {
name: 'limit_type',
enum: LimitType,