feat(WorkerPDA): refs #5926 send to docuware #1617

Merged
alexm merged 10 commits from 5926-signPdaPdf into dev 2025-03-24 06:52:36 +00:00
Member
No description provided.
alexm added 1 commit 2025-03-21 09:38:05 +00:00
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details
ab697c951d
feat(WorkerPDA): refs #5926 send to docuware
alexm added 1 commit 2025-03-21 09:38:42 +00:00
gitea/salix-front/pipeline/pr-dev Something is wrong with the build of this commit Details
c182a68455
Merge branch 'dev' into 5926-signPdaPdf
alexm requested review from jsegarra 2025-03-21 09:38:53 +00:00
alexm added 2 commits 2025-03-21 10:15:58 +00:00
jsegarra requested changes 2025-03-21 10:27:11 +00:00
Dismissed
@ -47,0 +119,4 @@
async function sendToTablet(rows) {
const promises = [];
for (const row of rows) {
Member

Reemplazar por map

Reemplazar por map
alexm marked this conversation as resolved
@ -47,0 +122,4 @@
for (const row of rows) {
promises.push(
(async () => {
await axios.post(`Docuwares/upload-pda-pdf`, {
Member

un await pero luego un promises.all?

un await pero luego un promises.all?
alexm marked this conversation as resolved
@ -47,0 +129,4 @@
})(),
);
}
await Promise.all(promises);
Member

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.

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.
Member


💣
, nunca se ejcutará

1ª ✅ 2ª 💣 3ª ❌, nunca se ejcutará
alexm marked this conversation as resolved
alexm added 1 commit 2025-03-21 10:46:46 +00:00
alexm requested review from jsegarra 2025-03-21 10:46:56 +00:00
jsegarra requested changes 2025-03-21 11:07:47 +00:00
Dismissed
jsegarra reviewed 2025-03-21 11:16:52 +00:00
@ -47,0 +92,4 @@
const id = `${worker.value?.lastName} ${worker.value?.firstName}`;
const rows = tableRef.value.CrudModelRef.formData;
const promises = rows.map(async (row) => {
Member

es correcto que esta funcion se ejecute 2 veces al cargar la tabla?

es correcto que esta funcion se ejecute 2 veces al cargar la tabla?
Author
Member

Parece que el @on-fetch se esta activando 2 veces con los mismos datos

Parece que el @on-fetch se esta activando 2 veces con los mismos datos
alexm marked this conversation as resolved
alexm added 1 commit 2025-03-21 12:55:08 +00:00
gitea/salix-front/pipeline/pr-dev This commit is unstable Details
7e0ca4ce6d
test: refs #5926 simplify test
alexm requested review from jsegarra 2025-03-21 13:08:00 +00:00
jsegarra requested changes 2025-03-21 15:22:04 +00:00
Dismissed
@ -23,0 +48,4 @@
removeNewPDA();
});
it('download file', () => {
Member

podemos enviar y descargar? Nos ahorramos un it, no?

podemos enviar y descargar? Nos ahorramos un it, no?
alexm marked this conversation as resolved
alexm added 1 commit 2025-03-23 06:21:21 +00:00
gitea/salix-front/pipeline/pr-dev Something is wrong with the build of this commit Details
057a2520c0
test(WorkerPda): refs #5926 unify send and download e2e
alexm added 1 commit 2025-03-23 06:22:32 +00:00
alexm added 1 commit 2025-03-23 08:17:47 +00:00
jsegarra approved these changes 2025-03-23 22:28:03 +00:00
alexm added 1 commit 2025-03-24 06:18:25 +00:00
gitea/salix-front/pipeline/pr-dev This commit looks good Details
cdded9217a
Merge branch 'dev' into 5926-signPdaPdf
alexm merged commit a29153fea2 into dev 2025-03-24 06:52:36 +00:00
alexm deleted branch 5926-signPdaPdf 2025-03-24 06:52:36 +00:00
Sign in to join this conversation.
No reviewers
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: verdnatura/salix-front#1617
No description provided.