OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Rev 177 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 * 
 * Copyright 2011-2019 OpenConcerto, by ILM Informatique. All rights reserved.
 * 
 * The contents of this file are subject to the terms of the GNU General Public License Version 3
 * only ("GPL"). You may not use this file except in compliance with the License. You can obtain a
 * copy of the License at http://www.gnu.org/licenses/gpl-3.0.html See the License for the specific
 * language governing permissions and limitations under the License.
 * 
 * When distributing the software, include this License Header Notice in each file.
 */
 
 package org.openconcerto.erp.core.sales.invoice.ui;

import org.openconcerto.erp.config.ComptaPropsConfiguration;
import org.openconcerto.erp.core.common.ui.IListFilterDatePanel;
import org.openconcerto.erp.core.common.ui.IListTotalPanel;
import org.openconcerto.erp.core.common.ui.ListeViewPanel;
import org.openconcerto.erp.core.finance.accounting.ui.ListeGestCommEltPanel;
import org.openconcerto.erp.core.sales.invoice.element.SaisieVenteFactureSQLElement;
import org.openconcerto.erp.core.sales.pos.POSConfiguration;
import org.openconcerto.erp.core.sales.pos.element.TicketCaisseSQLElement;
import org.openconcerto.erp.core.sales.pos.model.ArticleCache;
import org.openconcerto.erp.core.sales.pos.ui.TextAreaTicketPanel;
import org.openconcerto.sql.element.SQLElement;
import org.openconcerto.sql.element.SQLElementDirectory;
import org.openconcerto.sql.model.FieldPath;
import org.openconcerto.sql.model.SQLField;
import org.openconcerto.sql.model.SQLRowAccessor;
import org.openconcerto.sql.model.SQLRowValues;
import org.openconcerto.sql.model.Where;
import org.openconcerto.sql.model.graph.Path;
import org.openconcerto.sql.view.list.IListe;
import org.openconcerto.sql.view.list.IListeAction.IListeEvent;
import org.openconcerto.sql.view.list.ITableModel;
import org.openconcerto.sql.view.list.RowAction.PredicateRowAction;
import org.openconcerto.sql.view.list.SQLTableModelColumn;
import org.openconcerto.sql.view.list.SQLTableModelColumnPath;
import org.openconcerto.sql.view.list.SQLTableModelSourceOnline;
import org.openconcerto.ui.DefaultGridBagConstraints;
import org.openconcerto.ui.JLabelBold;
import org.openconcerto.ui.PanelFrame;
import org.openconcerto.utils.ExceptionHandler;
import org.openconcerto.utils.TableSorter;
import org.openconcerto.utils.cc.IClosure;

import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.math.BigInteger;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

import javax.swing.AbstractAction;
import javax.swing.JButton;
import javax.swing.JPanel;
import javax.swing.JTabbedPane;
import javax.swing.JTable;
import javax.swing.table.TableColumn;

public class ListeDesVentesPanel extends JPanel {

    private ListeGestCommEltPanel listeFact;
    // private JButton buttonEnvoye, buttonRegle, buttonDupliquer;
    private JLabelBold textField = new JLabelBold("0");
    private JLabelBold textField2 = new JLabelBold("0");

