add: transaction billing

This commit is contained in:
ilham
2022-05-03 19:09:12 +07:00
parent 49e22932b6
commit 52839223e6
5 changed files with 198 additions and 2 deletions

View File

@@ -28,6 +28,11 @@ export class Product extends BaseModel {
})
basePrice: number;
@Column({
default: 'prepaid',
})
type: string;
@ManyToOne(
() => {
return ProductSubCategories;