minor fix bank garansi pending
This commit is contained in:
@ -6,7 +6,7 @@ import { BankGaransiType } from "./bank_garansi_type";
|
||||
// import { Target } from './targets';
|
||||
|
||||
@Entity("bank_garansi_pending")
|
||||
export class BankGaransi {
|
||||
export class BankGaransiPending {
|
||||
@PrimaryGeneratedColumn("uuid")
|
||||
id: string;
|
||||
|
||||
@ -96,9 +96,6 @@ export class BankGaransi {
|
||||
})
|
||||
provision: number;
|
||||
|
||||
@Column({ nullable: false })
|
||||
bgStatusId: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 4096,
|
||||
|
||||
160
src/index.ts
160
src/index.ts
@ -50,7 +50,7 @@ import { CreditCompanyUser } from "./entity/credit_company_users";
|
||||
import { CreditCompanyUserRefreshToken } from "./entity/credit_company_user_refresh_token";
|
||||
import { CreditApplicationChat } from "./entity/credit_application_chats";
|
||||
import { Application } from "./entity/application";
|
||||
import { AssetClassification } from "./entity/asset_classification"
|
||||
import { AssetClassification } from "./entity/asset_classification";
|
||||
import { FixedAssetClassification } from "./entity/fixed_assets_classification";
|
||||
import { Employee } from "./entity/employee";
|
||||
import { Department } from "./entity/department";
|
||||
@ -58,92 +58,92 @@ import { AssetDepreciation } from "./entity/asset_depreciation";
|
||||
import { RequestOrder } from "./entity/request_orders";
|
||||
import { RequestSubmission } from "./entity/request_submission";
|
||||
import { SubmissionRecap } from "./entity/request_submission_recap";
|
||||
import { AssetRealization } from './entity/asset_realizations'
|
||||
import { AssetRealization } from "./entity/asset_realizations";
|
||||
import { AssetRealizationRecap } from "./entity/asset_realization_recaps";
|
||||
import { GoodsReceipt } from "./entity/goods_receipt";
|
||||
import { Invoice } from "./entity/asset_invoice";
|
||||
import { Asset } from './entity/assets'
|
||||
import { Asset } from "./entity/assets";
|
||||
import { GoodsHandover } from "./entity/goods_handover";
|
||||
import { AssetJournalEntry } from "./entity/journal_entries";
|
||||
import { PaymentApproval } from "./entity/payment_approval";
|
||||
import { FinanceMemo } from "./entity/finance_memo";
|
||||
|
||||
|
||||
import { BankGaransiPending } from "./entity/bank_garansi_pending";
|
||||
|
||||
export {
|
||||
User, //
|
||||
UserRole,
|
||||
UserActivity,
|
||||
UserRefreshToken,
|
||||
TrialBalanceBranch,
|
||||
TrialBalanceConsolidation,
|
||||
LNKOLEK,
|
||||
CifAccount,
|
||||
ActivityType,
|
||||
ActivityTypeReverse,
|
||||
ErrorType,
|
||||
ErrorValidation,
|
||||
Paging,
|
||||
RoleList,
|
||||
Status,
|
||||
EmailBody,
|
||||
TelegramBody,
|
||||
TelegramResponseSend,
|
||||
Product,
|
||||
Branch,
|
||||
Menu,
|
||||
Administrativu,
|
||||
Aldeia,
|
||||
ClassEconomi,
|
||||
District,
|
||||
IncomeTier,
|
||||
Munisipo,
|
||||
Suco,
|
||||
LogPull,
|
||||
LogPullType,
|
||||
StatusLogPull,
|
||||
Category,
|
||||
CategorySource,
|
||||
CategoryType,
|
||||
PullerStatus,
|
||||
Target,
|
||||
BankGaransi,
|
||||
BankGaransiType,
|
||||
BankGaransiStatus,
|
||||
Summarize,
|
||||
SummarizeLog,
|
||||
SummarizeLogStatus,
|
||||
SummarizeType,
|
||||
Goods,
|
||||
Supplier,
|
||||
Asset,
|
||||
AssetCategory,
|
||||
AssetClassification,
|
||||
FixedAssetClassification,
|
||||
AssetDepreciation,
|
||||
Employee,
|
||||
Invoice,
|
||||
GoodsHandover,
|
||||
AssetJournalEntry,
|
||||
PaymentApproval,
|
||||
FinanceMemo,
|
||||
Department,
|
||||
GoodsReceipt,
|
||||
RequestSubmission,
|
||||
SubmissionRecap,
|
||||
RequestOrder,
|
||||
AssetRealization,
|
||||
AssetRealizationRecap,
|
||||
Ledger,
|
||||
CreditCompany,
|
||||
CreditDebtor,
|
||||
CreditTypeForms,
|
||||
CreditApplication,
|
||||
CreditApplicationStatus,
|
||||
CreditApplicationForm,
|
||||
CreditCompanyUser,
|
||||
CreditCompanyUserRefreshToken,
|
||||
CreditApplicationChat,
|
||||
CreditApplicationFileStatus,
|
||||
Application,
|
||||
User, //
|
||||
UserRole,
|
||||
UserActivity,
|
||||
UserRefreshToken,
|
||||
TrialBalanceBranch,
|
||||
TrialBalanceConsolidation,
|
||||
LNKOLEK,
|
||||
CifAccount,
|
||||
ActivityType,
|
||||
ActivityTypeReverse,
|
||||
ErrorType,
|
||||
ErrorValidation,
|
||||
Paging,
|
||||
RoleList,
|
||||
Status,
|
||||
EmailBody,
|
||||
TelegramBody,
|
||||
TelegramResponseSend,
|
||||
Product,
|
||||
Branch,
|
||||
Menu,
|
||||
Administrativu,
|
||||
Aldeia,
|
||||
ClassEconomi,
|
||||
District,
|
||||
IncomeTier,
|
||||
Munisipo,
|
||||
Suco,
|
||||
LogPull,
|
||||
LogPullType,
|
||||
StatusLogPull,
|
||||
Category,
|
||||
CategorySource,
|
||||
CategoryType,
|
||||
PullerStatus,
|
||||
Target,
|
||||
BankGaransi,
|
||||
BankGaransiPending,
|
||||
BankGaransiType,
|
||||
BankGaransiStatus,
|
||||
Summarize,
|
||||
SummarizeLog,
|
||||
SummarizeLogStatus,
|
||||
SummarizeType,
|
||||
Goods,
|
||||
Supplier,
|
||||
Asset,
|
||||
AssetCategory,
|
||||
AssetClassification,
|
||||
FixedAssetClassification,
|
||||
AssetDepreciation,
|
||||
Employee,
|
||||
Invoice,
|
||||
GoodsHandover,
|
||||
AssetJournalEntry,
|
||||
PaymentApproval,
|
||||
FinanceMemo,
|
||||
Department,
|
||||
GoodsReceipt,
|
||||
RequestSubmission,
|
||||
SubmissionRecap,
|
||||
RequestOrder,
|
||||
AssetRealization,
|
||||
AssetRealizationRecap,
|
||||
Ledger,
|
||||
CreditCompany,
|
||||
CreditDebtor,
|
||||
CreditTypeForms,
|
||||
CreditApplication,
|
||||
CreditApplicationStatus,
|
||||
CreditApplicationForm,
|
||||
CreditCompanyUser,
|
||||
CreditCompanyUserRefreshToken,
|
||||
CreditApplicationChat,
|
||||
CreditApplicationFileStatus,
|
||||
Application,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user