    public ListeDesVentesPanel(final ComptaPropsConfiguration conf) {
        this.setLayout(new GridBagLayout());
        GridBagConstraints c = new GridBagConstraints();
        c.insets = new Insets(2, 2, 1, 2);
        c.fill = GridBagConstraints.BOTH;
        c.anchor = GridBagConstraints.NORTHWEST;
        c.gridx = 0;
        c.gridy = 0;
        c.gridwidth = 1;
        c.gridheight = 1;
        c.weightx = 1;
        c.weighty = 1;

        JTabbedPane tabbedPane = new JTabbedPane();

        final SQLElementDirectory dir = conf.getDirectory();
        final SQLElement elementVF = dir.getElement("SAISIE_VENTE_FACTURE");
        // tab Vente facture
        final SQLElement eltFacture = elementVF;
        final SQLTableModelSourceOnline src = eltFacture.getTableSource(true);
        // Filter
        Where wPrev = new Where(eltFacture.getTable().getField("PREVISIONNELLE"), "=", Boolean.FALSE);
        if (src.getReq().getWhere() != null) {
            wPrev = wPrev.and(src.getReq().getWhere());
        }
        src.getReq().setWhere(wPrev);

        final ListeFactureRenderer rend = new ListeFactureRenderer();
        for (SQLTableModelColumn column : src.getColumns()) {
            if (column.getClass().isAssignableFrom(SQLTableModelColumnPath.class)) {
                ((SQLTableModelColumnPath) column).setEditable(false);
            }
            // FIXME Voir pour appliquer le renderer correctement
            if (!column.getName().startsWith("Avancement")) {
                column.setRenderer(rend);
            }
        }

        final SQLTableModelColumn dateEnvoiCol = src.getColumn(eltFacture.getTable().getField("DATE_ENVOI"));
            ((SQLTableModelColumnPath) dateEnvoiCol).setEditable(true);
        final SQLTableModelColumn dateReglCol = src.getColumn(eltFacture.getTable().getField("DATE_REGLEMENT"));
        if (dateReglCol != null)
            ((SQLTableModelColumnPath) dateReglCol).setEditable(true);

            // Edition des dates d'envois
            dateEnvoiCol.setColumnInstaller(new IClosure<TableColumn>() {
                @Override
                public void executeChecked(TableColumn columnDateEnvoi) {
                    final org.openconcerto.ui.table.TimestampTableCellEditor cellEditor = new org.openconcerto.ui.table.TimestampTableCellEditor();
                    cellEditor.setAllowNull(true);
                    columnDateEnvoi.setCellEditor(cellEditor);
                    columnDateEnvoi.setCellRenderer(new DateEnvoiRenderer());
                }
            });

        // Edition des dates de reglement
        if (dateReglCol != null) {
            dateReglCol.setColumnInstaller(new IClosure<TableColumn>() {

                @Override
                public void executeChecked(TableColumn columnDateReglement) {
                    final org.openconcerto.ui.table.TimestampTableCellEditor cellEditor = new org.openconcerto.ui.table.TimestampTableCellEditor();
                    cellEditor.setAllowNull(true);
                    columnDateReglement.setCellEditor(cellEditor);
                    columnDateReglement.setCellRenderer(new DateEnvoiRenderer());
                }
            });
        }

        src.getColumns().add(new SQLTableModelColumnPath(new FieldPath(new Path(eltFacture.getTable()).addForeignField(SaisieVenteFactureSQLElement.MESSAGE_FIELD_NAME), "MessageIdentification")));

        this.listeFact = new ListeGestCommEltPanel(eltFacture, new IListe(src), true);

        this.listeFact.setOpaque(false);
        this.listeFact.getListe().setModificationAllowed(true);
        final JTable tableFact = this.listeFact.getListe().getJTable();
        final SQLTableModelColumn numeroCol = src.getColumn(eltFacture.getTable().getField("NUMERO"));
        ((TableSorter) tableFact.getModel()).setSortingStatus(src.getColumns().indexOf(numeroCol), TableSorter.ASCENDING);

        JPanel panelFacture = new JPanel(new GridBagLayout());
        GridBagConstraints cFacture = new DefaultGridBagConstraints();

        cFacture.gridy++;
        cFacture.gridx = 0;
        cFacture.weighty = 1;
        cFacture.weightx = 1;
        cFacture.gridwidth = GridBagConstraints.REMAINDER;
        cFacture.fill = GridBagConstraints.BOTH;
        panelFacture.add(this.listeFact, cFacture);

        List<SQLField> l = new ArrayList<SQLField>();
        if (this.listeFact.getListe().getSource().getColumn(eltFacture.getTable().getField("T_HA")) != null) {
            l.add(eltFacture.getTable().getField("T_HA"));
        }
        l.add(eltFacture.getTable().getField("T_HT"));
        l.add(eltFacture.getTable().getField("T_TTC"));
        final IListTotalPanel total = new IListTotalPanel(this.listeFact.getListe(), l);
        cFacture.weighty = 0;
        cFacture.fill = GridBagConstraints.NONE;
        cFacture.gridy++;
        cFacture.anchor = GridBagConstraints.EAST;
        total.setOpaque(false);
        panelFacture.add(total, cFacture);


        IListFilterDatePanel filterDate = new IListFilterDatePanel(this.listeFact.getListe(), eltFacture.getTable().getField("DATE"), IListFilterDatePanel.getDefaultMap());
        cFacture.weighty = 0;
        cFacture.fill = GridBagConstraints.HORIZONTAL;
        cFacture.gridy++;
        filterDate.setOpaque(false);
        panelFacture.add(filterDate, cFacture);
        tabbedPane.add("Ventes avec facture", panelFacture);

        PredicateRowAction actionRegle = new PredicateRowAction(new AbstractAction("Facture réglée") {

            @Override
            public void actionPerformed(ActionEvent e) {
                final List<SQLRowValues> selectedRows = IListe.get(e).getSelectedRows();
                for (SQLRowAccessor sqlRowAccessor : selectedRows) {
                    final SQLRowValues rowVals = sqlRowAccessor.asRow().createEmptyUpdateRow();
                    rowVals.put("DATE_REGLEMENT", new Date());
                    try {
                        rowVals.update();
                    } catch (SQLException e1) {
                        ExceptionHandler.handle("Modification impossible", e1);
                    }
                }
            }
        }, true);
        actionRegle.setPredicate(IListeEvent.getNonEmptySelectionPredicate());
        this.listeFact.getListe().addIListeAction(actionRegle);

        PredicateRowAction actionEnvoye = new PredicateRowAction(new AbstractAction("Facture envoyée") {

            @Override
            public void actionPerformed(ActionEvent e) {
                final List<SQLRowValues> selectedRows = IListe.get(e).getSelectedRows();
                for (SQLRowAccessor sqlRowAccessor : selectedRows) {
                    final SQLRowValues rowVals = sqlRowAccessor.asRow().createEmptyUpdateRow();
                    rowVals.put("DATE_ENVOI", new Date());
                    try {
                        rowVals.update();
                    } catch (SQLException e1) {
                        ExceptionHandler.handle("Modification impossible", e1);
                    }
                }
            }
        }, true);
        actionEnvoye.setPredicate(IListeEvent.getNonEmptySelectionPredicate());
        this.listeFact.getListe().addIListeAction(actionEnvoye);


            {
                // Tab Vente caisse
                final TicketCaisseSQLElement ticketElement = dir.getElement(TicketCaisseSQLElement.class);
                ListeViewPanel panelTicket = new ListeViewPanel(ticketElement) {
                    @Override
                    protected void handleAction(JButton source, ActionEvent evt) {
                        if (source == this.buttonModifier) {
                            POSConfiguration posConf = POSConfiguration.getInstance();
                            try {
                                if (posConf == null) {
                                    posConf = POSConfiguration.setInstance();
                                    ArticleCache.initCache(dir);
                                }
                            } catch (Exception e) {
                                ExceptionHandler.handle(source, "Impossible d'initialiser la configuration de la caisse", e);
                                return;
                            }
                            new PanelFrame(new TextAreaTicketPanel(ticketElement, posConf, this.getListe().fetchSelectedRow()), "Ticket").setVisible(true);
                        } else {
                            super.handleAction(source, evt);
                        }
                    }
                };

                JPanel panel = new JPanel(new GridBagLayout());
                GridBagConstraints cc = new DefaultGridBagConstraints();
                cc.weightx = 1;
                cc.weighty = 1;
                cc.fill = GridBagConstraints.BOTH;
                panel.add(panelTicket, cc);

                final List<SQLField> l2 = new ArrayList<SQLField>();
                l2.add(panelTicket.getElement().getTable().getField("TOTAL_HT"));
                l2.add(panelTicket.getElement().getTable().getField("TOTAL_TTC"));
                final IListTotalPanel total2 = new IListTotalPanel(panelTicket.getListe(), l2);
                cc.weighty = 0;
                cc.fill = GridBagConstraints.NONE;
                cc.gridy++;
                cc.anchor = GridBagConstraints.EAST;
                total2.setOpaque(false);
                panel.add(total2, cc);

                IListFilterDatePanel filterDate2 = new IListFilterDatePanel(panelTicket.getListe(), panelTicket.getElement().getTable().getField("DATE"), IListFilterDatePanel.getDefaultMap());
                cc.weighty = 0;
                cc.fill = GridBagConstraints.HORIZONTAL;
                cc.gridy++;
                filterDate2.setOpaque(false);
                panel.add(filterDate2, cc);

                tabbedPane.add("Ventes caisse", panel);

            }
            // Tab Vente comptoir
            {
                final ListeGestCommEltPanel listeVC = new ListeGestCommEltPanel(dir.getElement("SAISIE_VENTE_COMPTOIR"), true);
                listeVC.getListe().setModificationAllowed(false);
                listeVC.setOpaque(false);

                final JTable table = listeVC.getListe().getJTable();
                for (int i = 0; i < table.getColumnCount(); i++) {
                    if (table.getColumnClass(i) == Long.class || table.getColumnClass(i) == BigInteger.class) {
                        table.getColumnModel().getColumn(i).setCellRenderer(rend);
                    }
                }

                JPanel panelComptoir = new JPanel(new GridBagLayout());
                GridBagConstraints cc = new DefaultGridBagConstraints();
                cc.weightx = 1;
                cc.weighty = 1;
                cc.fill = GridBagConstraints.BOTH;
                panelComptoir.add(listeVC, cc);

                final List<SQLField> l2 = new ArrayList<SQLField>();
                l2.add(listeVC.getElement().getTable().getField("MONTANT_HT"));
                l2.add(listeVC.getElement().getTable().getField("MONTANT_TTC"));
                final IListTotalPanel total2 = new IListTotalPanel(listeVC.getListe(), l2);
                cc.weighty = 0;
                cc.fill = GridBagConstraints.NONE;
                cc.gridy++;
                cc.anchor = GridBagConstraints.EAST;
                total2.setOpaque(false);
                panelComptoir.add(total2, cc);

                IListFilterDatePanel filterDate2 = new IListFilterDatePanel(listeVC.getListe(), listeVC.getElement().getTable().getField("DATE"), IListFilterDatePanel.getDefaultMap());
                cc.weighty = 0;
                cc.fill = GridBagConstraints.HORIZONTAL;
                cc.gridy++;
                filterDate2.setOpaque(false);
                panelComptoir.add(filterDate2, cc);

                tabbedPane.add("Ventes comptoir", panelComptoir);
            }
        this.add(tabbedPane, c);
    }

}