fix: ppob callback

This commit is contained in:
ilham
2022-05-24 00:42:58 +07:00
parent c26294ac50
commit 6f29457720
3 changed files with 16 additions and 4 deletions

View File

@@ -43,6 +43,9 @@ export class CheckBillHistory extends BaseModel {
@Column()
product_code: string;
@Column()
status: string;
@ManyToOne(() => ProductHistoryPrice, (product) => product.id)
product_price: ProductHistoryPrice;
}