⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jproductlineedit.java

📁 是一个专门设计用于触摸屏的POS(point of sales)应用软件
💻 JAVA
字号:
//    Tina POS is a point of sales application designed for touch screens.//    Copyright (C) 2005 Adrian Romero Corchado.//    http://sourceforge.net/projects/tinapos////    This program is free software; you can redistribute it and/or modify//    it under the terms of the GNU General Public License as published by//    the Free Software Foundation; either version 2 of the License, or//    (at your option) any later version.////    This program is distributed in the hope that it will be useful,//    but WITHOUT ANY WARRANTY; without even the implied warranty of//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the//    GNU General Public License for more details.////    You should have received a copy of the GNU General Public License//    along with this program; if not, write to the Free Software//    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USApackage net.adrianromero.tpv.panelsales;import java.awt.Component;import java.awt.Dialog;import java.awt.Frame;import java.awt.Window;import java.beans.PropertyChangeEvent;import java.beans.PropertyChangeListener;import javax.swing.JFrame;import net.adrianromero.basic.BasicException;import net.adrianromero.tpv.forms.AppLocal;import net.adrianromero.tpv.forms.AppView;import net.adrianromero.tpv.ticket.TicketLineInfo;public class JProductLineEdit extends javax.swing.JDialog {        private boolean m_bok;    private TicketLineInfo m_oLineTicket;    private TicketLineInfo m_oLine;    private boolean m_bunitsok;    private boolean m_bpriceok;                /** Creates new form JProductLineEdit */    private JProductLineEdit(java.awt.Frame parent, boolean modal) {        super(parent, modal);    }    /** Creates new form JProductLineEdit */    private JProductLineEdit(java.awt.Dialog parent, boolean modal) {        super(parent, modal);    }        private boolean init(AppView app, TicketLineInfo oLine) {        // Inicializo los componentes        initComponents();                m_oLineTicket = oLine;        m_oLine = new TicketLineInfo(oLine);        m_bunitsok = true;        m_bpriceok = true;        m_jName.setEnabled(m_oLine.getProductReference() == null);                m_jName.setText(m_oLine.getProductName());        m_jUnits.setValue(oLine.getMultiply());        m_jPrice.setValue(oLine.getPrice());         m_jPriceTax.setValue(oLine.getPriceTax());                m_jName.addPropertyChangeListener("Edition", new RecalculateName());        m_jUnits.addPropertyChangeListener("Edition", new RecalculateUnits());        m_jPrice.addPropertyChangeListener("Edition", new RecalculatePrice());        m_jPriceTax.addPropertyChangeListener("Edition", new RecalculatePriceTax());        m_jName.addEditorKeys(m_jKeys);        m_jUnits.addEditorKeys(m_jKeys);        m_jPrice.addEditorKeys(m_jKeys);        m_jPriceTax.addEditorKeys(m_jKeys);                if (m_jName.isEnabled()) {            m_jName.activate();        } else {            m_jPrice.activate();        }                printTotals();        getRootPane().setDefaultButton(m_jButtonOK);           m_bok = false;        setVisible(true);              return m_bok;    }        private void printTotals() {                if (m_bunitsok && m_bpriceok) {            m_jTaxrate.setText(m_oLine.printTaxRate());            m_jSubtotal.setText(m_oLine.printSubValue());            m_jTotal.setText(m_oLine.printValue());            m_jButtonOK.setEnabled(true);       } else {            m_jTaxrate.setText(null);            m_jSubtotal.setText(null);            m_jTotal.setText(null);            m_jButtonOK.setEnabled(false);        }    }        private class RecalculateUnits implements PropertyChangeListener {        public void propertyChange(PropertyChangeEvent evt) {            try {                m_oLine.setMultiply(m_jUnits.getValue());                m_bunitsok = true;            } catch (BasicException e) {                m_bunitsok = false;            }                printTotals();        }    }        private class RecalculatePrice implements PropertyChangeListener {        public void propertyChange(PropertyChangeEvent evt) {            try {                m_oLine.setPrice(m_jPrice.getValue());                m_jPriceTax.setValue(m_oLine.getPriceTax());                m_bpriceok = true;            } catch (BasicException e) {                // m_jPriceTax.setValue(m_oLine.getPriceTax());                m_bpriceok = false;            }            printTotals();        }    }            private class RecalculatePriceTax implements PropertyChangeListener {        public void propertyChange(PropertyChangeEvent evt) {            try {                m_oLine.setPriceTax(m_jPriceTax.getValue());                m_jPrice.setValue(m_oLine.getPrice());                m_bpriceok = true;            } catch (BasicException e) {                // m_jPriceTax.setValue(m_oLine.getPriceTax());                m_bpriceok = false;            }            printTotals();        }    }           private class RecalculateName implements PropertyChangeListener {        public void propertyChange(PropertyChangeEvent evt) {            m_oLine.setProductName(m_jName.getText());        }    }           private static Window getWindow(Component parent) {        if (parent == null) {            return new JFrame();        } else if (parent instanceof Frame || parent instanceof Dialog) {            return (Window)parent;        } else {            return getWindow(parent.getParent());        }    }               public static boolean showMessage(Component parent, AppView app, TicketLineInfo oLine) {                 Window window = getWindow(parent);                JProductLineEdit myMsg;        if (window instanceof Frame) {             myMsg = new JProductLineEdit((Frame) window, true);        } else {            myMsg = new JProductLineEdit((Dialog) window, true);        }        return myMsg.init(app, oLine);    }                /** This method is called from within the constructor to     * initialize the form.     * WARNING: Do NOT modify this code. The content of this method is     * always regenerated by the Form Editor.     */    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents    private void initComponents() {        jPanel1 = new javax.swing.JPanel();        m_jButtonOK = new javax.swing.JButton();        m_jButtonCancel = new javax.swing.JButton();        jPanel2 = new javax.swing.JPanel();        jLabel1 = new javax.swing.JLabel();        jLabel2 = new javax.swing.JLabel();        jLabel3 = new javax.swing.JLabel();        jLabel4 = new javax.swing.JLabel();        m_jName = new net.adrianromero.editor.JEditorString();        m_jUnits = new net.adrianromero.editor.JEditorDouble();        m_jPrice = new net.adrianromero.editor.JEditorCurrency();        m_jPriceTax = new net.adrianromero.editor.JEditorCurrency();        m_jTaxrate = new javax.swing.JLabel();        jLabel5 = new javax.swing.JLabel();        jLabel6 = new javax.swing.JLabel();        m_jTotal = new javax.swing.JLabel();        jLabel7 = new javax.swing.JLabel();        m_jSubtotal = new javax.swing.JLabel();        jPanel3 = new javax.swing.JPanel();        jPanel4 = new javax.swing.JPanel();        m_jKeys = new net.adrianromero.editor.JEditorKeys();        setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);        setTitle(AppLocal.getIntString("label.editline"));        jPanel1.setLayout(new java.awt.FlowLayout(java.awt.FlowLayout.RIGHT));        m_jButtonOK.setIcon(new javax.swing.ImageIcon(getClass().getResource("/net/adrianromero/images/button_ok.png")));        m_jButtonOK.setText(AppLocal.getIntString("Button.OK"));        m_jButtonOK.setFocusPainted(false);        m_jButtonOK.setFocusable(false);        m_jButtonOK.setMargin(new java.awt.Insets(8, 16, 8, 16));        m_jButtonOK.setRequestFocusEnabled(false);        m_jButtonOK.addActionListener(new java.awt.event.ActionListener() {            public void actionPerformed(java.awt.event.ActionEvent evt) {                m_jButtonOKActionPerformed(evt);            }        });        jPanel1.add(m_jButtonOK);        m_jButtonCancel.setIcon(new javax.swing.ImageIcon(getClass().getResource("/net/adrianromero/images/button_cancel.png")));        m_jButtonCancel.setText(AppLocal.getIntString("Button.Cancel"));        m_jButtonCancel.setFocusPainted(false);        m_jButtonCancel.setFocusable(false);        m_jButtonCancel.setMargin(new java.awt.Insets(8, 16, 8, 16));        m_jButtonCancel.setRequestFocusEnabled(false);        m_jButtonCancel.addActionListener(new java.awt.event.ActionListener() {            public void actionPerformed(java.awt.event.ActionEvent evt) {                m_jButtonCancelActionPerformed(evt);            }        });        jPanel1.add(m_jButtonCancel);        getContentPane().add(jPanel1, java.awt.BorderLayout.SOUTH);        jPanel2.setLayout(null);        jLabel1.setText(AppLocal.getIntString("label.price"));        jPanel2.add(jLabel1);        jLabel1.setBounds(10, 80, 90, 14);        jLabel2.setText(AppLocal.getIntString("label.units"));        jPanel2.add(jLabel2);        jLabel2.setBounds(10, 50, 90, 14);        jLabel3.setText(AppLocal.getIntString("label.pricetax"));        jPanel2.add(jLabel3);        jLabel3.setBounds(10, 110, 90, 14);        jLabel4.setText(AppLocal.getIntString("label.item"));        jPanel2.add(jLabel4);        jLabel4.setBounds(10, 20, 90, 14);        jPanel2.add(m_jName);        m_jName.setBounds(100, 20, 270, 25);        jPanel2.add(m_jUnits);        m_jUnits.setBounds(100, 50, 240, 25);        jPanel2.add(m_jPrice);        m_jPrice.setBounds(100, 80, 240, 25);        jPanel2.add(m_jPriceTax);        m_jPriceTax.setBounds(100, 110, 240, 25);        m_jTaxrate.setBackground(javax.swing.UIManager.getDefaults().getColor("TextField.disabledBackground"));        m_jTaxrate.setHorizontalAlignment(javax.swing.SwingConstants.RIGHT);        m_jTaxrate.setBorder(javax.swing.BorderFactory.createCompoundBorder(javax.swing.BorderFactory.createLineBorder(javax.swing.UIManager.getDefaults().getColor("Button.darkShadow")), javax.swing.BorderFactory.createEmptyBorder(1, 4, 1, 4)));        m_jTaxrate.setOpaque(true);        m_jTaxrate.setPreferredSize(new java.awt.Dimension(150, 25));        m_jTaxrate.setRequestFocusEnabled(false);        jPanel2.add(m_jTaxrate);        m_jTaxrate.setBounds(100, 140, 210, 25);        jLabel5.setText(AppLocal.getIntString("label.tax"));        jPanel2.add(jLabel5);        jLabel5.setBounds(10, 140, 90, 14);        jLabel6.setText(AppLocal.getIntString("label.totalcash"));        jPanel2.add(jLabel6);        jLabel6.setBounds(10, 200, 90, 14);        m_jTotal.setBackground(javax.swing.UIManager.getDefaults().getColor("TextField.disabledBackground"));        m_jTotal.setHorizontalAlignment(javax.swing.SwingConstants.RIGHT);        m_jTotal.setBorder(javax.swing.BorderFactory.createCompoundBorder(javax.swing.BorderFactory.createLineBorder(javax.swing.UIManager.getDefaults().getColor("Button.darkShadow")), javax.swing.BorderFactory.createEmptyBorder(1, 4, 1, 4)));        m_jTotal.setOpaque(true);        m_jTotal.setPreferredSize(new java.awt.Dimension(150, 25));        m_jTotal.setRequestFocusEnabled(false);        jPanel2.add(m_jTotal);        m_jTotal.setBounds(100, 200, 210, 25);        jLabel7.setText(AppLocal.getIntString("label.subtotalcash"));        jPanel2.add(jLabel7);        jLabel7.setBounds(10, 170, 90, 14);        m_jSubtotal.setBackground(javax.swing.UIManager.getDefaults().getColor("TextField.disabledBackground"));        m_jSubtotal.setHorizontalAlignment(javax.swing.SwingConstants.RIGHT);        m_jSubtotal.setBorder(javax.swing.BorderFactory.createCompoundBorder(javax.swing.BorderFactory.createLineBorder(javax.swing.UIManager.getDefaults().getColor("Button.darkShadow")), javax.swing.BorderFactory.createEmptyBorder(1, 4, 1, 4)));        m_jSubtotal.setOpaque(true);        m_jSubtotal.setPreferredSize(new java.awt.Dimension(150, 25));        m_jSubtotal.setRequestFocusEnabled(false);        jPanel2.add(m_jSubtotal);        m_jSubtotal.setBounds(100, 170, 210, 25);        getContentPane().add(jPanel2, java.awt.BorderLayout.CENTER);        jPanel3.setLayout(new java.awt.BorderLayout());        jPanel4.setLayout(new javax.swing.BoxLayout(jPanel4, javax.swing.BoxLayout.Y_AXIS));        jPanel4.add(m_jKeys);        jPanel3.add(jPanel4, java.awt.BorderLayout.NORTH);        getContentPane().add(jPanel3, java.awt.BorderLayout.EAST);        java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();        setBounds((screenSize.width-584)/2, (screenSize.height-390)/2, 584, 390);    }// </editor-fold>//GEN-END:initComponents    private void m_jButtonCancelActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_m_jButtonCancelActionPerformed        dispose();    }//GEN-LAST:event_m_jButtonCancelActionPerformed    private void m_jButtonOKActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_m_jButtonOKActionPerformed        m_oLineTicket.setProductName(m_oLine.getProductName());                 m_oLineTicket.setMultiply(m_oLine.getMultiply());        m_oLineTicket.setPrice(m_oLine.getPrice());                m_bok = true;                dispose();    }//GEN-LAST:event_m_jButtonOKActionPerformed        // Variables declaration - do not modify//GEN-BEGIN:variables    private javax.swing.JLabel jLabel1;    private javax.swing.JLabel jLabel2;    private javax.swing.JLabel jLabel3;    private javax.swing.JLabel jLabel4;    private javax.swing.JLabel jLabel5;    private javax.swing.JLabel jLabel6;    private javax.swing.JLabel jLabel7;    private javax.swing.JPanel jPanel1;    private javax.swing.JPanel jPanel2;    private javax.swing.JPanel jPanel3;    private javax.swing.JPanel jPanel4;    private javax.swing.JButton m_jButtonCancel;    private javax.swing.JButton m_jButtonOK;    private net.adrianromero.editor.JEditorKeys m_jKeys;    private net.adrianromero.editor.JEditorString m_jName;    private net.adrianromero.editor.JEditorCurrency m_jPrice;    private net.adrianromero.editor.JEditorCurrency m_jPriceTax;    private javax.swing.JLabel m_jSubtotal;    private javax.swing.JLabel m_jTaxrate;    private javax.swing.JLabel m_jTotal;    private net.adrianromero.editor.JEditorDouble m_jUnits;    // End of variables declaration//GEN-END:variables    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -