-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinforme.html
231 lines (181 loc) · 8.01 KB
/
informe.html
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cotiza Fácil</title>
<link rel="icon" href="https://dsm01pap006files.storage.live.com/y4muPjvqeVbCJNWvseKcnuuuNERSrad-Sw5dGSauCna_5yGNbRZJTp2hFvinMmd3ROFmOKvUfQ-bJRZKvzQ6cLJuC2HfVfc16NkH1m9MqLbcOZE02h89q6hYiJtfDQBuLgvRQ_w8sVz505g6HBx2li3CsQ6CB20r_CdauhN-IUFSEsznBwrUf7blWr1umfaPBiC?width=450&height=345&cropmode=none">
<link rel="stylesheet" type="text/css" href="css/compras.css">
<link rel="stylesheet" type="text/css" href="css/main_elements.css">
</head>
<body>
<div class="container2">
<div id="btns_de_listas" class="container2" >
<button id="lista_materiales" class="main_buttons" onclick="window.location='inventario_actual.html'"">Inventario Actual</button>
<button id="lista_materiales" class="main_buttons" onclick="window.location='inventario_base.html'"">Inventario Base</button>
<button id="lista_materiales" class="main_buttons" style="background-color:hsl(24, 72%, 52%)">Informe</button>
</div>
</div>
<section class="container">
<h1>Ventas Totales</h1>
<h4 id="indicador_ventas"></h4>
<h1>Ganancias Totales</h1>
<h4 id="indicador_ganancias"></h4>
<h1>Valor de Inventario</h1>
<h4 id="indicador_inventario"></h4>
<canvas id="myChart" style="width:100%;max-width:600px"></canvas>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chartjs-plugin-datalabels/2.2.0/chartjs-plugin-datalabels.min.js" integrity="sha512-JPcRR8yFa8mmCsfrw4TNte1ZvF1e3+1SdGMslZvmrzDYxS69J7J49vkFL8u6u8PlPJK+H3voElBtUCzaXj+6ig==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script>
var xValues = ["Italy", "France", "Spain", "USA", "Argentina","Ladrillo"];
var yValues = [55, 49, 44, 24, 15,20];
var barColors = [
"#b91d47",
"#00aba9",
"#2b5797",
"#e8c3b9",
"#1e7145"
];
new Chart("myChart", {
type: "pie",
data: {
labels: xValues,
datasets: [{
backgroundColor: barColors,
data: yValues
}]
},
options: {
legend: {
display: false //This will do the task
},
tooltips: {
callbacks: {
label: function(tooltipItem, data) {
var dataset = data.datasets[tooltipItem.datasetIndex];
var total = dataset.data.reduce(function(previousValue, currentValue, currentIndex, array) {
return previousValue + currentValue;
});
var currentValue = dataset.data[tooltipItem.index];
var percentage = Math.floor(((currentValue/total) * 100)+0.5);
return data.labels[tooltipItem.index] + ": " + currentValue + " (" + percentage + "%)";
}
}
}
},
plugins: {
datalabels: {
display: true,
color: 'white',
formatter: function(value, context) {
return context.chart.data.labels[context.dataIndex];
}
}
}
})
</script>
<script type="module">
import {db} from "./js/firebase.js";
import {getDatabase,set, get, update, remove, ref, child}
from "https://www.gstatic.com/firebasejs/9.15.0/firebase-database.js"
const usuario = sessionStorage.getItem("usuario")
var indicador_ganancias = document.getElementById("indicador_ganancias")
var indicador_ventas = document.getElementById("indicador_ventas")
var indicador_inventario = document.getElementById("indicador_inventario")
function calculo_ganacias_datos(buys,sales){
let compras={}
let ventas={}
let total_compras={}
let total_ventas={}
let ganancia={}
let total_costo_venta={}
let inventario_actual={}
let inventario_actual_valor={}
var resumen_compras = 0
var resumen_ventas = 0
var resumen_ganancias = 0
function lista_compras(stock,num_compras,costo){
if (!compras[stock]) {
inventario_actual[stock]=0
total_compras[stock]=0
ganancia[stock]=0
total_costo_venta[stock]=0
inventario_actual_valor[stock]=0
compras[stock] = [] }
for(var i=0;i<num_compras;i++){
compras[stock].push(costo)
total_compras[stock]=total_compras[stock]+costo
resumen_compras = resumen_compras+costo
}
}
function lista_ventas(stock,num_ventas,precio){
if (!ventas[stock]) {
ventas[stock] = []
total_ventas[stock]=0
}
for(var i=0;i<num_ventas;i++){
ventas[stock].push(precio)
total_ventas[stock]=total_ventas[stock]+precio
resumen_ventas=resumen_ventas+precio
}
}
for(let i = 0; i < sales.length; i++){lista_ventas(sales[i].stock,sales[i].quantity,sales[i].price)}
for(let i = 0; i < buys.length; i++){lista_compras(buys[i].stock,buys[i].quantity,buys[i].price)}
console.log('commm')
console.log(compras)
console.log('ventt')
console.log(ventas)
for(let key in compras){
//console.log(ventas[key].length)
var num_ventas=0
if(!ventas[key]){num_ventas = 0}else{num_ventas=ventas[key].length}
inventario_actual[key]=compras[key].length-num_ventas
for(var i=0;i<Math.min(compras[key].length,num_ventas);i++){
ganancia[key]=ganancia[key]+ventas[key][i]-compras[key][i]
total_costo_venta[key]= total_costo_venta[key]+compras[key][i]
resumen_ganancias = resumen_ganancias + ventas[key][i]-compras[key][i]
}
if(inventario_actual[key]<=0){inventario_actual_valor[key]=0}else{inventario_actual_valor[key]=total_compras[key]-total_costo_venta[key]}
}
var resumen_costo_venta = resumen_ventas-resumen_ganancias
var resumen_inventario_actual_valor = resumen_compras - resumen_costo_venta
return({compras,ventas,inventario_actual,total_compras,total_ventas,ganancia,total_costo_venta,inventario_actual_valor, resumen_compras, resumen_ventas, resumen_ganancias, resumen_costo_venta, resumen_inventario_actual_valor})
}
function buys(fecha,precio,cantidad,producto){
this.date=fecha
this.price=precio
this.quantity=cantidad
this.stock=producto
}
get(ref(db, "ferreterias/"+usuario))
.then((snapshot)=>{
let l_compras = []
let l_ventas = []
snapshot.child("inventario_base/materiales").forEach((child_materiales) => {
l_compras.push( new buys(child_materiales.val().fecha,Number(child_materiales.val().precio),Number(child_materiales.val().cantidad),(child_materiales.val().material+child_materiales.val().marca)))
})
snapshot.child("compras").forEach((compras) => {
compras.child("materiales").forEach((child_materiales) => {
l_compras.push( new buys(child_materiales.val().fecha,Number(child_materiales.val().precio),Number(child_materiales.val().cantidad),(child_materiales.val().material+child_materiales.val().marca)))
})
})
snapshot.child("ventas").forEach((ventas) => {
ventas.child("materiales").forEach((child_materiales) => {
l_ventas.push( new buys(child_materiales.val().fecha,Number(child_materiales.val().precio),Number(child_materiales.val().cantidad),(child_materiales.val().material+child_materiales.val().marca)))
})
})
console.log('comprass')
console.log(l_compras)
console.log('ventas')
console.log(l_ventas)
let datos=calculo_ganacias_datos(l_compras,l_ventas)
console.log(datos)
indicador_ventas.innerHTML=datos.resumen_ventas
indicador_ganancias.innerHTML=datos.resumen_ganancias
indicador_inventario.innerHTML=datos.resumen_inventario_actual_valor
})
</script>
</body>
</html>