Commit 9be01bb197387e3760a602740826976be36bf50c

Authored by Marcelo Puebla
1 parent 6c28757f48
Exists in master and in 1 other branch validar_pve

Agregado campo para guardar el precio total.

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
src/app/wrappers/promocion.ts
1 import { Producto } from './producto'; 1 import { Producto } from './producto';
2 2
3 export interface Promocion { 3 export interface Promocion {
4 idPromo: number; 4 idPromo: number;
5 nombrePromo: string; 5 nombrePromo: string;
6 productos: Producto[]; 6 productos: Producto[];
7 sinonimos: boolean; 7 sinonimos: boolean;
8 sector: number, 8 sector: number,
9 codigo: number, 9 codigo: number,
10 precioTotal? : number,
10 } 11 }
11 12