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