update
This commit is contained in:
@ -15,7 +15,7 @@
|
|||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bcryptjs": "^2.4.3",
|
"bcryptjs": "^2.4.3",
|
||||||
"typeorm": "^0.3.20"
|
"typeorm": "^0.3.24"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/bcryptjs": "^2.4.6",
|
"@types/bcryptjs": "^2.4.6",
|
||||||
|
|||||||
@ -3,7 +3,7 @@ import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateCol
|
|||||||
import { Status } from "../types/status";
|
import { Status } from "../types/status";
|
||||||
import { BankGaransi } from "./bank_garansi";
|
import { BankGaransi } from "./bank_garansi";
|
||||||
|
|
||||||
@Entity("branchs")
|
@Entity("branchs", { schema: 'public' })
|
||||||
export class Branch {
|
export class Branch {
|
||||||
@PrimaryGeneratedColumn("uuid")
|
@PrimaryGeneratedColumn("uuid")
|
||||||
id: string;
|
id: string;
|
||||||
|
|||||||
40
src/entity/remit_administrativus.ts
Normal file
40
src/entity/remit_administrativus.ts
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, ManyToOne, JoinColumn } from "typeorm";
|
||||||
|
import { Status } from "../types/status";
|
||||||
|
import { RemitMunisipo } from "./remit_munisipos";
|
||||||
|
|
||||||
|
@Entity("remit_administrativus", { schema: "remits" })
|
||||||
|
export class RemitAdministrativu {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitMunisipo, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
munisipo: RemitMunisipo
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
42
src/entity/remit_aldeias.ts
Normal file
42
src/entity/remit_aldeias.ts
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, ManyToOne, JoinColumn } from "typeorm";
|
||||||
|
import { Status } from "../types/status";
|
||||||
|
import { RemitMunisipo } from "./remit_munisipos";
|
||||||
|
import { RemitAdministrativu } from "./remit_administrativus";
|
||||||
|
import { RemitSuco } from "./remit_sucos";
|
||||||
|
|
||||||
|
@Entity("remit_aldeias", { schema: "remits" })
|
||||||
|
export class RemitAldeia {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitSuco, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
suco: RemitSuco
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
@ -1,53 +0,0 @@
|
|||||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn } from "typeorm";
|
|
||||||
|
|
||||||
@Entity("remit_banks", { schema: "remits" })
|
|
||||||
export class RemitBank {
|
|
||||||
@PrimaryGeneratedColumn("uuid")
|
|
||||||
id: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
unique: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
name: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
unique: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
fullname: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
unique: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
formerly: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
unique: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
bank_code: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
length: 64,
|
|
||||||
})
|
|
||||||
status: String;
|
|
||||||
|
|
||||||
@Column()
|
|
||||||
@CreateDateColumn()
|
|
||||||
created_at: Date;
|
|
||||||
|
|
||||||
@Column({ nullable: true })
|
|
||||||
@UpdateDateColumn()
|
|
||||||
updated_at: Date;
|
|
||||||
|
|
||||||
@Column({ nullable: true })
|
|
||||||
@DeleteDateColumn()
|
|
||||||
deleted_at: Date;
|
|
||||||
}
|
|
||||||
133
src/entity/remit_beneficials.ts
Normal file
133
src/entity/remit_beneficials.ts
Normal file
@ -0,0 +1,133 @@
|
|||||||
|
import { Column, CreateDateColumn, DeleteDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
|
||||||
|
import { RemitPartner } from "./remit_partners";
|
||||||
|
import { District } from "./district";
|
||||||
|
import { Munisipo } from "./munisipo";
|
||||||
|
import { Administrativu } from "./administrativu";
|
||||||
|
import { Suco } from "./suco";
|
||||||
|
import { Aldeia } from "./aldeia";
|
||||||
|
import { RemitConfigNationalities } from "./remit_config_nationalities";
|
||||||
|
import { RemitConfigOccupation } from "./remit_config_occupations";
|
||||||
|
import { RemitGender, RemitIdentityType } from "../types/remit";
|
||||||
|
import { RemitConfigSourceIncome } from "./remit_config_source_incomes";
|
||||||
|
import { RemitMunisipo } from "./remit_munisipos";
|
||||||
|
import { RemitAdministrativu } from "./remit_administrativus";
|
||||||
|
import { RemitSuco } from "./remit_sucos";
|
||||||
|
import { RemitAldeia } from "./remit_aldeias";
|
||||||
|
|
||||||
|
@Entity("remit_beneficials", { schema: "remits" })
|
||||||
|
export class RemitBeneficial {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
gender: RemitGender;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
birth_place: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
})
|
||||||
|
birth_date: Date;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
phone: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
email: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitConfigNationalities, { onDelete: "NO ACTION", nullable: true })
|
||||||
|
@JoinColumn()
|
||||||
|
nationality: RemitConfigNationalities;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
address: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitMunisipo, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
munisipo: RemitMunisipo
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitAdministrativu, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
administrativu: RemitAdministrativu
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitSuco, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
suco: RemitSuco
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitAldeia, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
aldeia: RemitAldeia
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitConfigNationalities, { onDelete: "NO ACTION", nullable: true })
|
||||||
|
@JoinColumn()
|
||||||
|
country: RemitConfigNationalities;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitConfigOccupation, { onDelete: "NO ACTION", nullable: true })
|
||||||
|
@JoinColumn()
|
||||||
|
occupation: RemitConfigOccupation;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitConfigSourceIncome, { onDelete: "NO ACTION", nullable: true })
|
||||||
|
@JoinColumn()
|
||||||
|
source_income: RemitConfigSourceIncome;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
identity_type: RemitIdentityType;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
identity_number: String;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
identity_file: String;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
85
src/entity/remit_beneficiaries.ts
Normal file
85
src/entity/remit_beneficiaries.ts
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
import { Column, CreateDateColumn, DeleteDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
|
||||||
|
import { RemitPartner } from "./remit_partners";
|
||||||
|
import { District } from "./district";
|
||||||
|
import { Munisipo } from "./munisipo";
|
||||||
|
import { Administrativu } from "./administrativu";
|
||||||
|
import { Suco } from "./suco";
|
||||||
|
import { Aldeia } from "./aldeia";
|
||||||
|
import { RemitConfigNationalities } from "./remit_config_nationalities";
|
||||||
|
import { RemitConfigOccupation } from "./remit_config_occupations";
|
||||||
|
import { RemitGender, RemitIdentityType, RemitSenderType } from "../types/remit";
|
||||||
|
import { RemitConfigSourceIncome } from "./remit_config_source_incomes";
|
||||||
|
import { RemitConfigBank } from "./remit_config_banks";
|
||||||
|
|
||||||
|
@Entity("remit_beneficiaries", { schema: "remits" })
|
||||||
|
export class RemitBeneficiary {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitConfigBank, { onDelete: "NO ACTION", nullable: true })
|
||||||
|
@JoinColumn()
|
||||||
|
bank: RemitConfigBank;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
account: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
phone: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
address: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
identity_type: RemitIdentityType;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
identity_number: String;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
identity_file: String;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
@ -1,38 +1,38 @@
|
|||||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne } from "typeorm";
|
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn } from "typeorm";
|
||||||
|
|
||||||
import { Status } from "../types/status";
|
import { Status } from "../types/status";
|
||||||
|
|
||||||
@Entity("remit_config_transactions", { schema: "remits" })
|
@Entity("remit_config_banks", { schema: "remits" })
|
||||||
export class RemitConfigTransaction {
|
export class RemitConfigBank {
|
||||||
@PrimaryGeneratedColumn("uuid")
|
@PrimaryGeneratedColumn("uuid")
|
||||||
id: string;
|
id: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
|
unique: true,
|
||||||
length: 256,
|
length: 256,
|
||||||
})
|
})
|
||||||
min: string;
|
code: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
length: 256,
|
length: 256,
|
||||||
})
|
})
|
||||||
max: string;
|
name: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
length: 256,
|
length: 256,
|
||||||
})
|
})
|
||||||
type: string;
|
fullname: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
length: 256,
|
length: 256,
|
||||||
})
|
})
|
||||||
value: string;
|
formerly: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: false,
|
nullable: true,
|
||||||
length: 64,
|
length: 64,
|
||||||
})
|
})
|
||||||
status: Status;
|
status: Status;
|
||||||
@ -41,23 +41,20 @@ export class RemitConfigTransaction {
|
|||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
created_at: Date;
|
created_at: Date;
|
||||||
|
|
||||||
@Column({
|
@Column({ nullable: true, length: 256, })
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
created_by: string;
|
created_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@UpdateDateColumn()
|
@UpdateDateColumn()
|
||||||
updated_at: Date;
|
updated_at: Date;
|
||||||
|
|
||||||
@Column({
|
@Column({ nullable: true, length: 256 })
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
updated_by: string;
|
updated_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@DeleteDateColumn()
|
@DeleteDateColumn()
|
||||||
deleted_at: Date;
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
}
|
}
|
||||||
@ -1,27 +1,24 @@
|
|||||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne, JoinTable } from "typeorm";
|
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne } from "typeorm";
|
||||||
import { Status } from "../types/status";
|
|
||||||
import { RemitPartner } from "./remit_partners";
|
|
||||||
|
|
||||||
@Entity("remit_partner_allocations", { schema: "remits" })
|
import { Status } from "../types/status";
|
||||||
export class RemitPartnerAllocation {
|
import { RemitRiskLevel } from "../types/remit";
|
||||||
|
|
||||||
|
@Entity("remit_config_business_types", { schema: "remits" })
|
||||||
|
export class RemitConfigBusinessType {
|
||||||
@PrimaryGeneratedColumn("uuid")
|
@PrimaryGeneratedColumn("uuid")
|
||||||
id: string;
|
id: string;
|
||||||
|
|
||||||
@ManyToOne(() => RemitPartner, { onDelete: "CASCADE" })
|
|
||||||
@JoinTable()
|
|
||||||
partner: RemitPartner;
|
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
length: 256,
|
length: 256,
|
||||||
})
|
})
|
||||||
bri_value: string;
|
name: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: false,
|
||||||
length: 256,
|
length: 64,
|
||||||
})
|
})
|
||||||
partner_value: string;
|
level: RemitRiskLevel;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: false,
|
nullable: false,
|
||||||
@ -33,23 +30,20 @@ export class RemitPartnerAllocation {
|
|||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
created_at: Date;
|
created_at: Date;
|
||||||
|
|
||||||
@Column({
|
@Column({ nullable: true, length: 256, })
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
created_by: string;
|
created_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@UpdateDateColumn()
|
@UpdateDateColumn()
|
||||||
updated_at: Date;
|
updated_at: Date;
|
||||||
|
|
||||||
@Column({
|
@Column({ nullable: true, length: 256 })
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
updated_by: string;
|
updated_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@DeleteDateColumn()
|
@DeleteDateColumn()
|
||||||
deleted_at: Date;
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
}
|
}
|
||||||
@ -23,23 +23,20 @@ export class RemitConfigKurs {
|
|||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
created_at: Date;
|
created_at: Date;
|
||||||
|
|
||||||
@Column({
|
@Column({ nullable: true, length: 256, })
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
created_by: string;
|
created_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@UpdateDateColumn()
|
@UpdateDateColumn()
|
||||||
updated_at: Date;
|
updated_at: Date;
|
||||||
|
|
||||||
@Column({
|
@Column({ nullable: true, length: 256 })
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
updated_by: string;
|
updated_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@DeleteDateColumn()
|
@DeleteDateColumn()
|
||||||
deleted_at: Date;
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
}
|
}
|
||||||
|
|||||||
49
src/entity/remit_config_nationalities.ts
Normal file
49
src/entity/remit_config_nationalities.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne } from "typeorm";
|
||||||
|
|
||||||
|
import { Status } from "../types/status";
|
||||||
|
import { RemitRiskLevel } from "../types/remit";
|
||||||
|
|
||||||
|
@Entity("remit_config_nationalities", { schema: "remits" })
|
||||||
|
export class RemitConfigNationalities {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: false,
|
||||||
|
length: 64,
|
||||||
|
})
|
||||||
|
level: RemitRiskLevel;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: false,
|
||||||
|
length: 64,
|
||||||
|
})
|
||||||
|
status: Status;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
49
src/entity/remit_config_occupations.ts
Normal file
49
src/entity/remit_config_occupations.ts
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne } from "typeorm";
|
||||||
|
|
||||||
|
import { Status } from "../types/status";
|
||||||
|
import { RemitRiskLevel } from "../types/remit";
|
||||||
|
|
||||||
|
@Entity("remit_config_occupations", { schema: "remits" })
|
||||||
|
export class RemitConfigOccupation {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: false,
|
||||||
|
length: 64,
|
||||||
|
})
|
||||||
|
level: RemitRiskLevel;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: false,
|
||||||
|
length: 64,
|
||||||
|
})
|
||||||
|
status: Status;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
@ -1,9 +1,10 @@
|
|||||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne } from "typeorm";
|
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne } from "typeorm";
|
||||||
|
|
||||||
import { Status } from "../types/status";
|
import { Status } from "../types/status";
|
||||||
|
import { RemitRiskLevel } from "../types/remit";
|
||||||
|
|
||||||
@Entity("remit_config_allocations", { schema: "remits" })
|
@Entity("remit_config_purposes", { schema: "remits" })
|
||||||
export class RemitConfigAllocation {
|
export class RemitConfigPurpose {
|
||||||
@PrimaryGeneratedColumn("uuid")
|
@PrimaryGeneratedColumn("uuid")
|
||||||
id: string;
|
id: string;
|
||||||
|
|
||||||
@ -11,13 +12,13 @@ export class RemitConfigAllocation {
|
|||||||
nullable: true,
|
nullable: true,
|
||||||
length: 256,
|
length: 256,
|
||||||
})
|
})
|
||||||
bri_value: string;
|
name: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: false,
|
||||||
length: 256,
|
length: 64,
|
||||||
})
|
})
|
||||||
partner_value: string;
|
level: RemitRiskLevel;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: false,
|
nullable: false,
|
||||||
@ -29,23 +30,20 @@ export class RemitConfigAllocation {
|
|||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
created_at: Date;
|
created_at: Date;
|
||||||
|
|
||||||
@Column({
|
@Column({ nullable: true, length: 256, })
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
created_by: string;
|
created_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@UpdateDateColumn()
|
@UpdateDateColumn()
|
||||||
updated_at: Date;
|
updated_at: Date;
|
||||||
|
|
||||||
@Column({
|
@Column({ nullable: true, length: 256 })
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
updated_by: string;
|
updated_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@DeleteDateColumn()
|
@DeleteDateColumn()
|
||||||
deleted_at: Date;
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
}
|
}
|
||||||
@ -1,36 +1,49 @@
|
|||||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne } from "typeorm";
|
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne } from "typeorm";
|
||||||
|
|
||||||
import { Status } from "../types/status";
|
import { Status } from "../types/status";
|
||||||
|
import { RemitRiskLevel } from "../types/remit";
|
||||||
|
|
||||||
@Entity("remit_otp", { schema: "remits" })
|
@Entity("remit_config_source_incomes", { schema: "remits" })
|
||||||
export class RemitOtp {
|
export class RemitConfigSourceIncome {
|
||||||
@PrimaryGeneratedColumn("uuid")
|
@PrimaryGeneratedColumn("uuid")
|
||||||
id: string;
|
id: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: false,
|
nullable: true,
|
||||||
length: 256,
|
length: 256,
|
||||||
})
|
})
|
||||||
username: string;
|
name: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: false,
|
nullable: false,
|
||||||
length: 256,
|
length: 64,
|
||||||
})
|
})
|
||||||
otp: string;
|
level: RemitRiskLevel;
|
||||||
|
|
||||||
@Column("timestamp")
|
@Column({
|
||||||
expired_at: Date;
|
nullable: false,
|
||||||
|
length: 64,
|
||||||
|
})
|
||||||
|
status: Status;
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
created_at: Date;
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@UpdateDateColumn()
|
@UpdateDateColumn()
|
||||||
updated_at: Date;
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@DeleteDateColumn()
|
@DeleteDateColumn()
|
||||||
deleted_at: Date;
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
}
|
}
|
||||||
35
src/entity/remit_munisipos.ts
Normal file
35
src/entity/remit_munisipos.ts
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn } from "typeorm";
|
||||||
|
import { Status } from "../types/status";
|
||||||
|
|
||||||
|
@Entity("remit_munisipos", { schema: "remits" })
|
||||||
|
export class RemitMunisipo {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
@ -1,48 +0,0 @@
|
|||||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, ManyToOne, JoinTable } from "typeorm";
|
|
||||||
import { RemitPartner } from "./remit_partners";
|
|
||||||
|
|
||||||
@Entity("remit_mutation", { schema: "remits" })
|
|
||||||
export class RemitMutation {
|
|
||||||
@PrimaryGeneratedColumn("uuid")
|
|
||||||
id: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
type: "uuid",
|
|
||||||
default: () => "uuid_generate_v4()",
|
|
||||||
})
|
|
||||||
refId: string;
|
|
||||||
|
|
||||||
@ManyToOne(() => RemitPartner, { onDelete: "CASCADE" })
|
|
||||||
@JoinTable()
|
|
||||||
partner: RemitPartner;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
type: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
amount: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
status: string;
|
|
||||||
|
|
||||||
@Column()
|
|
||||||
@CreateDateColumn()
|
|
||||||
created_at: Date;
|
|
||||||
|
|
||||||
@Column({ nullable: true })
|
|
||||||
@UpdateDateColumn()
|
|
||||||
updated_at: Date;
|
|
||||||
|
|
||||||
@Column({ nullable: true })
|
|
||||||
@DeleteDateColumn()
|
|
||||||
deleted_at: Date;
|
|
||||||
}
|
|
||||||
45
src/entity/remit_partner_accounts.ts
Normal file
45
src/entity/remit_partner_accounts.ts
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
import { Column, CreateDateColumn, DeleteDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
|
||||||
|
import { RemitPartner } from "./remit_partners";
|
||||||
|
|
||||||
|
@Entity("remit_partner_accounts", { schema: "remits" })
|
||||||
|
export class RemitPartnerAccounts {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitPartner, { onDelete: "RESTRICT" })
|
||||||
|
@JoinColumn()
|
||||||
|
partner: RemitPartner;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
number: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
holder: string;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
45
src/entity/remit_partner_apis.ts
Normal file
45
src/entity/remit_partner_apis.ts
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
import { Column, CreateDateColumn, DeleteDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
|
||||||
|
import { RemitPartner } from "./remit_partners";
|
||||||
|
|
||||||
|
@Entity("remit_partner_apis", { schema: "remits" })
|
||||||
|
export class RemitPartnerApis {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitPartner, { onDelete: "RESTRICT" })
|
||||||
|
@JoinColumn()
|
||||||
|
partner: RemitPartner;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
consumer_key: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
consumer_secret: string;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
46
src/entity/remit_partner_documents.ts
Normal file
46
src/entity/remit_partner_documents.ts
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
import { Column, CreateDateColumn, DeleteDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
|
||||||
|
import { RemitPartner } from "./remit_partners";
|
||||||
|
import { RemitDocumentType } from "../types/remit";
|
||||||
|
|
||||||
|
@Entity("remit_partner_documents", { schema: "remits" })
|
||||||
|
export class RemitPartnerDocument {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitPartner, { onDelete: "RESTRICT" })
|
||||||
|
@JoinColumn()
|
||||||
|
partner: RemitPartner;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
type: RemitDocumentType;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
file: string;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
@ -1,9 +1,10 @@
|
|||||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne, JoinTable } from "typeorm";
|
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne, JoinTable } from "typeorm";
|
||||||
import { Status } from "../types/status";
|
import { Status } from "../types/status";
|
||||||
import { RemitPartner } from "./remit_partners";
|
import { RemitPartner } from "./remit_partners";
|
||||||
|
import { RemitPartnerFeeType } from "../types/remit";
|
||||||
|
|
||||||
@Entity("remit_partner_transactions", { schema: "remits" })
|
@Entity("remit_partner_fees", { schema: "remits" })
|
||||||
export class RemitPartnerTransaction {
|
export class RemitPartnerFee {
|
||||||
@PrimaryGeneratedColumn("uuid")
|
@PrimaryGeneratedColumn("uuid")
|
||||||
id: string;
|
id: string;
|
||||||
|
|
||||||
@ -27,41 +28,33 @@ export class RemitPartnerTransaction {
|
|||||||
nullable: true,
|
nullable: true,
|
||||||
length: 256,
|
length: 256,
|
||||||
})
|
})
|
||||||
type: string;
|
type: RemitPartnerFeeType;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
length: 256,
|
type: 'float8',
|
||||||
|
default: 0
|
||||||
})
|
})
|
||||||
value: string;
|
amount: Number;
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
length: 64,
|
|
||||||
})
|
|
||||||
status: Status;
|
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
created_at: Date;
|
created_at: Date;
|
||||||
|
|
||||||
@Column({
|
@Column({ nullable: true, length: 256, })
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
created_by: string;
|
created_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@UpdateDateColumn()
|
@UpdateDateColumn()
|
||||||
updated_at: Date;
|
updated_at: Date;
|
||||||
|
|
||||||
@Column({
|
@Column({ nullable: true, length: 256 })
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
updated_by: string;
|
updated_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@DeleteDateColumn()
|
@DeleteDateColumn()
|
||||||
deleted_at: Date;
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
}
|
}
|
||||||
112
src/entity/remit_partner_owners.ts
Normal file
112
src/entity/remit_partner_owners.ts
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
import { Column, CreateDateColumn, DeleteDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
|
||||||
|
import { RemitGender, RemitPartnerStatus, RemitPartnerType } from "../types/remit";
|
||||||
|
import { Administrativu } from "./administrativu";
|
||||||
|
import { Aldeia } from "./aldeia";
|
||||||
|
import { District } from "./district";
|
||||||
|
import { Munisipo } from "./munisipo";
|
||||||
|
import { RemitConfigBusinessType } from "./remit_config_business_types";
|
||||||
|
import { RemitConfigSourceIncome } from "./remit_config_source_incomes";
|
||||||
|
import { Suco } from "./suco";
|
||||||
|
import { RemitPartner } from "./remit_partners";
|
||||||
|
import { RemitConfigNationalities } from "./remit_config_nationalities";
|
||||||
|
import { RemitBeneficial } from "./remit_beneficials";
|
||||||
|
import { RemitMunisipo } from "./remit_munisipos";
|
||||||
|
import { RemitAdministrativu } from "./remit_administrativus";
|
||||||
|
import { RemitSuco } from "./remit_sucos";
|
||||||
|
import { RemitAldeia } from "./remit_aldeias";
|
||||||
|
|
||||||
|
@Entity("remit_partner_owners", { schema: "remits" })
|
||||||
|
export class RemitPartnerOwners {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitPartner, { onDelete: "RESTRICT" })
|
||||||
|
@JoinColumn()
|
||||||
|
partner: RemitPartner;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
gender: RemitGender;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
birth_place: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
})
|
||||||
|
birth_date: Date;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
phone: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
email: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
address: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitMunisipo, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
munisipo: RemitMunisipo
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitAdministrativu, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
administrativu: RemitAdministrativu
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitSuco, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
suco: RemitSuco
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitAldeia, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
aldeia: RemitAldeia
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitConfigNationalities, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
nationality: RemitConfigNationalities;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitConfigSourceIncome, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
source_income: RemitConfigSourceIncome;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
@ -60,14 +60,23 @@ export class RemitPartnerUser {
|
|||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
created_at: Date;
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@UpdateDateColumn()
|
@UpdateDateColumn()
|
||||||
updated_at: Date;
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@DeleteDateColumn()
|
@DeleteDateColumn()
|
||||||
deleted_at: Date;
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
|
||||||
hashPassword() {
|
hashPassword() {
|
||||||
this.password = bcrypt.hashSync(this.password, 8);
|
this.password = bcrypt.hashSync(this.password, 8);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,4 +1,17 @@
|
|||||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn } from "typeorm";
|
import { Column, CreateDateColumn, DeleteDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
|
||||||
|
import { RemitPartnerStatus, RemitPartnerType } from "../types/remit";
|
||||||
|
import { Administrativu } from "./administrativu";
|
||||||
|
import { Aldeia } from "./aldeia";
|
||||||
|
import { District } from "./district";
|
||||||
|
import { Munisipo } from "./munisipo";
|
||||||
|
import { RemitConfigBusinessType } from "./remit_config_business_types";
|
||||||
|
import { RemitConfigSourceIncome } from "./remit_config_source_incomes";
|
||||||
|
import { Suco } from "./suco";
|
||||||
|
import { RemitBeneficial } from "./remit_beneficials";
|
||||||
|
import { RemitMunisipo } from "./remit_munisipos";
|
||||||
|
import { RemitAdministrativu } from "./remit_administrativus";
|
||||||
|
import { RemitSuco } from "./remit_sucos";
|
||||||
|
import { RemitAldeia } from "./remit_aldeias";
|
||||||
|
|
||||||
@Entity("remit_partners", { schema: "remits" })
|
@Entity("remit_partners", { schema: "remits" })
|
||||||
export class RemitPartner {
|
export class RemitPartner {
|
||||||
@ -12,6 +25,12 @@ export class RemitPartner {
|
|||||||
})
|
})
|
||||||
code: string;
|
code: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: false,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
type: RemitPartnerType;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: false,
|
nullable: false,
|
||||||
unique: false,
|
unique: false,
|
||||||
@ -39,165 +58,61 @@ export class RemitPartner {
|
|||||||
})
|
})
|
||||||
address: string;
|
address: string;
|
||||||
|
|
||||||
@Column({
|
@ManyToOne(() => RemitMunisipo, { onDelete: "NO ACTION" })
|
||||||
nullable: false,
|
@JoinColumn()
|
||||||
length: 4096,
|
munisipo: RemitMunisipo
|
||||||
})
|
|
||||||
type: string;
|
|
||||||
|
|
||||||
@Column({
|
@ManyToOne(() => RemitAdministrativu, { onDelete: "NO ACTION" })
|
||||||
nullable: false,
|
@JoinColumn()
|
||||||
unique: false,
|
administrativu: RemitAdministrativu
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
municipio_id: string;
|
|
||||||
|
|
||||||
@Column({
|
@ManyToOne(() => RemitSuco, { onDelete: "NO ACTION" })
|
||||||
nullable: false,
|
@JoinColumn()
|
||||||
unique: false,
|
suco: RemitSuco
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
municipio_name: string;
|
|
||||||
|
|
||||||
@Column({
|
@ManyToOne(() => RemitAldeia, { onDelete: "NO ACTION" })
|
||||||
nullable: false,
|
@JoinColumn()
|
||||||
unique: false,
|
aldeia: RemitAldeia
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
posto_adm_id: string;
|
|
||||||
|
|
||||||
@Column({
|
@ManyToOne(() => RemitConfigBusinessType, { onDelete: "NO ACTION" })
|
||||||
nullable: false,
|
@JoinColumn()
|
||||||
unique: false,
|
business_type: RemitConfigBusinessType;
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
posto_adm_name: string;
|
|
||||||
|
|
||||||
@Column({
|
@ManyToOne(() => RemitConfigSourceIncome, { onDelete: "NO ACTION" })
|
||||||
nullable: false,
|
@JoinColumn()
|
||||||
unique: false,
|
source_income: RemitConfigSourceIncome;
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
suco_id: string;
|
|
||||||
|
|
||||||
@Column({
|
@ManyToOne(() => RemitBeneficial, { onDelete: "NO ACTION" })
|
||||||
nullable: false,
|
@JoinColumn()
|
||||||
unique: false,
|
benefecial: RemitBeneficial;
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
suco_name: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
unique: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
aldeia_id: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
unique: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
aldeia_name: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
unique: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
document_type: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
unique: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
document_number: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
unique: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
document_file: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
unique: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
account_number_tl: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
unique: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
account_name_tl: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
unique: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
pin: string;
|
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: false,
|
nullable: false,
|
||||||
length: 64,
|
length: 64,
|
||||||
})
|
})
|
||||||
status: String;
|
status: RemitPartnerStatus;
|
||||||
|
|
||||||
@Column({
|
@Column({ nullable: true, length: 256, })
|
||||||
nullable: true,
|
approved_by: string;
|
||||||
length: 64,
|
|
||||||
})
|
|
||||||
balance: String;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
})
|
|
||||||
vostro_idr: String;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
})
|
|
||||||
vostro_usd: String;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
})
|
|
||||||
qlola_usr: String;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
})
|
|
||||||
qlola_pwd: String;
|
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
created_at: Date;
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@UpdateDateColumn()
|
@UpdateDateColumn()
|
||||||
updated_at: Date;
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
@DeleteDateColumn()
|
@DeleteDateColumn()
|
||||||
deleted_at: Date;
|
deleted_at: Date;
|
||||||
|
|
||||||
@Column({ type: "timestamp", nullable: true })
|
@Column({ nullable: true, length: 256 })
|
||||||
finalized_at: Date;
|
deleted_by: string;
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
unique: false,
|
|
||||||
})
|
|
||||||
finalized_by: string;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,69 +0,0 @@
|
|||||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne } from "typeorm";
|
|
||||||
|
|
||||||
import { Status } from "../types/status";
|
|
||||||
|
|
||||||
@Entity("remit_region", { schema: "remits" })
|
|
||||||
export class RemitRegion {
|
|
||||||
@PrimaryGeneratedColumn("uuid")
|
|
||||||
id: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
type: "uuid",
|
|
||||||
default: () => "uuid_generate_v4()",
|
|
||||||
})
|
|
||||||
municipioId: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
municipio_name: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
type: "uuid",
|
|
||||||
default: () => "uuid_generate_v4()",
|
|
||||||
})
|
|
||||||
postoId: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
posto_name: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
type: "uuid",
|
|
||||||
default: () => "uuid_generate_v4()",
|
|
||||||
})
|
|
||||||
sucoId: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
suco_name: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
type: "uuid",
|
|
||||||
default: () => "uuid_generate_v4()",
|
|
||||||
})
|
|
||||||
aldeiaId: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
aldeia_name: string;
|
|
||||||
|
|
||||||
@Column()
|
|
||||||
@CreateDateColumn()
|
|
||||||
created_at: Date;
|
|
||||||
|
|
||||||
@Column({ nullable: true })
|
|
||||||
@UpdateDateColumn()
|
|
||||||
updated_at: Date;
|
|
||||||
|
|
||||||
@Column({ nullable: true })
|
|
||||||
@DeleteDateColumn()
|
|
||||||
deleted_at: Date;
|
|
||||||
}
|
|
||||||
152
src/entity/remit_senders.ts
Normal file
152
src/entity/remit_senders.ts
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
import { Column, CreateDateColumn, DeleteDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
|
||||||
|
import { RemitPartner } from "./remit_partners";
|
||||||
|
import { District } from "./district";
|
||||||
|
import { Munisipo } from "./munisipo";
|
||||||
|
import { Administrativu } from "./administrativu";
|
||||||
|
import { Suco } from "./suco";
|
||||||
|
import { Aldeia } from "./aldeia";
|
||||||
|
import { RemitConfigNationalities } from "./remit_config_nationalities";
|
||||||
|
import { RemitConfigOccupation } from "./remit_config_occupations";
|
||||||
|
import { RemitGender, RemitIdentityType, RemitSenderType } from "../types/remit";
|
||||||
|
import { RemitConfigSourceIncome } from "./remit_config_source_incomes";
|
||||||
|
import { RemitBeneficial } from "./remit_beneficials";
|
||||||
|
import { RemitMunisipo } from "./remit_munisipos";
|
||||||
|
import { RemitAdministrativu } from "./remit_administrativus";
|
||||||
|
import { RemitSuco } from "./remit_sucos";
|
||||||
|
import { RemitAldeia } from "./remit_aldeias";
|
||||||
|
|
||||||
|
@Entity("remit_senders", { schema: "remits" })
|
||||||
|
export class RemitSender {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
type: RemitSenderType;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
account_number: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
account_holder: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
gender: RemitGender;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
birth_place: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
})
|
||||||
|
birth_date: Date;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
phone: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
email: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitConfigNationalities, { onDelete: "NO ACTION", nullable: true })
|
||||||
|
@JoinColumn()
|
||||||
|
nationality: RemitConfigNationalities;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
address: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitMunisipo, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
munisipo: RemitMunisipo
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitAdministrativu, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
administrativu: RemitAdministrativu
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitSuco, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
suco: RemitSuco
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitAldeia, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
aldeia: RemitAldeia
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitConfigNationalities, { onDelete: "NO ACTION", nullable: true })
|
||||||
|
@JoinColumn()
|
||||||
|
country: RemitConfigNationalities;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitConfigOccupation, { onDelete: "NO ACTION", nullable: true })
|
||||||
|
@JoinColumn()
|
||||||
|
occupation: RemitConfigOccupation;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitConfigSourceIncome, { onDelete: "NO ACTION", nullable: true })
|
||||||
|
@JoinColumn()
|
||||||
|
source_income: RemitConfigSourceIncome;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
identity_type: RemitIdentityType;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
identity_number: String;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
identity_file: String;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
41
src/entity/remit_sucos.ts
Normal file
41
src/entity/remit_sucos.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, ManyToOne, JoinColumn } from "typeorm";
|
||||||
|
import { Status } from "../types/status";
|
||||||
|
import { RemitMunisipo } from "./remit_munisipos";
|
||||||
|
import { RemitAdministrativu } from "./remit_administrativus";
|
||||||
|
|
||||||
|
@Entity("remit_sucos", { schema: "remits" })
|
||||||
|
export class RemitSuco {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitAdministrativu, { onDelete: "NO ACTION" })
|
||||||
|
@JoinColumn()
|
||||||
|
administrativu: RemitAdministrativu
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
@ -1,141 +0,0 @@
|
|||||||
import bcrypt from "bcryptjs";
|
|
||||||
import { Status } from "../types/status";
|
|
||||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, OneToOne, JoinColumn, ManyToOne, OneToMany, ManyToMany, JoinTable } from "typeorm";
|
|
||||||
import { RemitPartner } from "./remit_partners";
|
|
||||||
import { ApprovalStatus } from "../enum/approvalStatus";
|
|
||||||
|
|
||||||
@Entity("remit_transfer", { schema: "remits" })
|
|
||||||
export class RemitTransfer {
|
|
||||||
@PrimaryGeneratedColumn("uuid")
|
|
||||||
id: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
unique: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
ref_number: string;
|
|
||||||
|
|
||||||
@ManyToOne(() => RemitPartner, { onDelete: "CASCADE" })
|
|
||||||
@JoinTable()
|
|
||||||
partner: RemitPartner;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
unique: false,
|
|
||||||
})
|
|
||||||
bank_name: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
unique: false,
|
|
||||||
})
|
|
||||||
account_number: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
unique: false,
|
|
||||||
})
|
|
||||||
account_name: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
unique: false,
|
|
||||||
})
|
|
||||||
amount: string;
|
|
||||||
|
|
||||||
// new field
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
unique: false,
|
|
||||||
})
|
|
||||||
sender_name: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
unique: false,
|
|
||||||
})
|
|
||||||
sender_id_type: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
unique: false,
|
|
||||||
})
|
|
||||||
sender_id_number: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
type: "text",
|
|
||||||
unique: false,
|
|
||||||
})
|
|
||||||
sender_id_file: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
unique: false,
|
|
||||||
})
|
|
||||||
sender_country: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
length: 64,
|
|
||||||
})
|
|
||||||
status: string;
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
})
|
|
||||||
transaction_fee: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
})
|
|
||||||
allocation_bri_value: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
})
|
|
||||||
allocation_partner_value: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
length: 64,
|
|
||||||
default: "N",
|
|
||||||
})
|
|
||||||
beneficiary: Status;
|
|
||||||
|
|
||||||
@Column()
|
|
||||||
@CreateDateColumn()
|
|
||||||
created_at: Date;
|
|
||||||
|
|
||||||
@Column({ type: "timestamp", nullable: true })
|
|
||||||
finalized_at: Date;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
unique: false,
|
|
||||||
})
|
|
||||||
finalized_by: string;
|
|
||||||
|
|
||||||
@Column({ nullable: true })
|
|
||||||
approved_at: Date;
|
|
||||||
|
|
||||||
@Column({ nullable: true })
|
|
||||||
@UpdateDateColumn()
|
|
||||||
updated_at: Date;
|
|
||||||
|
|
||||||
@Column({ nullable: true })
|
|
||||||
@DeleteDateColumn()
|
|
||||||
deleted_at: Date;
|
|
||||||
}
|
|
||||||
@ -1,54 +0,0 @@
|
|||||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, ManyToOne, JoinTable } from "typeorm";
|
|
||||||
import { RemitPartner } from "./remit_partners";
|
|
||||||
|
|
||||||
@Entity("remit_topup", { schema: "remits" })
|
|
||||||
export class RemitTopup {
|
|
||||||
@PrimaryGeneratedColumn("uuid")
|
|
||||||
id: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
unique: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
ref_number: string;
|
|
||||||
|
|
||||||
@ManyToOne(() => RemitPartner, { onDelete: "CASCADE" })
|
|
||||||
@JoinTable()
|
|
||||||
partner: RemitPartner;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 64,
|
|
||||||
unique: false,
|
|
||||||
})
|
|
||||||
amount: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: false,
|
|
||||||
length: 64,
|
|
||||||
})
|
|
||||||
status: string;
|
|
||||||
|
|
||||||
@Column({ type: "timestamp", nullable: true })
|
|
||||||
finalized_at: Date;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
unique: false,
|
|
||||||
})
|
|
||||||
finalized_by: string;
|
|
||||||
|
|
||||||
@Column()
|
|
||||||
@CreateDateColumn()
|
|
||||||
created_at: Date;
|
|
||||||
|
|
||||||
@Column({ nullable: true })
|
|
||||||
@UpdateDateColumn()
|
|
||||||
updated_at: Date;
|
|
||||||
|
|
||||||
@Column({ nullable: true })
|
|
||||||
@DeleteDateColumn()
|
|
||||||
deleted_at: Date;
|
|
||||||
}
|
|
||||||
100
src/entity/remit_transactions.ts
Normal file
100
src/entity/remit_transactions.ts
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
import bcrypt from "bcryptjs";
|
||||||
|
import { Status } from "../types/status";
|
||||||
|
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, OneToOne, JoinColumn, ManyToOne, OneToMany, ManyToMany, JoinTable } from "typeorm";
|
||||||
|
import { RemitPartner } from "./remit_partners";
|
||||||
|
import { ApprovalStatus } from "../enum/approvalStatus";
|
||||||
|
import { RemitSender } from "./remit_senders";
|
||||||
|
import { RemitBeneficiary } from "./remit_beneficiaries";
|
||||||
|
import { RemitConfigPurpose } from "./remit_config_purposes";
|
||||||
|
import { RemitTransactionCurrencyType, RemitTransactionStatus } from "../types/remit";
|
||||||
|
import { RemitBeneficial } from "./remit_beneficials";
|
||||||
|
|
||||||
|
@Entity("remit_transactions", { schema: "remits" })
|
||||||
|
export class RemitTransaction {
|
||||||
|
@PrimaryGeneratedColumn("uuid")
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: false,
|
||||||
|
unique: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
code: string;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitPartner, { onDelete: "RESTRICT" })
|
||||||
|
@JoinTable()
|
||||||
|
partner: RemitPartner;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitSender, { onDelete: "RESTRICT" })
|
||||||
|
@JoinTable()
|
||||||
|
sender: RemitSender;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitBeneficial, { onDelete: "NO ACTION", nullable: true })
|
||||||
|
@JoinColumn()
|
||||||
|
benefecial: RemitBeneficial;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitBeneficiary, { onDelete: "RESTRICT" })
|
||||||
|
@JoinTable()
|
||||||
|
beneficiary: RemitBeneficiary;
|
||||||
|
|
||||||
|
@ManyToOne(() => RemitConfigPurpose, { onDelete: "RESTRICT" })
|
||||||
|
@JoinTable()
|
||||||
|
purpose: RemitConfigPurpose;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 5,
|
||||||
|
})
|
||||||
|
currency: RemitTransactionCurrencyType;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: false,
|
||||||
|
type: 'float8',
|
||||||
|
})
|
||||||
|
amount: Number;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
selfie_file: String;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 4096,
|
||||||
|
})
|
||||||
|
underlying_file: String;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 256,
|
||||||
|
})
|
||||||
|
status: RemitTransactionStatus;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
approved_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
approved_by: string;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
@CreateDateColumn()
|
||||||
|
created_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256, })
|
||||||
|
created_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@UpdateDateColumn()
|
||||||
|
updated_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
updated_by: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
@DeleteDateColumn()
|
||||||
|
deleted_at: Date;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
deleted_by: string;
|
||||||
|
}
|
||||||
94
src/index.ts
94
src/index.ts
@ -84,19 +84,40 @@ import { AssetInventoryHistory } from "./entity/asset_inventory_histories";
|
|||||||
import { AssetInventoryDepreciation } from "./entity/asset_inventory_depreciations";
|
import { AssetInventoryDepreciation } from "./entity/asset_inventory_depreciations";
|
||||||
import { AssetInventoryDepreciationLog } from "./entity/asset_inventory_depreciation_logs";
|
import { AssetInventoryDepreciationLog } from "./entity/asset_inventory_depreciation_logs";
|
||||||
|
|
||||||
import { RemitOtp } from "./entity/remit_otp";
|
import { RemitMunisipo } from "./entity/remit_munisipos";
|
||||||
|
import { RemitAdministrativu } from "./entity/remit_administrativus";
|
||||||
|
import { RemitSuco } from "./entity/remit_sucos";
|
||||||
|
import { RemitAldeia } from "./entity/remit_aldeias";
|
||||||
|
import { RemitBeneficial } from "./entity/remit_beneficials";
|
||||||
|
import { RemitBeneficiary } from "./entity/remit_beneficiaries";
|
||||||
|
import { RemitConfigBank } from "./entity/remit_config_banks";
|
||||||
|
import { RemitConfigBusinessType } from "./entity/remit_config_business_types";
|
||||||
|
import { RemitConfigKurs } from "./entity/remit_config_kurs";
|
||||||
|
import { RemitConfigNationalities } from "./entity/remit_config_nationalities";
|
||||||
|
import { RemitConfigOccupation } from "./entity/remit_config_occupations";
|
||||||
|
import { RemitConfigPurpose } from "./entity/remit_config_purposes";
|
||||||
|
import { RemitConfigSourceIncome } from "./entity/remit_config_source_incomes";
|
||||||
|
import { RemitPartnerAccounts } from "./entity/remit_partner_accounts";
|
||||||
|
import { RemitPartnerApis } from "./entity/remit_partner_apis";
|
||||||
|
import { RemitPartnerDocument } from "./entity/remit_partner_documents";
|
||||||
|
import { RemitPartnerFee } from "./entity/remit_partner_fees";
|
||||||
|
import { RemitPartnerOwners } from "./entity/remit_partner_owners";
|
||||||
import { RemitPartnerUser } from "./entity/remit_partner_users";
|
import { RemitPartnerUser } from "./entity/remit_partner_users";
|
||||||
import { RemitPartner } from "./entity/remit_partners";
|
import { RemitPartner } from "./entity/remit_partners";
|
||||||
import { RemitPartnerTransaction } from "./entity/remit_partner_transactions";
|
import { RemitSender } from "./entity/remit_senders";
|
||||||
import { RemitPartnerAllocation } from "./entity/remit_partner_allocations";
|
import { RemitTransaction } from "./entity/remit_transactions";
|
||||||
import { RemitRegion } from "./entity/remit_region";
|
import {
|
||||||
import { RemitTransfer } from "./entity/remit_tansfer";
|
RemitPartnerType,
|
||||||
import { RemitTopup } from "./entity/remit_topup";
|
RemitPartnerStatus,
|
||||||
import { RemitMutation } from "./entity/remit_mutation";
|
RemitRiskLevel,
|
||||||
import { RemitBank } from "./entity/remit_bank";
|
RemitGender,
|
||||||
import { RemitConfigTransaction } from "./entity/remit_config_transactions";
|
RemitIdentityType,
|
||||||
import { RemitConfigAllocation } from "./entity/remit_config_allocations";
|
RemitDocumentType,
|
||||||
import { RemitConfigKurs } from "./entity/remit_config_kurs";
|
RemitPartnerFeeType,
|
||||||
|
RemitSenderType,
|
||||||
|
RemitTransactionStatus,
|
||||||
|
RemitTransactionCurrencyType,
|
||||||
|
} from "./types/remit"
|
||||||
|
|
||||||
import { BrizziBatchStatus, BrizziCardStatus, BrizziHistoryActvity, BrizziHistoryType, BrizziHistoryRemarks } from "./types/brizzi";
|
import { BrizziBatchStatus, BrizziCardStatus, BrizziHistoryActvity, BrizziHistoryType, BrizziHistoryRemarks } from "./types/brizzi";
|
||||||
import { BrizziBatch } from "./entity/brizzi_batchs";
|
import { BrizziBatch } from "./entity/brizzi_batchs";
|
||||||
@ -208,11 +229,13 @@ export {
|
|||||||
Application,
|
Application,
|
||||||
TellerMutation,
|
TellerMutation,
|
||||||
LogHikvision,
|
LogHikvision,
|
||||||
|
|
||||||
BrivaCompany,
|
BrivaCompany,
|
||||||
BrivaCompanyUser,
|
BrivaCompanyUser,
|
||||||
BrivaCompanyUserRefreshToken,
|
BrivaCompanyUserRefreshToken,
|
||||||
BrivaAccount,
|
BrivaAccount,
|
||||||
BrivaTransaction,
|
BrivaTransaction,
|
||||||
|
|
||||||
AssetSupplier,
|
AssetSupplier,
|
||||||
AssetFixedClassification,
|
AssetFixedClassification,
|
||||||
AssetFixedType,
|
AssetFixedType,
|
||||||
@ -235,15 +258,7 @@ export {
|
|||||||
AssetFixedTypeType,
|
AssetFixedTypeType,
|
||||||
AssetInventoryDepreciation,
|
AssetInventoryDepreciation,
|
||||||
AssetInventoryDepreciationLog,
|
AssetInventoryDepreciationLog,
|
||||||
RemitOtp,
|
|
||||||
RemitPartnerUser,
|
|
||||||
RemitPartner,
|
|
||||||
RemitPartnerTransaction,
|
|
||||||
RemitPartnerAllocation,
|
|
||||||
RemitRegion,
|
|
||||||
RemitTransfer,
|
|
||||||
RemitTopup,
|
|
||||||
RemitMutation,
|
|
||||||
BrizziBatchStatus,
|
BrizziBatchStatus,
|
||||||
BrizziCardStatus,
|
BrizziCardStatus,
|
||||||
BrizziHistoryActvity,
|
BrizziHistoryActvity,
|
||||||
@ -253,6 +268,7 @@ export {
|
|||||||
BrizziCard,
|
BrizziCard,
|
||||||
BrizziHistory,
|
BrizziHistory,
|
||||||
BrizziOldCard,
|
BrizziOldCard,
|
||||||
|
|
||||||
BrilinkMerchantStatus,
|
BrilinkMerchantStatus,
|
||||||
BrilinkTerminalType,
|
BrilinkTerminalType,
|
||||||
BrilinkTerminalCondition,
|
BrilinkTerminalCondition,
|
||||||
@ -296,13 +312,43 @@ export {
|
|||||||
BrilinkDiscountStatus,
|
BrilinkDiscountStatus,
|
||||||
BrilinkDiscountType,
|
BrilinkDiscountType,
|
||||||
BrilinkDiscount,
|
BrilinkDiscount,
|
||||||
RemitBank,
|
|
||||||
RemitConfigTransaction,
|
|
||||||
RemitConfigAllocation,
|
|
||||||
RemitConfigKurs,
|
|
||||||
BriapiConfig,
|
BriapiConfig,
|
||||||
BriapiLog,
|
BriapiLog,
|
||||||
BriapiAppendixBank,
|
BriapiAppendixBank,
|
||||||
BriapiAppendixWallet,
|
BriapiAppendixWallet,
|
||||||
BriapiAppendixId,
|
BriapiAppendixId,
|
||||||
|
|
||||||
|
RemitMunisipo,
|
||||||
|
RemitAdministrativu,
|
||||||
|
RemitSuco,
|
||||||
|
RemitAldeia,
|
||||||
|
RemitPartnerType,
|
||||||
|
RemitPartnerStatus,
|
||||||
|
RemitRiskLevel,
|
||||||
|
RemitGender,
|
||||||
|
RemitIdentityType,
|
||||||
|
RemitDocumentType,
|
||||||
|
RemitPartnerFeeType,
|
||||||
|
RemitSenderType,
|
||||||
|
RemitTransactionStatus,
|
||||||
|
RemitTransactionCurrencyType,
|
||||||
|
RemitBeneficial,
|
||||||
|
RemitBeneficiary,
|
||||||
|
RemitConfigBank,
|
||||||
|
RemitConfigBusinessType,
|
||||||
|
RemitConfigKurs,
|
||||||
|
RemitConfigNationalities,
|
||||||
|
RemitConfigOccupation,
|
||||||
|
RemitConfigPurpose,
|
||||||
|
RemitConfigSourceIncome,
|
||||||
|
RemitPartnerAccounts,
|
||||||
|
RemitPartnerApis,
|
||||||
|
RemitPartnerDocument,
|
||||||
|
RemitPartnerFee,
|
||||||
|
RemitPartnerOwners,
|
||||||
|
RemitPartnerUser,
|
||||||
|
RemitPartner,
|
||||||
|
RemitSender,
|
||||||
|
RemitTransaction
|
||||||
};
|
};
|
||||||
|
|||||||
61
src/types/remit.ts
Normal file
61
src/types/remit.ts
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
export enum RemitPartnerType {
|
||||||
|
"personal" = "personal",
|
||||||
|
"company" = "company",
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum RemitPartnerStatus {
|
||||||
|
"pending" = "pending",
|
||||||
|
"approved" = "approved",
|
||||||
|
"rejected" = "rejected"
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum RemitRiskLevel {
|
||||||
|
"low" = "low",
|
||||||
|
"mid" = "mid",
|
||||||
|
"high" = "high"
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum RemitGender {
|
||||||
|
"man" = "man",
|
||||||
|
"female" = "female"
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum RemitIdentityType {
|
||||||
|
"electoral" = "electoral",
|
||||||
|
"bilhete de identidade" = "bi",
|
||||||
|
"passport" = "passport",
|
||||||
|
"citizen personal id" = "citizen_personal_id",
|
||||||
|
"driver_license" = "driver_license"
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum RemitDocumentType {
|
||||||
|
"electoral" = "electoral",
|
||||||
|
"bilhete de identidade" = "bi",
|
||||||
|
"passport" = "passport",
|
||||||
|
"certificado registo comercial" = "certificado_registo_comercial",
|
||||||
|
"licenca provisoria" = "licenca_provisoria",
|
||||||
|
"estatuto" = "estatuto"
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum RemitPartnerFeeType {
|
||||||
|
"percentage" = "percentage",
|
||||||
|
"fix" = "fix"
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum RemitSenderType {
|
||||||
|
"bri" = "bri",
|
||||||
|
"wic" = "wic"
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum RemitTransactionStatus {
|
||||||
|
"verify" = "verify",
|
||||||
|
"reject" = "reject",
|
||||||
|
"process" = "process",
|
||||||
|
"success" = "success",
|
||||||
|
"fail" = "fail",
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum RemitTransactionCurrencyType {
|
||||||
|
"rp" = "rp",
|
||||||
|
"usd" = "usd",
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user