mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-22 14:16:19 +00:00
la agricola arreglo su dataset! y no importar si hay un error
This commit is contained in:
parent
343c5d775c
commit
5c3d3f5085
1 changed files with 2 additions and 5 deletions
|
@ -161,16 +161,13 @@ async function importDataset(dir: string) {
|
||||||
// Alberdi S.A.
|
// Alberdi S.A.
|
||||||
file = file.replaceAll(";", "|");
|
file = file.replaceAll(";", "|");
|
||||||
}
|
}
|
||||||
if (
|
if (["30707429468", "30589621499"].includes(comercioCuit)) {
|
||||||
["33504047089", "30707429468", "30589621499"].includes(comercioCuit)
|
|
||||||
) {
|
|
||||||
// TODO: si tienen los valores, pero con otros nombres, por ejemplo
|
// TODO: si tienen los valores, pero con otros nombres, por ejemplo
|
||||||
// productos_precio_lista seria precio_unitario_bulto_por_unidad_venta_con_iva.
|
// productos_precio_lista seria precio_unitario_bulto_por_unidad_venta_con_iva.
|
||||||
// pero no quiero mentir, asi que por ahora no lo importo
|
// pero no quiero mentir, asi que por ahora no lo importo
|
||||||
console.error(
|
throw new Error(
|
||||||
`No voy a importar el dataset ${dir} porque el formato está mal. Pero se podría importar. Pero por ahora no lo voy a hacer. Véase https://gist.github.com/catdevnull/587d5c63c4bab11b9798861c917db93b`
|
`No voy a importar el dataset ${dir} porque el formato está mal. Pero se podría importar. Pero por ahora no lo voy a hacer. Véase https://gist.github.com/catdevnull/587d5c63c4bab11b9798861c917db93b`
|
||||||
);
|
);
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
console.time("parse");
|
console.time("parse");
|
||||||
|
|
Loading…
Reference in a new issue