1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
package com.maison.enfant.gestion.horaire.action.planning;
import java.util.ArrayList;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import org.apache.struts2.ServletActionContext;
import com.maison.enfant.gestion.horaire.display.PersonneWeekEndDisplay;
import com.maison.enfant.gestion.horaire.dto.DroitDTO;
import com.maison.enfant.gestion.horaire.dto.HeureSuppPayeDTO;
import com.maison.enfant.gestion.horaire.dto.MoisDispDTO;
import com.maison.enfant.gestion.horaire.dto.PersonneDTO;
import com.maison.enfant.gestion.horaire.dto.ServiceDTO;
import com.maison.enfant.gestion.horaire.dto.UniteDTO;
import com.maison.enfant.gestion.horaire.service.ICompteur;
import com.maison.enfant.gestion.horaire.service.IHeureSuppPaye;
import com.maison.enfant.gestion.horaire.service.IPersonne;
import com.maison.enfant.gestion.horaire.service.IService;
import com.opensymphony.xwork2.Action;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.Preparable;
public class WeekEndAction extends ActionSupport implements Preparable{
private IPersonne personneService;
private IService serviceService;
private IHeureSuppPaye heureSuppPayeService;
private ICompteur compteurService;
private String personneSelected;
private String anneeSearch;
private String moisSearch;
public PersonneWeekEndDisplay persWeekDisplay;
List<PersonneWeekEndDisplay> listPersonneWeekEnd = new ArrayList<PersonneWeekEndDisplay>();
List<PersonneWeekEndDisplay> listJourTravail = new ArrayList<PersonneWeekEndDisplay>(); // utilisé pour récup les jours
public PersonneDTO personneInSession ;
public DroitDTO droitPersonneInSession;
private List<PersonneDTO> listPersonneDto;
public List<PersonneWeekEndDisplay> getListJourTravail() {
return listJourTravail;
}
public void setListJourTravail(List<PersonneWeekEndDisplay> listJourTravail) {
this.listJourTravail = listJourTravail;
}
public PersonneWeekEndDisplay getPersWeekDisplay() {
return persWeekDisplay;
}
public void setPersWeekDisplay(PersonneWeekEndDisplay persWeekDisplay) {
this.persWeekDisplay = persWeekDisplay;
}
public List<PersonneWeekEndDisplay> getListPersonneWeekEnd() {
return listPersonneWeekEnd;
}
public void setListPersonneWeekEnd(
List<PersonneWeekEndDisplay> listPersonneWeekEnd) {
this.listPersonneWeekEnd = listPersonneWeekEnd;
}
public ICompteur getCompteurService() {
return compteurService;
}
public void setCompteurService(ICompteur compteurService) {
this.compteurService = compteurService;
}
public IHeureSuppPaye getHeureSuppPayeService() {
return heureSuppPayeService;
}
public void setHeureSuppPayeService(IHeureSuppPaye heureSuppPayeService) {
this.heureSuppPayeService = heureSuppPayeService;
}
public String getAnneeSearch() {
return anneeSearch;
}
public void setAnneeSearch(String anneeSearch) {
this.anneeSearch = anneeSearch;
}
public String getMoisSearch() {
return moisSearch;
}
public void setMoisSearch(String moisSearch) {
this.moisSearch = moisSearch;
}
public String getPersonneSelected() {
return personneSelected;
}
public void setPersonneSelected(String personneSelected) {
this.personneSelected = personneSelected;
}
public PersonneDTO getPersonneInSession() {
return personneInSession;
}
public void setPersonneInSession(PersonneDTO personneInSession) {
this.personneInSession = personneInSession;
}
public DroitDTO getDroitPersonneInSession() {
return droitPersonneInSession;
}
public void setDroitPersonneInSession(DroitDTO droitPersonneInSession) {
this.droitPersonneInSession = droitPersonneInSession;
}
public IPersonne getPersonneService() {
return personneService;
}
public void setPersonneService(IPersonne personneService) {
this.personneService = personneService;
}
public IService getServiceService() {
return serviceService;
}
public void setServiceService(IService serviceService) {
this.serviceService = serviceService;
}
public List<PersonneDTO> getListPersonneDto() {
return listPersonneDto;
}
public void setListPersonneDto(List<PersonneDTO> listPersonneDto) {
this.listPersonneDto = listPersonneDto;
}
@Override
public void prepare() throws Exception {
HttpServletRequest request = ServletActionContext.getRequest();
HttpSession session = request.getSession();
this.personneInSession = (PersonneDTO) session.getAttribute("personne");
if (personneInSession != null){
this.droitPersonneInSession = personneInSession.getDroitDTO();
//System.out.println("droitPersonneInSession : "+droitPersonneInSession);
}
boolean superUser = personneService.isSuperUser(personneInSession);
ServiceDTO serviceChefService = this.serviceService.getServiceByIdPersonne(personneInSession.getIdPersonne());
//System.out.println("serviceChefService : "+serviceChefService.getNomService());
UniteDTO uniteChefService = this.serviceService.getUniteDtoByIdService(serviceChefService.getIdService());
//System.out.println("uniteChefService : "+uniteChefService.getNomUnite());
//pour afficher la liste de toutes les absences
if(superUser == true){
this.listPersonneDto = this.personneService.getListPersonne();
}
//Pour ne récupérer que la liste des personnes faisant parti de l'unite
else{
this.listPersonneDto = this.personneService.getPersonneDTOByUniteId(uniteChefService.getIdUnite());
}
}
@Override
public String execute() throws Exception {
HttpServletRequest request = ServletActionContext.getRequest();
HttpSession session = request.getSession();
this.personneInSession = (PersonneDTO) session.getAttribute("personne");
if (personneInSession != null){
this.droitPersonneInSession = personneInSession.getDroitDTO();
//System.out.println("droitPersonneInSession : "+droitPersonneInSession);
}
// la seule chose qu'il fera c'est de tjours envoyer succes ;o)
return Action.SUCCESS;
}
public String load() throws Exception {
if (personneInSession == null){
return "login";
}
List<PersonneWeekEndDisplay> listPersonneTravailleWeekEnd = this.compteurService.getPersonneWeekEndByAnnee(Integer.parseInt(this.anneeSearch), Integer.parseInt(this.moisSearch));
if (listPersonneTravailleWeekEnd.size() > 0){
String valDayBefore="";
for(PersonneWeekEndDisplay persWeekDisp : listPersonneTravailleWeekEnd){
PersonneWeekEndDisplay persWeekDisplay = new PersonneWeekEndDisplay();
String valDay = persWeekDisp.getJour();
persWeekDisplay.setNomPersonne(persWeekDisp.getNomPersonne());
//System.out.println("persWeekDisplay nom : "+persWeekDisplay.getNomPersonne());
persWeekDisplay.setPrenomPersonne(persWeekDisp.getPrenomPersonne());
persWeekDisplay.setJour(persWeekDisp.getJour());
persWeekDisplay.setDebutHoraire(persWeekDisp.getDebutHoraire());
persWeekDisplay.setFinHoraire(persWeekDisp.getFinHoraire());
persWeekDisplay.setTypeHoraire(persWeekDisp.getTypeHoraire());
persWeekDisplay.setIdPersonne(persWeekDisp.getIdPersonne());
this.listPersonneWeekEnd.add(persWeekDisplay);
//System.out.println("valDay : "+valDay);
//System.out.println("valDayBefore : "+valDayBefore);
if(!valDay.equals(valDayBefore)){
//System.out.println("******valDay != valDayBefore ****");
PersonneWeekEndDisplay jourWeekEndDisplay = new PersonneWeekEndDisplay(); //Pour ne récupérer ques les jours
jourWeekEndDisplay.setJour(persWeekDisp.getJour());
//System.out.println("jour récup : "+jourWeekEndDisplay.getJour());
this.listJourTravail.add(jourWeekEndDisplay);
valDayBefore = valDay;
}
}
}
return Action.SUCCESS;
}
} |
Partager