product.ts 498 B

123456789101112131415161718192021
  1. export class Product {
  2. company_id: number = 0;
  3. default_code: string = null;
  4. description: string = null;
  5. ean13: string = null;
  6. image_medium: string = null;
  7. image_small: string = null;
  8. name: string = null;
  9. list_price: number = 0;
  10. purchase_ok: boolean = true;
  11. qty_available: number = 0;
  12. rental: boolean = false;
  13. sale_ok: boolean = true;
  14. standard_price: number = 0;
  15. type: number = 0;
  16. doc_state: string = "created";
  17. constructor() {}
  18. }