-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransaccion.cpp
101 lines (84 loc) · 1.68 KB
/
Transaccion.cpp
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#include "Transaccion.h"
#include "Caja.h"
Transaccion::Transaccion() {};
Transaccion::Transaccion(bool reporte) {
if (reporte) {
_id = 0;
_monto = 0;
_fecha = Fecha();
_tipoTransaccion = ' ';
_cantidadProductos = 0;
}
}
Transaccion::Transaccion(
float monto,
const char* usuario,
char tipo,
int cantidad
) {
Fecha fecha;
_monto = monto;
_tipoTransaccion = tipo;
std::strncpy(_usuario, usuario, sizeof(_usuario) - 1);
_fecha = fecha.now();
_cantidadProductos = cantidad;
};
void Transaccion::setId(int id) {
_id = id;
}
int Transaccion::getId() {
return _id;
}
void Transaccion::setMonto(float monto) {
_monto = monto;
}
float Transaccion::getMonto() {
return _monto;
}
void Transaccion::setFecha(Fecha fecha) {
_fecha = fecha;
}
Fecha Transaccion::getFecha() {
return _fecha;
}
void Transaccion::setUsuario(const char* usuario) {
std::strncpy(_usuario, usuario, sizeof(_usuario) - 1);
}
const char* Transaccion::getUsuario() {
return _usuario;
}
void Transaccion::setTipo(char tipo) {
_tipoTransaccion = tipo;
}
char Transaccion::getTipo() {
return _tipoTransaccion;
}
vector<Detalle> Transaccion::getDetalle() {
return _detalle;
}
void Transaccion::setDetalle(Detalle detalle) {
_detalle.push_back(detalle);
}
void Transaccion::setCantidad(int cantidad) {
_cantidadProductos = cantidad;
}
int Transaccion::getCantidad() {
return _cantidadProductos;
}
Response<Transaccion> Transaccion::crearNuevaTransaccion(
float monto,
const char* usuario,
char tipo,
int productoId,
int cantidad
){
Response<Transaccion> response;
/*Transaccion transaccion(
float monto,
const char* usuario,
char tipo,
int productoId,
int cantidad
);*/
return response;
}