update
This commit is contained in:
@ -6,7 +6,7 @@ import { TrxReceiver } from "./trx_receivers";
|
||||
import { TrxCurrencyRate } from "./trx_currency_rates";
|
||||
import { TrxCustomerCost } from "./trx_customer_costs";
|
||||
import { TrxCustomerUser } from "./trx_customer_users";
|
||||
import { TrxTransactionPosition, TrxTransactionRemark, TrxTransactionStatus, TrxTransactionType } from "../types/trx";
|
||||
import { TrxTransactionPosition, TrxTransactionStatus, TrxTransactionType } from "../types/trx";
|
||||
import { TrxVerification } from "./trx_verifications";
|
||||
|
||||
@Entity("trx_transactions", { schema: "trx" })
|
||||
@ -147,7 +147,7 @@ export class TrxTransaction {
|
||||
nullable: true,
|
||||
length: 256,
|
||||
})
|
||||
remark: TrxTransactionRemark;
|
||||
remark: string;
|
||||
|
||||
@Column()
|
||||
@CreateDateColumn()
|
||||
|
||||
@ -68,16 +68,16 @@ export enum TrxTransactionStatus {
|
||||
}
|
||||
|
||||
export enum TrxTransactionRemark {
|
||||
"Draft" = "draft",
|
||||
"Create" = "create",
|
||||
"Pending Approval Checker" = "pending_checker",
|
||||
"Pending Approval Signer" = "pending_signer",
|
||||
"Deal Request Process" = "process_deal_request",
|
||||
"Deal Approve Process" = "process_deal_approve",
|
||||
"Settlement on Process" = "process_settlement",
|
||||
"Success" = "success",
|
||||
"Reject" = "reject",
|
||||
"Cancel" = "cancel",
|
||||
"draft" = "Draft",
|
||||
"create" = "Create",
|
||||
"pending_checker" = "Pending Approval Checker",
|
||||
"pending_signer" = "Pending Approval Signer",
|
||||
"process_deal_request" = "Deal Request Process",
|
||||
"process_deal_approve" = "Deal Approve Process",
|
||||
"process_settlement" = "Settlement on Process",
|
||||
"success" = "Success",
|
||||
"reject" = "Reject",
|
||||
"cancel" = "Cancel",
|
||||
}
|
||||
|
||||
////
|
||||
|
||||
Reference in New Issue
Block a user