listo
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
@@ -227,7 +227,6 @@ export class CarritoService {
|
||||
await this.caritoMotivoService.create(
|
||||
carrito,
|
||||
operador,
|
||||
attrs.activo,
|
||||
motivo,
|
||||
laboratorioMovil,
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user