fix(SPG-726) Update image pada item status active, data image tidak ter sync ke PoS
parent
3af56fa5d5
commit
2188d63943
|
@ -52,7 +52,6 @@ export class UpdateItemCategoryManager extends BaseUpdateManager<ItemCategoryEnt
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: ItemCategoryUpdatedEvent,
|
topic: ItemCategoryUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,6 @@ export class UpdateItemRateManager extends BaseUpdateManager<ItemRateEntity> {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: ItemRateUpdatedEvent,
|
topic: ItemRateUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,6 @@ export class UpdateItemManager extends BaseUpdateManager<ItemEntity> {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: ItemUpdatedEvent,
|
topic: ItemUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,6 @@ export class UpdateSeasonTypeManager extends BaseUpdateManager<SeasonTypeEntity>
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: SeasonTypeUpdatedEvent,
|
topic: SeasonTypeUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,6 @@ export class UpdatePaymentMethodManager extends BaseUpdateManager<PaymentMethodE
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: PaymentMethodUpdatedEvent,
|
topic: PaymentMethodUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,7 +49,6 @@ export class UpdateProfitShareFormulaManager extends BaseUpdateManager<SalesPric
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: ProfitShareFormulaUpdatedEvent,
|
topic: ProfitShareFormulaUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,7 +70,6 @@ export class UpdateRefundManager extends BaseUpdateManager<RefundEntity> {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: RefundUpdatedEvent,
|
topic: RefundUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,7 +49,6 @@ export class UpdateSalesPriceFormulaManager extends BaseUpdateManager<SalesPrice
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: SalesPriceFormulaUpdatedEvent,
|
topic: SalesPriceFormulaUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,6 @@ export class UpdateTaxManager extends BaseUpdateManager<TaxEntity> {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: TaxUpdatedEvent,
|
topic: TaxUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,6 @@ export class UpdateVipCategoryManager extends BaseUpdateManager<VipCategoryEntit
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: VipCategoryUpdatedEvent,
|
topic: VipCategoryUpdatedEvent,
|
||||||
data: this.result,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,7 +44,6 @@ export class UpdatePasswordTenantManager extends BaseUpdateManager<UserEntity> {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: TenantUpdatedEvent,
|
topic: TenantUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,7 +51,6 @@ export class UpdateTenantManager extends BaseUpdateManager<UserEntity> {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: TenantUpdatedEvent,
|
topic: TenantUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,6 @@ export class UpdateUserPrivilegeManager extends BaseUpdateManager<UserPrivilegeE
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: UserPrivilegeUpdatedEvent,
|
topic: UserPrivilegeUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,7 +45,6 @@ export class UpdatePasswordUserManager extends BaseUpdateManager<UserEntity> {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: UserUpdatedEvent,
|
topic: UserUpdatedEvent,
|
||||||
data: this.result,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,7 +52,6 @@ export class UpdateUserManager extends BaseUpdateManager<UserEntity> {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: UserUpdatedEvent,
|
topic: UserUpdatedEvent,
|
||||||
data: this.result,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,6 @@ export class UpdateBannerManager extends BaseUpdateManager<BannerEntity> {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: BannerUpdatedEvent,
|
topic: BannerUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,6 @@ export class UpdateFaqManager extends BaseUpdateManager<FaqEntity> {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: FaqUpdatedEvent,
|
topic: FaqUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,7 +41,6 @@ export class UpdateGateManager extends BaseUpdateManager<GateEntity> {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: GateUpdatedEvent,
|
topic: GateUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,6 @@ export class UpdateNewsManager extends BaseUpdateManager<NewsEntity> {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: NewsUpdatedEvent,
|
topic: NewsUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,6 @@ export class UpdateTermConditionManager extends BaseUpdateManager<TermConditionE
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
topic: TermConditionUpdatedEvent,
|
topic: TermConditionUpdatedEvent,
|
||||||
data: this.data,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue