Compare commits
No commits in common. "fa286820fcfb04908c24ded485825af897411d8b" and "50e8951b717f1341debd4ac649ff5ef95d07975a" have entirely different histories.
fa286820fc
...
50e8951b71
|
@ -3,5 +3,4 @@ export enum ItemType {
|
||||||
WAHANA = 'wahana',
|
WAHANA = 'wahana',
|
||||||
BUNDLING = 'bundling',
|
BUNDLING = 'bundling',
|
||||||
FREE_GIFT = 'free gift',
|
FREE_GIFT = 'free gift',
|
||||||
OTHER = 'other',
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,9 +56,6 @@ export class ItemModel
|
||||||
@Column('boolean', { name: 'show_to_booking', default: false })
|
@Column('boolean', { name: 'show_to_booking', default: false })
|
||||||
show_to_booking: boolean;
|
show_to_booking: boolean;
|
||||||
|
|
||||||
@Column('boolean', { name: 'breakdown_bundling', default: false })
|
|
||||||
breakdown_bundling: boolean;
|
|
||||||
|
|
||||||
@Column('enum', {
|
@Column('enum', {
|
||||||
name: 'limit_type',
|
name: 'limit_type',
|
||||||
enum: LimitType,
|
enum: LimitType,
|
||||||
|
|
|
@ -47,7 +47,7 @@ export class DetailItemManager extends BaseDetailManager<ItemEntity> {
|
||||||
`${this.tableName}.base_price`,
|
`${this.tableName}.base_price`,
|
||||||
`${this.tableName}.use_queue`,
|
`${this.tableName}.use_queue`,
|
||||||
`${this.tableName}.show_to_booking`,
|
`${this.tableName}.show_to_booking`,
|
||||||
`${this.tableName}.breakdown_bundling`,
|
`${this.tableName}.show_to_booking`,
|
||||||
|
|
||||||
`item_category.id`,
|
`item_category.id`,
|
||||||
`item_category.name`,
|
`item_category.name`,
|
||||||
|
|
|
@ -45,8 +45,6 @@ export class IndexItemManager extends BaseIndexManager<ItemEntity> {
|
||||||
`${this.tableName}.limit_type`,
|
`${this.tableName}.limit_type`,
|
||||||
`${this.tableName}.limit_value`,
|
`${this.tableName}.limit_value`,
|
||||||
`${this.tableName}.base_price`,
|
`${this.tableName}.base_price`,
|
||||||
`${this.tableName}.share_profit`,
|
|
||||||
`${this.tableName}.breakdown_bundling`,
|
|
||||||
|
|
||||||
`item_category.id`,
|
`item_category.id`,
|
||||||
`item_category.name`,
|
`item_category.name`,
|
||||||
|
|
Loading…
Reference in New Issue