Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

138
Visualizações
How to iterate on multiple list of objects in jQuery to do a calculation

Context: CMPT stands for compte which is Account in english, the application can have multiple accounts which contains an hospitalisation field and for each hospitalisation fields present in ONE account, i want to be able to calculate the total cost for each hospitalisations.

Currently i am able to calculate the field total(mntTotHosp) which is obtained by doing the calculation of the field Tarif quotidien ( TariQuoti) * Nombre de jours (NbJrsHosp) . In english : Daily price * numbers of days.

But this works only for the first Hospitalisation (ListeHospitalisation[0].mntTotHosp) by doing this :

function CalculMntTotHosp() {
  var tariQuoti = $("input[id$='TariQuoti']").val().replace(",", ".") || 0;
  var nbJrsHosp = $("input[id$='NbJrsHosp']").val().replace(",", ".") || 0;
  var mntTotHosp = tariQuoti * nbJrsHosp
  $("input[id$='MntTotHosp']").val(mntTotHosp.toFixed(2).replace(".", ","));
}

My problem :

I would like to do this for each CmptETS in the list ListeCmptETS and each Hospitalisation contained in ListeHospitalisation which is contained in ListeCmptETS. Currently it's only able to calculate the total for the first hospitalisation present in the first account.

Here's a screenshot of the 3 fields used to do the calculation, to have a better understanding of the data: enter image description here

Sorry the text is in french in the app but here's a visual representation to see the data :

enter image description here

Hopefully this was enough clear could anyone help ? Thanks a lot :)

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

It was a bit hard to know what to suggest without seeing more code, but maybe this vanilla-flavored example can get you started:

const list = Array.from(document.querySelectorAll(".listeCmptETS"));
Array.from(list).forEach((listeCmptETS) => {
  const
    hospSection = listeCmptETS.querySelector(".listeHosp"),
    listeHospitalisation = Array.from(hospSection.querySelectorAll(".stay"));
  listeHospitalisation.forEach((thisStay) => {
    CalculMntTotHosp(thisStay);
  });
});

function CalculMntTotHosp(stay) {
  const
    toNum = (str) => +(str.replace(',', '.') || 0),
    toCurrency = (num) => num.toFixed(2).replace('.', ','),
    tariQuoti = toNum( stay.querySelector('.TariQuoti').value ),
    nbJrsHosp = toNum( stay.querySelector('.NbJrsHosp').value ),
    output = toCurrency(tariQuoti * nbJrsHosp);
  //console.log(`daily: ${tariQuoti}`, `days: ${nbJrsHosp}`);
  stay.querySelector('.MntTotHosp').value = output;
}
.listeCmptETS { margin-bottom: 1rem; }
.section { width: 20rem; min-height: 2.5rem; padding-top: 0.4rem; border: 1px solid grey; }
.listeHosp {border-top: none; }
.stay { position: relative; padding: 0.3rem; }
.stay div { margin-bottom: 0.3rem; }
.stay input {display: inline-block; position: absolute; left: 3rem; }
  <div class="listeCmptETS">
    <div class="section">(non-hospitalization content goes here)</div>
    <div class="listeHosp section">
      <div class="stay">
        <div>Daily<input class="TariQuoti" value="21,00" /></div>
        <div>Days<input class="NbJrsHosp" value="2" /></div>
        <div>Tot<input class="MntTotHosp" /></div>
      </div>
      <div class="stay">
        <div>Daily<input class="TariQuoti" value="22,00" /></div>
        <div>Days<input class="NbJrsHosp" value="" /></div>
        <div>Tot<input class="MntTotHosp" /></div>
      </div>
    </div>
  </div>
  <div class="listeCmptETS">
    <div class="section">(non-hospitalization content goes here)</div>
    <div class="listeHosp section">
      <div class="stay">
        <div>Daily<input class="TariQuoti" value="23,00" /></div>
        <div>Days<input class="NbJrsHosp" value="1" /></div>
        <div>Tot<input class="MntTotHosp" /></div>
      </div>
      <div class="stay">
        <div>Daily<input class="TariQuoti" value="24,00" /></div>
        <div>Days<input class="NbJrsHosp" value="3" /></div>
        <div>Tot<input class="MntTotHosp" /></div>
      </div>
    </div>
  </div>

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda