123456789101112131415161718192021 |
- export class Product {
- company_id: number = 0;
- default_code: string = null;
- description: string = null;
- ean13: string = null;
- image_medium: string = null;
- image_small: string = null;
- name: string = null;
- list_price: number = 0;
- purchase_ok: boolean = true;
- qty_available: number = 0;
- rental: boolean = false;
- sale_ok: boolean = true;
- standard_price: number = 0;
- type: number = 0;
- doc_state: string = "created";
- constructor() {}
- }
|