refs #6291 validateTin #1836
Labels
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix#1836
Loading…
Reference in New Issue
No description provided.
Delete Branch "6291-comprobarDNI"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -26,0 +40,4 @@
const client = (await Self.findById(this.id, {
include: {relation: 'client'}}))?.client();
if (client) {
const countryCode = client.fi?.toLowerCase().substring(0, 2);
El nombre de la variable es correcto?
Porque lo llamas countryCode pero no usas referencias a country
Es como se hacia también en client, por continuar la misma dinámica
Entiendo, pero cuando creas un worker(pej), crea también el cliente y es en ese modelo donde se guardan los datos que usas en el worker, por eso digo, que siendo otro model a l mejor necesita otro nombre.
@ -26,0 +36,4 @@
};
const country = await Self.app.models.Country.findOne(filter);
const code = country ? country.code.toLowerCase() : null;
Creo que se puede simplificar
const code = country?.code?.toLowerCase() ?? null;
Y después de esto, quizás emitiría un error
WIP: refs #6291 validateTinto refs #6291 validateTin