// Wanda POS - Africa's Gift to the World // Copyright (c) 2014-2015 IT-Kamer & previous Unicenta POS and Openbravo POS works // www.erp-university-africa.com // // This file is part of Wanda POS // // Wanda POS 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. // // Wanda POS 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 Wanda POS. If not, see <http://www.gnu.org/licenses/>. package com.openbravo.pos.inventory; import com.openbravo.basic.BasicException; import com.openbravo.data.user.DirtyManager; import com.openbravo.data.user.EditorRecord; import com.openbravo.format.Formats; import com.openbravo.pos.forms.AppLocal; import java.awt.Component; import java.util.UUID; /** * * @author adrian */ public class AttributeValuesEditor extends javax.swing.JPanel implements EditorRecord { private Object id; private Object attid; private Object insertid; /** Creates new form AttributesValuesEditor * @param dirty */ public AttributeValuesEditor(DirtyManager dirty) { initComponents(); jValue.getDocument().addDocumentListener(dirty); } /** * * @param insertid */ public void setInsertId(String insertid) { this.insertid = insertid; } /** * */ @Override public void refresh() { } /** * */ @Override public void writeValueEOF() { id = null; attid = null; jValue.setText(null); jValue.setEnabled(false); } /** * */ @Override public void writeValueInsert() { id = UUID.randomUUID().toString(); attid = insertid; jValue.setText(null); jValue.setEnabled(true); } /** * * @param value */ @Override public void writeValueEdit(Object value) { Object[] obj = (Object[]) value; id = obj[0]; attid = obj[1]; jValue.setText(Formats.STRING.formatValue(obj[2])); jValue.setEnabled(true); } /** * * @param value */ @Override public void writeValueDelete(Object value) { Object[] obj = (Object[]) value; id = obj[0]; attid = obj[1]; jValue.setText(Formats.STRING.formatValue(obj[2])); jValue.setEnabled(false); } /** * * @return */ @Override public Component getComponent() { return this; } /** * * @return * @throws BasicException */ @Override public Object createValue() throws BasicException { return new Object[] { id, attid, Formats.STRING.formatValue(jValue.getText()) }; } /** 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. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jLabel2 = new javax.swing.JLabel(); jValue = new javax.swing.JTextField(); jLabel2.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N jLabel2.setText(AppLocal.getIntString("label.value")); // NOI18N jValue.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this); this.setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 80, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jValue, javax.swing.GroupLayout.PREFERRED_SIZE, 200, javax.swing.GroupLayout.PREFERRED_SIZE) .addContainerGap()) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jValue, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)) .addContainerGap(12, Short.MAX_VALUE)) ); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JLabel jLabel2; private javax.swing.JTextField jValue; // End of variables declaration//GEN-END:variables }