* feat: Completely revamp the pricing module * chore: Update all places to the new pricing interfaces * fix: Remove unnecessary join to itself * chore: Add data migration for existing users * fix: Apply the correct index to price rule
69 lines
1.4 KiB
TypeScript
69 lines
1.4 KiB
TypeScript
import {
|
|
createPsqlIndexStatementHelper,
|
|
DALUtils,
|
|
generateEntityId,
|
|
} from "@medusajs/utils"
|
|
import {
|
|
BeforeCreate,
|
|
Cascade,
|
|
Collection,
|
|
Entity,
|
|
Filter,
|
|
OneToMany,
|
|
OnInit,
|
|
PrimaryKey,
|
|
Property,
|
|
Rel,
|
|
} from "@mikro-orm/core"
|
|
import Price from "./price"
|
|
|
|
const tableName = "price_set"
|
|
const PriceSetDeletedAtIndex = createPsqlIndexStatementHelper({
|
|
tableName: tableName,
|
|
columns: "deleted_at",
|
|
where: "deleted_at IS NOT NULL",
|
|
})
|
|
|
|
export const PriceSetIdPrefix = "pset"
|
|
|
|
@Entity({ tableName })
|
|
@Filter(DALUtils.mikroOrmSoftDeletableFilterOptions)
|
|
export default class PriceSet {
|
|
@PrimaryKey({ columnType: "text" })
|
|
id!: string
|
|
|
|
@OneToMany(() => Price, (price) => price.price_set, {
|
|
cascade: [Cascade.PERSIST, "soft-remove" as Cascade],
|
|
})
|
|
prices = new Collection<Rel<Price>>(this)
|
|
|
|
@Property({
|
|
onCreate: () => new Date(),
|
|
columnType: "timestamptz",
|
|
defaultRaw: "now()",
|
|
})
|
|
created_at: Date
|
|
|
|
@Property({
|
|
onCreate: () => new Date(),
|
|
onUpdate: () => new Date(),
|
|
columnType: "timestamptz",
|
|
defaultRaw: "now()",
|
|
})
|
|
updated_at: Date
|
|
|
|
@PriceSetDeletedAtIndex.MikroORMIndex()
|
|
@Property({ columnType: "timestamptz", nullable: true })
|
|
deleted_at: Date | null = null
|
|
|
|
@BeforeCreate()
|
|
onCreate() {
|
|
this.id = generateEntityId(this.id, PriceSetIdPrefix)
|
|
}
|
|
|
|
@OnInit()
|
|
onInit() {
|
|
this.id = generateEntityId(this.id, PriceSetIdPrefix)
|
|
}
|
|
}
|