-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompra.h
53 lines (34 loc) · 1.04 KB
/
Compra.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
#pragma once
#include "Transaccion.h"
#include "TransaccionDto.h"
#include "ResponseDto.h"
#include "Proveedor.h"
#include <vector>
#include "Producto.h"
#include "Stock.h"
#include "StockDto.h"
class Compra : public Transaccion
{
private:
int _id;
int _idProveedor;
char _tipo;
vector<string> _listaTemporalCarrito; //Array temporal para poder mostrar los productos del carrito.
public:
Compra();
void setId(int id);
void setIdProveedor(int idProv);
void setTipoTransaccion(char tipoTransaccion);
int getId();
int getIdProveedor();
char getTipoTransaccion();
void agregarADetalleCompra(Producto producto, int cantidad);
void mostrarCompras();
void mostrarProductosComprados();
bool realizarCompra(Sistema* sistema);
Response <TransaccionDto> registrarNuevaCompra (Sistema *sistema, InterfazUI interfaz, Response <Proveedor> prov, bool productoExistente);
void carritoDeCompra(bool compraRealizada, Producto &producto);
bool productoExistente();
int seleccionarCantidad();
Producto ingresarPrecioCosto(Producto& producto);
};