This commit is contained in:
2023-01-11 13:18:20 -06:00
parent 061c0589d2
commit 5ceaf53583
3 changed files with 0 additions and 6 deletions
@@ -32,7 +32,6 @@ export class CarritoMotivoService {
create(
carrito: Carrito,
operador: Operador,
status: boolean,
motivo: string,
laboratorioMovil: boolean,
): Promise<CarritoMotivo> {
@@ -42,7 +41,6 @@ export class CarritoMotivoService {
fecha_creacion: moment().toDate(),
laboratorioMovil,
motivo,
status,
carrito,
operador,
}),
@@ -22,9 +22,6 @@ export class CarritoMotivo {
@Column({ type: String, nullable: false, length: 250 })
motivo: string;
@Column({ type: Boolean, nullable: false })
status: boolean;
@Column({ type: Number, nullable: true })
id_carrito: number;
-1
View File
@@ -227,7 +227,6 @@ export class CarritoService {
await this.caritoMotivoService.create(
carrito,
operador,
attrs.activo,
motivo,
laboratorioMovil,
);