Exemplo n.º 1
0
 public Float getCostOfSousTraitants(CommandesEntity commandesEntity) {
   CoefficientEntity coefficientEntity = coefficientManager.findCurrentCoefficient();
   return coefficientEntity.getStCoef() * this.getSumOfCostByCommandes(commandesEntity);
 }
Exemplo n.º 2
0
 public Float getCostOfIntervenants(CommandesEntity commandesEntity) {
   CoefficientEntity coefficientEntity = coefficientManager.findCurrentCoefficient();
   return coefficientEntity.getInterCoef() * this.getSumOfHoursByCommandes(commandesEntity);
 }