feat(fulfillment,order): add created_by fields to fulfillment, return, claim, exchange (#8711)

what: 

- add created_by fields to fulfillment, return, claim, exchange
This commit is contained in:
Riqwan Thamir
2024-08-21 17:59:42 +00:00
committed by GitHub
parent 01583baf6d
commit cb6cc79018
8 changed files with 147 additions and 9 deletions
@@ -76,6 +76,12 @@ export default class Fulfillment {
})
shipped_at: Date | null = null
@Property({ columnType: "text", nullable: true })
marked_shipped_by: string | null = null
@Property({ columnType: "text", nullable: true })
created_by: string | null = null
@Property({
columnType: "timestamptz",
nullable: true,