Compare commits

..

No commits in common. "fa286820fcfb04908c24ded485825af897411d8b" and "50e8951b717f1341debd4ac649ff5ef95d07975a" have entirely different histories.

4 changed files with 1 additions and 7 deletions

View File

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

View File

@ -56,9 +56,6 @@ 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,

View File

@ -47,7 +47,7 @@ export class DetailItemManager extends BaseDetailManager<ItemEntity> {
`${this.tableName}.base_price`,
`${this.tableName}.use_queue`,
`${this.tableName}.show_to_booking`,
`${this.tableName}.breakdown_bundling`,
`${this.tableName}.show_to_booking`,
`item_category.id`,
`item_category.name`,

View File

@ -45,8 +45,6 @@ export class IndexItemManager extends BaseIndexManager<ItemEntity> {
`${this.tableName}.limit_type`,
`${this.tableName}.limit_value`,
`${this.tableName}.base_price`,
`${this.tableName}.share_profit`,
`${this.tableName}.breakdown_bundling`,
`item_category.id`,
`item_category.name`,