feat(WorkerPDA): refs #5926 send to docuware #1617
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix-front#1617
Loading…
Reference in New Issue
No description provided.
Delete Branch "5926-signPdaPdf"
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?
@ -47,0 +119,4 @@
async function sendToTablet(rows) {
const promises = [];
for (const row of rows) {
Reemplazar por map
@ -47,0 +122,4 @@
for (const row of rows) {
promises.push(
(async () => {
await axios.post(`Docuwares/upload-pda-pdf`, {
un await pero luego un promises.all?
@ -47,0 +129,4 @@
})(),
);
}
await Promise.all(promises);
Promise.all will reject as soon as one of the Promises in the array rejects.
Promise.allSettled will never reject - it will resolve once all Promises in the array have either rejected or resolved.
1ª ✅
2ª 💣
3ª ❌, nunca se ejcutará
@ -47,0 +92,4 @@
const id = `${worker.value?.lastName} ${worker.value?.firstName}`;
const rows = tableRef.value.CrudModelRef.formData;
const promises = rows.map(async (row) => {
es correcto que esta funcion se ejecute 2 veces al cargar la tabla?
Parece que el @on-fetch se esta activando 2 veces con los mismos datos
@ -23,0 +48,4 @@
removeNewPDA();
});
it('download file', () => {
podemos enviar y descargar? Nos ahorramos un it, no?