Compare commits

...

2 Commits

Author SHA1 Message Date
shancheas 07d2ec3b46 Merge branch 'development' of ssh://git.eigen.co.id:2222/eigen/pos-be into development
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details
2024-10-17 15:28:01 +07:00
shancheas 8ba5646bb6 fix: show video url in item and vip pass in vip category 2024-10-17 15:27:43 +07:00
3 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,7 @@ export class DetailItemManager extends BaseDetailManager<ItemEntity> {
return [ return [
`${this.tableName}.id`, `${this.tableName}.id`,
`${this.tableName}.image_url`, `${this.tableName}.image_url`,
`${this.tableName}.video_url`,
`${this.tableName}.created_at`, `${this.tableName}.created_at`,
`${this.tableName}.status`, `${this.tableName}.status`,
`${this.tableName}.item_type`, `${this.tableName}.item_type`,

View File

@ -35,6 +35,7 @@ export class DetailVipCategoryManager extends BaseDetailManager<VipCategoryEntit
`${this.tableName}.id`, `${this.tableName}.id`,
`${this.tableName}.status`, `${this.tableName}.status`,
`${this.tableName}.name`, `${this.tableName}.name`,
`${this.tableName}.has_vip_pass`,
`${this.tableName}.created_at`, `${this.tableName}.created_at`,
`${this.tableName}.updated_at`, `${this.tableName}.updated_at`,
`${this.tableName}.creator_name`, `${this.tableName}.creator_name`,

View File

@ -39,6 +39,7 @@ export class IndexVipCategoryManager extends BaseIndexManager<VipCategoryEntity>
`${this.tableName}.id`, `${this.tableName}.id`,
`${this.tableName}.status`, `${this.tableName}.status`,
`${this.tableName}.name`, `${this.tableName}.name`,
`${this.tableName}.has_vip_pass`,
`${this.tableName}.created_at`, `${this.tableName}.created_at`,
`${this.tableName}.updated_at`, `${this.tableName}.updated_at`,
`${this.tableName}.creator_name`, `${this.tableName}.creator_name`,