411 lines
17 KiB
Java
411 lines
17 KiB
Java
package Controllers.BonLivraisonClt;
|
|
|
|
import Models.CommandeClt.CommandeCltDB;
|
|
import Models.CommandeClt.CommandeCltListe;
|
|
import javafx.scene.control.ProgressBar;
|
|
import java.io.IOException;
|
|
import java.net.URL;
|
|
import java.util.ResourceBundle;
|
|
import org.apache.log4j.Logger;
|
|
import javafx.beans.value.ChangeListener;
|
|
import javafx.beans.value.ObservableValue;
|
|
import javafx.collections.FXCollections;
|
|
import javafx.collections.ObservableList;
|
|
import javafx.concurrent.Service;
|
|
import javafx.concurrent.Task;
|
|
import javafx.concurrent.WorkerStateEvent;
|
|
import javafx.event.ActionEvent;
|
|
import javafx.event.EventHandler;
|
|
import javafx.fxml.FXML;
|
|
import javafx.fxml.FXMLLoader;
|
|
import javafx.fxml.Initializable;
|
|
import javafx.scene.Group;
|
|
import javafx.scene.Parent;
|
|
import javafx.scene.control.Button;
|
|
import javafx.scene.control.ChoiceBox;
|
|
import javafx.scene.control.DatePicker;
|
|
import javafx.scene.control.Label;
|
|
import javafx.scene.control.RadioButton;
|
|
import javafx.scene.control.TableCell;
|
|
import javafx.scene.control.TableColumn;
|
|
import javafx.scene.control.TableView;
|
|
import javafx.scene.control.TextField;
|
|
import javafx.scene.control.cell.PropertyValueFactory;
|
|
import javafx.scene.image.Image;
|
|
import javafx.scene.image.ImageView;
|
|
import javafx.scene.input.KeyCode;
|
|
import javafx.scene.input.KeyEvent;
|
|
import javafx.scene.input.MouseEvent;
|
|
import javafx.scene.layout.AnchorPane;
|
|
import javafx.scene.text.Text;
|
|
import javafx.util.Callback;
|
|
|
|
|
|
/**
|
|
* FXML Controller class
|
|
* @author Maher Ben Tili
|
|
*/
|
|
public class BonLivraisonCltAjouterController implements Initializable {
|
|
|
|
@FXML private AnchorPane AnchorPaneBLCltAjouterEtape1;
|
|
|
|
@FXML private ProgressBar ProgressBarBLCltAjouter;
|
|
|
|
@FXML private Button ButtonSearchBLCltAjouter;
|
|
|
|
@FXML public TableView<CommandeCltListe> TableViewCommande;
|
|
|
|
@FXML public TableColumn<CommandeCltListe ,String> TabColCodeCommande;
|
|
@FXML public TableColumn<CommandeCltListe ,String> TabColModePaiement;
|
|
@FXML public TableColumn<CommandeCltListe ,String> TabColTypeClient;
|
|
@FXML public TableColumn<CommandeCltListe ,String> TabColCodeClient;
|
|
@FXML public TableColumn<CommandeCltListe ,String> TabColTotalCommande;
|
|
@FXML public TableColumn<CommandeCltListe ,String> TabColDateCreation ;
|
|
@FXML public TableColumn<CommandeCltListe ,String> TabColCodeDevis;
|
|
@FXML public TableColumn<CommandeCltListe ,Boolean>TabColAction ;
|
|
|
|
@FXML public TextField TextFieldCodeCommande;
|
|
@FXML public DatePicker DatePickerCreation;
|
|
@FXML public RadioButton RadioComptant;
|
|
@FXML public RadioButton RadioFacilite;
|
|
|
|
@FXML private Text ActuellePage ;
|
|
@FXML private Text NbrPage ;
|
|
@FXML private Group nextgroupe ;
|
|
@FXML private Group avancergroupe ;
|
|
@FXML private Group lastgroupe ;
|
|
@FXML private Group retourgroupe ;
|
|
@FXML private Label LabelCount;
|
|
@FXML private ChoiceBox NbrLigne ;
|
|
|
|
private Service<Void> ThreadSearchBLCltAjouter;
|
|
|
|
ObservableList cursors = FXCollections.observableArrayList("10","15","20");
|
|
private Integer nbrligne = 10 ;
|
|
private Integer totalcount = 0;
|
|
private Integer nbrpage = 0;
|
|
private Integer actuellepage = 1;
|
|
Integer position = 0;
|
|
|
|
Logger logger = Logger.getLogger(BonLivraisonCltAjouterController.class.getName());
|
|
|
|
@Override
|
|
public void initialize(URL url, ResourceBundle rb) {
|
|
|
|
NbrLigne.setItems(cursors);
|
|
NbrLigne.getSelectionModel().selectFirst();
|
|
|
|
TableViewCommande.setEditable(true);
|
|
|
|
TabColCodeCommande.setStyle( "-fx-alignment: CENTER;");TabColCodeCommande.getStyleClass().add("Center");
|
|
TabColCodeCommande.setCellValueFactory(new PropertyValueFactory<CommandeCltListe, String>("CodeCommande"));
|
|
|
|
TabColTypeClient.setStyle( "-fx-alignment: CENTER;");TabColTypeClient.getStyleClass().add("Center");
|
|
TabColTypeClient.setCellValueFactory(new PropertyValueFactory<CommandeCltListe, String>("TypeClient"));
|
|
|
|
TabColCodeClient.setStyle( "-fx-alignment: CENTER;");TabColCodeClient.getStyleClass().add("Center");
|
|
TabColCodeClient.setCellValueFactory(new PropertyValueFactory<CommandeCltListe, String>("CodeClient"));
|
|
|
|
TabColModePaiement.setStyle( "-fx-alignment: CENTER;");TabColModePaiement.getStyleClass().add("Center");
|
|
TabColModePaiement.setCellValueFactory(new PropertyValueFactory<CommandeCltListe, String>("ModePaiement"));
|
|
|
|
TabColTotalCommande.setStyle( "-fx-alignment: CENTER;");TabColTotalCommande.getStyleClass().add("Center");
|
|
TabColTotalCommande.setCellValueFactory(new PropertyValueFactory<CommandeCltListe, String>("TotalCommande"));
|
|
|
|
TabColDateCreation.setStyle( "-fx-alignment: CENTER;");TabColDateCreation.getStyleClass().add("Center");
|
|
TabColDateCreation.setCellValueFactory(new PropertyValueFactory<CommandeCltListe, String>("DateCreation"));
|
|
|
|
TabColCodeDevis.setStyle( "-fx-alignment: CENTER;");TabColCodeDevis.getStyleClass().add("Center");
|
|
TabColCodeDevis.setCellValueFactory(new PropertyValueFactory<CommandeCltListe, String>("CodeDevis"));
|
|
|
|
|
|
TabColAction.setSortable(true);
|
|
TabColAction.setStyle( "-fx-alignment: CENTER;");TabColAction.getStyleClass().add("Center");
|
|
TabColAction.setCellFactory(new Callback<TableColumn<CommandeCltListe, Boolean>, TableCell<CommandeCltListe, Boolean>>() {
|
|
@Override
|
|
public TableCell<CommandeCltListe, Boolean> call(TableColumn<CommandeCltListe, Boolean> personBooleanTableColumn) {
|
|
return new BonLivraisonCltAjouterController.ButtonCell();
|
|
}
|
|
});
|
|
|
|
ButtonSearchBLCltAjouter.setOnMouseClicked(new EventHandler<MouseEvent>() {
|
|
public void handle(MouseEvent me) {
|
|
SearchBLCltAjouter();
|
|
}
|
|
});
|
|
|
|
AnchorPaneBLCltAjouterEtape1.setOnKeyPressed(new EventHandler<KeyEvent>() {
|
|
@Override
|
|
public void handle(KeyEvent ke) {
|
|
if (ke.getCode().equals(KeyCode.ENTER)) {
|
|
SearchBLCltAjouter();
|
|
}
|
|
}
|
|
});
|
|
|
|
RadioComptant.setOnMouseClicked(new EventHandler<MouseEvent>() {
|
|
public void handle(MouseEvent me) {
|
|
SearchBLCltAjouter();
|
|
}
|
|
});
|
|
|
|
RadioFacilite.setOnMouseClicked(new EventHandler<MouseEvent>() {
|
|
public void handle(MouseEvent me) {
|
|
SearchBLCltAjouter();
|
|
}
|
|
});
|
|
|
|
GestionSearchBLCltAjouter();
|
|
|
|
}
|
|
|
|
|
|
private class ButtonCell extends TableCell<CommandeCltListe, Boolean> {
|
|
|
|
final Button cellButton = new Button();
|
|
ButtonCell(){
|
|
cellButton.getStyleClass().add("btn-icon-primary");
|
|
Image coffeeImage = new Image(getClass().getResourceAsStream("/Public/icon/iconedit.png"));
|
|
ImageView buttonGraphic = new ImageView();
|
|
buttonGraphic.setImage(coffeeImage);
|
|
cellButton.setGraphic(buttonGraphic);
|
|
cellButton.setOnAction(new EventHandler<ActionEvent>(){ //Action when the button is pressed
|
|
@Override
|
|
public void handle(ActionEvent t) {
|
|
try {
|
|
CommandeCltListe current = (CommandeCltListe) ButtonCell.this.getTableView().getItems().get(ButtonCell.this.getIndex());
|
|
String CodeCommande = current.getCodeCommande();
|
|
|
|
FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("/Views/BonLivraisonClt/BonLivraisonCltAjouterEtape2.fxml"));
|
|
Parent NodeBonLivraisonCltAjouterEtape2 = (Parent)fxmlLoader.load();
|
|
BonLivraisonCltAjouterEtape2Controller BonLivraisonCltAjouterEtape2= fxmlLoader.getController();
|
|
|
|
AnchorPaneBLCltAjouterEtape1.getChildren().clear();
|
|
AnchorPaneBLCltAjouterEtape1.getChildren().add(NodeBonLivraisonCltAjouterEtape2);
|
|
|
|
BonLivraisonCltAjouterEtape2.SetDataCommandeClt(CodeCommande);
|
|
} catch (IOException ex) {
|
|
logger.error("BonLivraisonCltAjouterController : BonLivraisonCltAjouterEtape2.fxml :" + ex.getMessage());
|
|
}
|
|
}
|
|
});
|
|
}
|
|
//Display button if the row is not empty
|
|
@Override
|
|
protected void updateItem(Boolean t, boolean empty) {
|
|
if(!empty){
|
|
setGraphic(cellButton);
|
|
} else {
|
|
setGraphic(null);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/****************************************************************************** *
|
|
* *
|
|
* Methode last Next TableView *
|
|
* * *
|
|
******************************************************************************/
|
|
|
|
private void SearchBLCltAjouter()
|
|
{
|
|
ProgressBarBLCltAjouter.setVisible(true);
|
|
|
|
ButtonSearchBLCltAjouter.setDisable(true);
|
|
|
|
ThreadSearchBLCltAjouter = new Service<Void>(){
|
|
@Override
|
|
protected Task<Void> createTask(){
|
|
return new Task<Void>(){
|
|
@Override
|
|
protected Void call() throws Exception{
|
|
|
|
position = 0;
|
|
|
|
actuellepage = 1;
|
|
|
|
String DateCreation = "";
|
|
if(DatePickerCreation.getValue() != null){
|
|
DateCreation = DatePickerCreation.getValue().toString();
|
|
}
|
|
|
|
// 0comptant 1facilité
|
|
String TypeRegement = "";
|
|
if(RadioComptant.isSelected()){
|
|
TypeRegement = "0";
|
|
}else if(RadioFacilite.isSelected()){
|
|
TypeRegement = "1";
|
|
}
|
|
|
|
ObservableList<CommandeCltListe> ListBLCltAjouters = new CommandeCltDB().SearchCommandeCltNotBonLivrison(
|
|
position,
|
|
nbrligne,
|
|
TextFieldCodeCommande.getText(),
|
|
DateCreation,
|
|
TypeRegement);
|
|
|
|
TableViewCommande.setItems(ListBLCltAjouters);
|
|
|
|
totalcount = new CommandeCltDB().nbrCommandeCltNotBonLivrison(TextFieldCodeCommande.getText(), DateCreation, TypeRegement);
|
|
|
|
if(totalcount > 0){
|
|
ActuellePage.setText("1");
|
|
}else{
|
|
ActuellePage.setText("0");
|
|
}
|
|
|
|
if(totalcount % nbrligne==0){
|
|
nbrpage = totalcount / nbrligne ;
|
|
}
|
|
else{
|
|
nbrpage = (totalcount / nbrligne) + 1 ;
|
|
}
|
|
NbrPage.setText(Integer.toString(nbrpage));
|
|
|
|
return null;
|
|
}
|
|
};
|
|
}
|
|
};
|
|
|
|
ThreadSearchBLCltAjouter.setOnSucceeded(new EventHandler<WorkerStateEvent>(){
|
|
@Override
|
|
public void handle(WorkerStateEvent event){
|
|
ProgressBarBLCltAjouter.setVisible(false);
|
|
ButtonSearchBLCltAjouter.setDisable(false);
|
|
LabelCount.setText(totalcount.toString());
|
|
|
|
}
|
|
});
|
|
ThreadSearchBLCltAjouter.start();
|
|
}
|
|
|
|
|
|
private void NextLastSearchBLCltAjouter(Integer ParmPosition, Integer ParamNbrligne)
|
|
{
|
|
ProgressBarBLCltAjouter.setVisible(true);
|
|
|
|
ButtonSearchBLCltAjouter.setDisable(true);
|
|
|
|
ThreadSearchBLCltAjouter = new Service<Void>(){
|
|
@Override
|
|
protected Task<Void> createTask(){
|
|
return new Task<Void>(){
|
|
@Override
|
|
protected Void call() throws Exception{
|
|
|
|
String DateCreation = "";
|
|
if(DatePickerCreation.getValue() != null){
|
|
DateCreation = DatePickerCreation.getValue().toString();
|
|
}
|
|
|
|
// 0comptant 1facilité
|
|
String TypeRegement = "";
|
|
if(RadioComptant.isSelected()){
|
|
TypeRegement = "0";
|
|
}else if(RadioFacilite.isSelected()){
|
|
TypeRegement = "1";
|
|
}
|
|
|
|
ObservableList<CommandeCltListe> ListBLCltAjouters = new CommandeCltDB().SearchCommandeCltNotBonLivrison(ParmPosition, ParamNbrligne, TextFieldCodeCommande.getText(), DateCreation, TypeRegement);
|
|
|
|
TableViewCommande.setItems(ListBLCltAjouters);
|
|
|
|
return null;
|
|
}
|
|
};
|
|
}
|
|
};
|
|
|
|
ThreadSearchBLCltAjouter.setOnSucceeded(new EventHandler<WorkerStateEvent>(){
|
|
@Override
|
|
public void handle(WorkerStateEvent event){
|
|
ProgressBarBLCltAjouter.setVisible(false);
|
|
ButtonSearchBLCltAjouter.setDisable(false);
|
|
}
|
|
});
|
|
ThreadSearchBLCltAjouter.start();
|
|
}
|
|
|
|
private void GestionSearchBLCltAjouter()
|
|
{
|
|
NbrLigne.getSelectionModel().selectedIndexProperty().addListener(new ChangeListener<Number>() {
|
|
|
|
public void changed(ObservableValue ov, Number value, Number new_value) {
|
|
nbrligne= Integer.parseInt((String) cursors.get(new_value.intValue()));
|
|
if(totalcount % nbrligne==0){ nbrpage = totalcount / nbrligne ;}
|
|
else{ nbrpage = (totalcount / nbrligne) + 1 ; }
|
|
NbrPage.setText(Integer.toString(nbrpage));
|
|
position=0;
|
|
ActuellePage.setText("1");
|
|
actuellepage=1;
|
|
NextLastSearchBLCltAjouter(position, nbrligne);
|
|
}
|
|
});
|
|
|
|
if(totalcount % nbrligne==0){ nbrpage = totalcount / nbrligne ;}
|
|
else{ nbrpage = (totalcount / nbrligne) + 1 ; }
|
|
NbrPage.setText(Integer.toString(nbrpage));
|
|
|
|
|
|
//next page
|
|
nextgroupe.setOnMousePressed(new EventHandler<MouseEvent>(){
|
|
@Override
|
|
public void handle(MouseEvent event) {
|
|
if(actuellepage<nbrpage)
|
|
{
|
|
position=position+nbrligne;
|
|
NextLastSearchBLCltAjouter(position, nbrligne);
|
|
actuellepage=actuellepage+1 ;
|
|
ActuellePage.setText(Integer.toString(actuellepage));
|
|
|
|
}
|
|
}
|
|
});
|
|
|
|
//last page
|
|
lastgroupe.setOnMousePressed(new EventHandler<MouseEvent>(){
|
|
@Override
|
|
public void handle(MouseEvent event) {
|
|
if(actuellepage>1)
|
|
{
|
|
position=position-nbrligne;
|
|
NextLastSearchBLCltAjouter(position, nbrligne);
|
|
actuellepage=actuellepage-1 ;
|
|
ActuellePage.setText(Integer.toString(actuellepage));
|
|
}
|
|
}
|
|
});
|
|
|
|
//next page avec pas de 5
|
|
avancergroupe.setOnMousePressed(new EventHandler<MouseEvent>(){
|
|
@Override
|
|
public void handle(MouseEvent event) {
|
|
if(actuellepage+3<nbrpage)
|
|
{
|
|
position=(position+4)+nbrligne;
|
|
NextLastSearchBLCltAjouter(position, nbrligne);
|
|
actuellepage=actuellepage+3 ;
|
|
ActuellePage.setText(Integer.toString(actuellepage));
|
|
|
|
}
|
|
}
|
|
});
|
|
|
|
//last page avec un pas de -5
|
|
retourgroupe.setOnMousePressed(new EventHandler<MouseEvent>(){
|
|
@Override
|
|
public void handle(MouseEvent event) {
|
|
if(actuellepage-3>1){
|
|
position=(position-4)-nbrligne;
|
|
NextLastSearchBLCltAjouter(position, nbrligne);
|
|
actuellepage=actuellepage-3 ;
|
|
ActuellePage.setText(Integer.toString(actuellepage));
|
|
}
|
|
}
|
|
});
|
|
|
|
}
|
|
}
|