-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProducto.h
68 lines (48 loc) · 1.67 KB
/
Producto.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#pragma once
#include <string>
#include <cstring>
#include "Archivo.h"
#include "Stock.h"
#include "ResponseDto.h"
class Producto
{
public:
Producto();
int getId();
float getPrecioCosto();
float getPrecioVenta();
int getCantidad();
std::string getNombreProducto();
std::string getDescripcionProducto();
bool getEstado();
void setId(int id);
void setPrecioCosto(float pCosto);
void setPrecioVenta(float pVenta);
void setCantidad(int cantidad);
void setNombreProducto(std::string nombre);
void setDescripcionProducto(std::string descripcion);
void setEstado(bool estado);
Response <Producto> responseCargarProducto();
Response<Producto> modificarOdarBajaProducto(bool modificar = true);
Producto darBajaProducto(int id);
void verProductoAmodificar(Response <Producto> responseProducto);
Producto cargarProductoAmodificar(bool inventario = false);
void mostrarProducto();
Producto cargarProductos(bool inventario = false);
void mostrarProductos();
Producto listarYSeleccionarProductoVenta(float margenUtilidad);
Producto listarYSeleccionarProductoCompra();
void tablaProductosContenido(vector<Producto> lista, vector<int> columnas, int anchoTabla);
/// 23 - 11
Response <Producto> opcionModificar(Response <Producto> &response);
Response <Producto> modificarCampos(Response <Producto>& response);
void headerProductoAmodificar(Response <Producto> response);
private:
int _id;
float _precioCosto, _precioVenta;
int _cantidad;
char _nombreProducto[30], _descripcionProducto[45];
bool _estado;
bool modificar = false;
bool inventario = false;
};