use of me.kadarh.mecaworks.domain.bons.BonEngin in project mecaworks by KadarH.
the class CalculAbsoluServiceImpl method calculCompteursAbsolu.
private BonEngin calculCompteursAbsolu(BonEngin bonEngin, BonEngin lastBon) {
log.info("- > Calcul compteur Absolu");
String typeCompteur = bonEngin.getEngin().getSousFamille().getTypeCompteur().name();
BonEngin bonEngin1 = lastBon;
if (typeCompteur.equals(TypeCompteur.H.name())) {
bonEngin = calculCompteurAbsoluH(bonEngin, bonEngin1);
bonEngin.setCompteurKm(0L);
} else if (typeCompteur.equals(TypeCompteur.KM.name())) {
bonEngin = calculCompteurAbsoluKm(bonEngin, bonEngin1);
bonEngin.setCompteurH(0L);
} else if (typeCompteur.equals(TypeCompteur.KM_H.name())) {
bonEngin = calculCompteurAbsoluH_Km(bonEngin, bonEngin1);
}
log.info("--- > Calcul compteur AbsoluKm = " + bonEngin.getCompteurKm());
log.info("--- > Calcul compteur AbsoluH = " + bonEngin.getCompteurH());
log.info("------------------------------------------ Compteur absolu calculated ------");
return bonEngin;
}
use of me.kadarh.mecaworks.domain.bons.BonEngin in project mecaworks by KadarH.
the class MiseAjourBonsServiceImpl method bonEnginsToUpdate.
private List<BonEngin> bonEnginsToUpdate(BonEngin bonEngin) {
log.info("Get List of bons to update :");
List<BonEngin> bonEngins = new ArrayList<>();
BonEngin lastBonPlein;
TypeCompteur typeCompteur = bonEngin.getEngin().getSousFamille().getTypeCompteur();
if (typeCompteur.equals(TypeCompteur.H)) {
lastBonPlein = bonEnginRepo.findLastBonEnginH_toConsommation(bonEngin.getEngin().getId(), bonEngin.getDate());
if (lastBonPlein != null)
bonEngins = bonEnginRepo.findListBonEnginH_toConsommation(bonEngin.getEngin().getId(), lastBonPlein.getCompteurAbsoluH());
} else if (typeCompteur.equals(TypeCompteur.KM)) {
lastBonPlein = bonEnginRepo.findLastBonEnginKm_toConsommation(bonEngin.getEngin().getId(), bonEngin.getDate());
bonEngins = bonEnginRepo.findListBonEnginKm_toConsommation(bonEngin.getEngin().getId(), lastBonPlein.getCompteurAbsoluKm());
} else if (typeCompteur.equals(TypeCompteur.KM_H)) {
lastBonPlein = bonEnginRepo.findLastBonEnginH_toConsommation(bonEngin.getEngin().getId(), bonEngin.getDate());
bonEngins = bonEnginRepo.findListBonEnginH_toConsommation(bonEngin.getEngin().getId(), lastBonPlein.getCompteurAbsoluH());
lastBonPlein = bonEnginRepo.findLastBonEnginKm_toConsommation(bonEngin.getEngin().getId(), bonEngin.getDate());
bonEngins.addAll(bonEnginRepo.findListBonEnginKm_toConsommation(bonEngin.getEngin().getId(), lastBonPlein.getCompteurAbsoluH()));
}
log.info("List bons to update :" + bonEngins.size());
return bonEngins;
}
use of me.kadarh.mecaworks.domain.bons.BonEngin in project mecaworks by KadarH.
the class PersistServiceImpl method insertAlertes.
public void insertAlertes(BonEngin bonEngin) {
BonEngin lastBonEngin = getLastBonEngin(bonEngin.getEngin(), bonEngin.getDate());
boolean okey = false;
if (lastBonEngin != null)
okey = true;
// Verify if chauffeur is changed.
if (okey && lastBonEngin.getChauffeur() != bonEngin.getChauffeur()) {
insertAlerte(bonEngin, "Chauffeur changé", TypeAlerte.CHAUFFEUR_CHANGED, Severity.NORMAL);
}
// Verify if compteur is en panne , and if no verify if compteur last bon was en panne
if (whichCompteurIsDown(bonEngin) == 1)
insertAlerte(bonEngin, "Compteur H En Panne", TypeAlerte.COMPTEUR_H_EN_PANNE, Severity.WARNING);
if (whichCompteurIsDown(bonEngin) == 2 && okey)
insertAlerte(bonEngin, "Compteur Km En Panne", TypeAlerte.COMPTEUR_KM_EN_PANNE, Severity.WARNING);
if (whichCompteurIsDown(bonEngin) == 3) {
insertAlerte(bonEngin, "Compteur H En Panne", TypeAlerte.COMPTEUR_H_EN_PANNE, Severity.WARNING);
insertAlerte(bonEngin, "Compteur Km En Panne", TypeAlerte.COMPTEUR_KM_EN_PANNE, Severity.WARNING);
}
// verify quantité
if (bonEngin.getQuantite() > bonEngin.getEngin().getSousFamille().getCapaciteReservoir())
insertAlerte(bonEngin, "Quantité de gazoil depasse la capacité de reservoir", TypeAlerte.QUANTITE_MORE_THAN_RESERVOIR, Severity.CRITIQUE);
}
use of me.kadarh.mecaworks.domain.bons.BonEngin in project mecaworks by KadarH.
the class UserCalculService method updateListEnginWithConsommation.
public void updateListEnginWithConsommation(int monthValue, int year) {
log.info("calling method getListEnginWithConsommation(month,year) in UserCalculService -- ");
try {
List<BonEngin> bonEngins = bonEnginRepo.findAllBetweenDates(LocalDate.of(year, Month.of(monthValue).getValue(), 1), LocalDate.of(year, Month.of(monthValue).plus(1).getValue(), 1));
Map<Engin, Double> consommationPrevue = bonEngins.stream().filter(bonEngin -> bonEngin.getConsommationH() != 0 && bonEngin.getConsommationH() != null).collect(Collectors.groupingBy(BonEngin::getEngin, Collectors.averagingDouble(BonEngin::getConsommationPrevu)));
for (Map.Entry<Engin, Double> entry : consommationPrevue.entrySet()) {
if (entry != null) {
Engin engin = enginService.get(entry.getKey().getId());
engin.setConsommationMoyenne(entry.getValue().floatValue() > engin.getSousFamille().getConsommationHMax() ? entry.getValue().floatValue() : engin.getSousFamille().getConsommationHMax().floatValue());
engin = enginService.update(engin);
log.info("Engin with id =" + engin.getId() + " updated successfully");
}
}
} catch (NoSuchElementException e) {
log.info("Operation failed : No element in Engin table -- ");
throw new ResourceNotFoundException("Opération echouée, Il n'y a aucun element pour cet engin", e);
} catch (Exception e) {
log.info("Operation failed -- ");
throw new OperationFailedException("Opération echouée, problème de la base", e);
}
}
use of me.kadarh.mecaworks.domain.bons.BonEngin in project mecaworks by KadarH.
the class UserCalculService method getListChantierWithQuantities.
public List<ChantierBatch> getListChantierWithQuantities(int month, int year) {
log.info("calling method getListChantierWithQuantities(month,year) in UserCalculService -- ");
try {
List<ChantierBatch> list = new ArrayList<>();
ChantierBatch chantierBatch;
LocalDate from = LocalDate.of(year, Month.of(month).getValue(), 1);
LocalDate to = LocalDate.of(year + 1, Month.of(month).plus(1).getValue(), 1);
List<BonEngin> bonEngins = bonEnginRepo.findAllBetweenDates(from, to);
List<BonLivraison> bonLivraisons = bonLivraisonRepo.findAllBetweenDates(from, to);
List<BonFournisseur> bonFournisseurs = bonFournisseurRepo.findAllBetweenDates(from, to);
Map<Chantier, Long> sum = bonEngins.stream().collect(Collectors.groupingBy(BonEngin::getChantierTravail, Collectors.summingLong(BonEngin::getQuantite)));
Map<Chantier, Long> sum2 = bonEngins.stream().filter(bonEngin -> bonEngin.getEngin().getGroupe().getLocataire() && bonEngin.getId() != null).collect(Collectors.groupingBy(BonEngin::getChantierTravail, Collectors.summingLong(BonEngin::getQuantite)));
Map<Chantier, Long> chargeLocataire = bonEngins.stream().collect(Collectors.groupingBy(BonEngin::getChantierTravail, Collectors.summingLong(BonEngin::getChargeHoraire)));
Map<Chantier, Long> chargeLocataireExterne = bonEngins.stream().filter(bonEngin -> bonEngin.getEngin().getGroupe().getLocataire()).collect(Collectors.groupingBy(BonEngin::getChantierTravail, Collectors.summingLong(BonEngin::getChargeHoraire)));
Map<Chantier, Long> consommationPrevue = bonEngins.stream().collect(Collectors.groupingBy(BonEngin::getChantierTravail, Collectors.summingLong(BonEngin::getConsommationPrevu)));
Map<Chantier, Double> prix = bonFournisseurs.stream().collect(Collectors.groupingBy(BonFournisseur::getChantier, Collectors.averagingDouble(BonFournisseur::getPrixUnitaire)));
Map<Chantier, Long> quantiteAchetee = bonFournisseurs.stream().collect(Collectors.groupingBy(BonFournisseur::getChantier, Collectors.summingLong(BonFournisseur::getQuantite)));
Map<Chantier, Long> quantiteFlotante = bonLivraisons.stream().collect(Collectors.groupingBy(BonLivraison::getChantierDepart, Collectors.summingLong(BonLivraison::getQuantite)));
for (Map.Entry<Chantier, Long> entry : sum.entrySet()) {
if (entry != null) {
// Fix in 0 if null
Long quantite = entry.getValue();
Long quantiteL = sum2.get(entry.getKey()) == null ? 0L : sum2.get(entry.getKey());
Long cl = chargeLocataire.get(entry.getKey()) == null ? 0L : chargeLocataire.get(entry.getKey());
Long clex = chargeLocataireExterne.get(entry.getKey()) == null ? 0L : chargeLocataireExterne.get(entry.getKey());
Long cp = consommationPrevue.get(entry.getKey()) == null ? 0L : consommationPrevue.get(entry.getKey());
Long qa = quantiteAchetee.get(entry.getKey()) == null ? 0L : quantiteAchetee.get(entry.getKey());
Long qf = quantiteFlotante.get(entry.getKey()) == null ? 0L : quantiteFlotante.get(entry.getKey());
Float p = prix.get(entry.getKey()) == null ? 0f : prix.get(entry.getKey()).floatValue();
chantierBatch = new ChantierBatch(month, year, quantite, quantiteL, cl, clex, cp, p, qa, qf, entry.getKey());
if (chantierBatch.getQuantiteLocation() == null)
chantierBatch.setQuantiteLocation(0L);
if (chantierBatch.getQuantite() == null)
chantierBatch.setQuantite(0L);
if (chantierBatch.getChargeLocataireExterne() == null)
chantierBatch.setChargeLocataireExterne(0L);
if (chantierBatch.getChargeLocataire() == null)
chantierBatch.setChargeLocataire(0L);
if (chantierBatch.getConsommationPrevue() == null)
chantierBatch.setConsommationPrevue(0L);
if (chantierBatch.getGazoilAchete() == null)
chantierBatch.setGazoilAchete(0L);
if (chantierBatch.getGazoilFlotant() == null)
chantierBatch.setGazoilFlotant(0L);
list.add(chantierBatch);
}
}
log.info("--> List of Chantier_Batch contains " + list.size() + " elements");
return list;
} catch (NoSuchElementException e) {
log.info("Operation failed : No element in ChantierBatch table -- ");
throw new ResourceNotFoundException("Opération echouée, Il n'y a aucun element pour les mois precedents", e);
} catch (Exception e) {
log.info("Operation failed -- ");
throw new OperationFailedException("Opération echouée, problème de la base", e);
}
}
Aggregations