// uniCenta oPOS - Touch Friendly Point Of Sale // Copyright (c) 2009-2013 uniCenta & previous Openbravo POS works // http://www.unicenta.net/unicentaopos // // This file is part of uniCenta oPOS // // uniCenta oPOS 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 3 of the License, or // (at your option) any later version. // // uniCenta oPOS 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 uniCenta oPOS. If not, see <http://www.gnu.org/licenses/>. package com.openbravo.pos.inventory; import com.openbravo.data.gui.MessageInf; import com.openbravo.data.user.BrowsableEditableData; import com.openbravo.pos.forms.AppLocal; import com.openbravo.pos.scanpal2.DeviceScanner; import com.openbravo.pos.scanpal2.DeviceScannerException; import java.awt.Component; import java.awt.Dialog; import java.awt.Frame; import java.awt.Window; import javax.swing.JFrame; import javax.swing.ListModel; /** * * @author adrianromero */ public class JDlgUploadProducts extends javax.swing.JDialog { // private AppView m_App; private DeviceScanner m_scanner; private BrowsableEditableData m_bd; /** Creates new form JDlgUploadProducts */ private JDlgUploadProducts(java.awt.Frame parent, boolean modal) { super(parent, modal); } /** Creates new form JDlgUploadProducts */ private JDlgUploadProducts(java.awt.Dialog parent, boolean modal) { super(parent, modal); } private void init(DeviceScanner scanner, BrowsableEditableData bd) { initComponents(); getRootPane().setDefaultButton(jcmdOK); m_scanner = scanner; m_bd = bd; //show(); setVisible(true); // return; } 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 void showMessage(Component parent, DeviceScanner scanner, BrowsableEditableData bd) { Window window = getWindow(parent); JDlgUploadProducts myMsg; if (window instanceof Frame) { myMsg = new JDlgUploadProducts((Frame) window, true); } else { myMsg = new JDlgUploadProducts((Dialog) window, true); } myMsg.init(scanner, bd); } /** 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() { jPanel2 = new javax.swing.JPanel(); jcmdOK = new javax.swing.JButton(); jcmdCancel = new javax.swing.JButton(); jPanel1 = new javax.swing.JPanel(); jLabel1 = new javax.swing.JLabel(); setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); setTitle(AppLocal.getIntString("caption.upload")); // NOI18N setResizable(false); jPanel2.setLayout(new java.awt.FlowLayout(java.awt.FlowLayout.RIGHT)); jcmdOK.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N jcmdOK.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/openbravo/images/ok.png"))); // NOI18N jcmdOK.setText(AppLocal.getIntString("Button.OK")); // NOI18N jcmdOK.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jcmdOKActionPerformed(evt); } }); jPanel2.add(jcmdOK); jcmdCancel.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N jcmdCancel.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/openbravo/images/cancel.png"))); // NOI18N jcmdCancel.setText(AppLocal.getIntString("Button.Cancel")); // NOI18N jcmdCancel.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jcmdCancelActionPerformed(evt); } }); jPanel2.add(jcmdCancel); getContentPane().add(jPanel2, java.awt.BorderLayout.SOUTH); jPanel1.setLayout(null); jLabel1.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N jLabel1.setText(AppLocal.getIntString("message.preparescanner")); // NOI18N jPanel1.add(jLabel1); jLabel1.setBounds(20, 30, 420, 15); getContentPane().add(jPanel1, java.awt.BorderLayout.CENTER); java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize(); setBounds((screenSize.width-474)/2, (screenSize.height-161)/2, 474, 161); }// </editor-fold>//GEN-END:initComponents private void jcmdCancelActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jcmdCancelActionPerformed dispose(); }//GEN-LAST:event_jcmdCancelActionPerformed private void jcmdOKActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jcmdOKActionPerformed // Ponemos el estado de leyendo productos String stext = jLabel1.getText(); jLabel1.setText(AppLocal.getIntString("label.uploadingproducts")); jcmdOK.setEnabled(false); jcmdCancel.setEnabled(false); // Ejecutamos la descarga... try { m_scanner.connectDevice(); m_scanner.startUploadProduct(); ListModel l = m_bd.getListModel(); for (int i = 0; i < l.getSize(); i++) { Object[] myprod = (Object[]) l.getElementAt(i); m_scanner.sendProduct( (String) myprod[3], // name (String) myprod[2], // barcode (Double) myprod[6] // buy price ); } m_scanner.stopUploadProduct(); MessageInf msg = new MessageInf(MessageInf.SGN_SUCCESS, AppLocal.getIntString("message.scannerok")); msg.show(this); } catch (DeviceScannerException e) { MessageInf msg = new MessageInf(MessageInf.SGN_WARNING, AppLocal.getIntString("message.scannerfail"), e); msg.show(this); } finally { m_scanner.disconnectDevice(); } // Deshacemos el estado de leyendo productos jLabel1.setText(stext); jcmdOK.setEnabled(true); jcmdCancel.setEnabled(true); dispose(); }//GEN-LAST:event_jcmdOKActionPerformed // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JLabel jLabel1; private javax.swing.JPanel jPanel1; private javax.swing.JPanel jPanel2; private javax.swing.JButton jcmdCancel; private javax.swing.JButton jcmdOK; // End of variables declaration//GEN-END:variables }