Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package account; import com.google.gson.Gson; import com.google.gson.JsonArray; import com.google.gson.JsonObject; import java.awt.BorderLayout; import java.awt.MouseInfo; import java.awt.Toolkit; import java.awt.datatransfer.Clipboard; import java.awt.datatransfer.StringSelection; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.Vector; import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.AbstractAction; import javax.swing.Action; import javax.swing.JComponent; import javax.swing.JLabel; import javax.swing.JMenuItem; import javax.swing.JPanel; import javax.swing.JPopupMenu; import javax.swing.JTextField; import javax.swing.KeyStroke; import javax.swing.RowFilter; import javax.swing.event.DocumentEvent; import javax.swing.event.DocumentListener; import javax.swing.table.DefaultTableModel; import javax.swing.table.TableModel; import javax.swing.table.TableRowSorter; import model.AccountHead; import retrofitAPI.AccountAPI; import retrofitAPI.StartUpAPI; import skable.Constants; import skable.SkableHome; import support.Library; import support.OurDateChooser; import support.RightAlignment; import transactionController.SelectAccount; /** * * @author bhaumik */ public class PurchsaeReturnRegisterDetailAccount extends javax.swing.JInternalFrame { /** * Creates new form SalesRegister */ Library lb = Library.getInstance(); DefaultTableModel dtm = null; String ac_cd = ""; private TableRowSorter<TableModel> rowSorter; private JTextField jtfFilter = new JTextField(); public PurchsaeReturnRegisterDetailAccount() { initComponents(); registerShortKeys(); setPopUp(); setUpData(); dtm = (DefaultTableModel) jTable1.getModel(); lb.setDateChooserPropertyInit(jtxtToDate); lb.setDateChooserPropertyInit(jtxtFromDate); jTable1.getColumnModel().getColumn(9).setCellRenderer(new RightAlignment()); jTable1.getColumnModel().getColumn(10).setCellRenderer(new RightAlignment()); jTable1.getColumnModel().getColumn(11).setCellRenderer(new RightAlignment()); jTable1.getColumnModel().getColumn(12).setCellRenderer(new RightAlignment()); jTable1.getColumnModel().getColumn(13).setCellRenderer(new RightAlignment()); jTable1.getColumnModel().getColumn(14).setCellRenderer(new RightAlignment()); jTable1.getColumnModel().getColumn(15).setCellRenderer(new RightAlignment()); jTable1.getColumnModel().getColumn(16).setCellRenderer(new RightAlignment()); jTable1.getColumnModel().getColumn(17).setCellRenderer(new RightAlignment()); jTable1.getColumnModel().getColumn(18).setCellRenderer(new RightAlignment()); searchOnTextFields(); } private void setPopUp() { final JPopupMenu popup = new JPopupMenu(); ActionListener menuListener = new ActionListener() { public void actionPerformed(ActionEvent event) { popup.setVisible(false); int row = jTable1.getSelectedRow(); int column = jTable1.getSelectedColumn(); if (row != -1 && column != -1) { String selection = jTable1.getValueAt(row, column).toString(); StringSelection data = new StringSelection(selection); Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard(); clipboard.setContents(data, data); } } }; final JMenuItem item; popup.add(item = new JMenuItem("COPY")); item.setHorizontalTextPosition(JMenuItem.RIGHT); item.addActionListener(menuListener); popup.setLocation(MouseInfo.getPointerInfo().getLocation()); jTable1.setComponentPopupMenu(popup); } private void setUpData() { jComboBox3.removeAllItems(); jComboBox3.addItem("All"); for (int i = 0; i < Constants.BRANCH.size(); i++) { jComboBox3.addItem(Constants.BRANCH.get(i).getBranch_name()); } jComboBox3.setSelectedItem(SkableHome.selected_branch.getBranch_name()); if (SkableHome.user_grp_cd.equalsIgnoreCase("1")) { jComboBox3.setEnabled(true); } else { jComboBox3.setEnabled(false); } } private void registerShortKeys() { KeyStroke dateKeyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_D, KeyEvent.ALT_MASK, false); Action dateKeyAction = new AbstractAction() { @Override public void actionPerformed(ActionEvent e) { jtxtFromDate.requestFocusInWindow(); } }; getRootPane().getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(dateKeyStroke, "Date"); getRootPane().getActionMap().put("Date", dateKeyAction); KeyStroke escapeKeyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0, false); Action escapeAction = new AbstractAction() { public void actionPerformed(ActionEvent e) { jbtnClose.doClick(); } }; getRootPane().getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(escapeKeyStroke, "ESCAPE"); getRootPane().getActionMap().put("ESCAPE", escapeAction); } private void searchOnTextFields() { this.rowSorter = new TableRowSorter<>(jTable1.getModel()); jTable1.setRowSorter(rowSorter); panel.add(new JLabel("Specify a word to match:"), BorderLayout.WEST); panel.add(jtfFilter, BorderLayout.CENTER); // setLayout(new BorderLayout()); // add(panel, BorderLayout.SOUTH); // add(new JScrollPane(jTable1), BorderLayout.CENTER); jtfFilter.getDocument().addDocumentListener(new DocumentListener() { @Override public void insertUpdate(DocumentEvent e) { String text = jtfFilter.getText(); if (text.trim().length() == 0) { rowSorter.setRowFilter(null); } else { rowSorter.setRowFilter(RowFilter.regexFilter("(?i)" + text)); } } @Override public void removeUpdate(DocumentEvent e) { String text = jtfFilter.getText(); if (text.trim().length() == 0) { rowSorter.setRowFilter(null); } else { rowSorter.setRowFilter(RowFilter.regexFilter("(?i)" + text)); } } @Override public void changedUpdate(DocumentEvent e) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } }); } @Override public void dispose() { try { SkableHome.removeFromScreen(SkableHome.tabbedPane.getSelectedIndex()); super.dispose(); } catch (Exception ex) { // lb.printToLogFile("Exception at dispose at codeBinding", ex); } } private void jbtnViewActionPerformedRoutine() { try { AccountAPI accountAPI = lb.getRetrofit().create(AccountAPI.class); if (ac_cd == null) { ac_cd = ""; } if (!jCheckBox1.isSelected()) { ac_cd = ""; } JsonObject call = accountAPI.PurchaseReturnRegisterAccount(jComboBox1.getSelectedIndex(), jComboBox3.getSelectedIndex(), lb.ConvertDateFormetForDB(jtxtFromDate.getText()), lb.ConvertDateFormetForDB(jtxtToDate.getText()), ac_cd).execute().body(); lb.addGlassPane(this); if (call != null) { JsonObject result = call; if (result.get("result").getAsInt() == 1) { JsonArray array = call.getAsJsonArray("data"); dtm.setRowCount(0); dtm.setRowCount(0); double cash = 0.00, bank = 0.00, card = 0.00; String tax_name = ""; for (int i = 0; i < array.size(); i++) { Vector row = new Vector(); row.add(array.get(i).getAsJsonObject().get("ref_no").getAsString()); row.add(array.get(i).getAsJsonObject().get("v_type").getAsString()); row.add(array.get(i).getAsJsonObject().get("inv_no").getAsString()); row.add(lb.ConvertDateFormetForDisplay( array.get(i).getAsJsonObject().get("v_date").getAsString())); row.add(array.get(i).getAsJsonObject().get("fname").getAsString()); row.add(array.get(i).getAsJsonObject().get("SR_ALIAS").getAsString()); cash = array.get(i).getAsJsonObject().get("CASH_AMT").getAsDouble(); bank = array.get(i).getAsJsonObject().get("BANK_AMT").getAsDouble(); card = array.get(i).getAsJsonObject().get("CARD_AMT").getAsDouble(); tax_name = array.get(i).getAsJsonObject().get("tax_name").getAsString(); row.add(array.get(i).getAsJsonObject().get("SR_NAME").getAsString()); row.add(array.get(i).getAsJsonObject().get("IMEI_NO").getAsString()); row.add(array.get(i).getAsJsonObject().get("SERAIL_NO").getAsString()); row.add(array.get(i).getAsJsonObject().get("QTY").getAsInt()); row.add(array.get(i).getAsJsonObject().get("RATE").getAsDouble()); row.add(array.get(i).getAsJsonObject().get("BASIC_ITEM_AMT").getAsDouble()); row.add(array.get(i).getAsJsonObject().get("tax_amt").getAsDouble()); row.add(array.get(i).getAsJsonObject().get("add_tax_amt").getAsDouble()); row.add(array.get(i).getAsJsonObject().get("DISC_RATE").getAsDouble()); row.add(array.get(i).getAsJsonObject().get("MRP").getAsDouble()); row.add(array.get(i).getAsJsonObject().get("AMT").getAsDouble()); row.add(array.get(i).getAsJsonObject().get("net_amt").getAsDouble()); row.add(tax_name); row.add(cash); row.add(bank); row.add(card); row.add(array.get(i).getAsJsonObject().get("bajaj_amt").getAsDouble()); row.add(lb.Convert2DecFmtForRs( array.get(i).getAsJsonObject().get("net_amt").getAsDouble() - cash - bank - card - array.get(i).getAsJsonObject().get("bajaj_amt").getAsDouble())); row.add(Constants.BRANCH.get(array.get(i).getAsJsonObject().get("branch_cd").getAsInt() - 1) .getBranch_name()); dtm.addRow(row); } lb.setColumnSizeForTable(jTable1, jPanel1.getWidth()); lb.removeGlassPane(PurchsaeReturnRegisterDetailAccount.this); } else { lb.removeGlassPane(PurchsaeReturnRegisterDetailAccount.this); lb.showMessageDailog(call.get("Cause").getAsString()); } } } catch (IOException ex) { Logger.getLogger(PurchsaeReturnRegisterDetailAccount.class.getName()).log(Level.SEVERE, null, ex); } } private void callExcel() { try { ArrayList rows = new ArrayList(); for (int i = 0; i < jTable1.getRowCount(); i++) { ArrayList row = new ArrayList(); row.add(jTable1.getValueAt(i, 1).toString()); row.add(jTable1.getValueAt(i, 2).toString()); row.add(jTable1.getValueAt(i, 3).toString()); row.add(jTable1.getValueAt(i, 4).toString()); row.add(jTable1.getValueAt(i, 5).toString()); row.add(jTable1.getValueAt(i, 6).toString()); row.add(jTable1.getValueAt(i, 7).toString()); row.add(jTable1.getValueAt(i, 8).toString()); row.add(jTable1.getValueAt(i, 9).toString()); row.add(jTable1.getValueAt(i, 10).toString()); row.add(jTable1.getValueAt(i, 11).toString()); row.add(jTable1.getValueAt(i, 12).toString()); row.add(jTable1.getValueAt(i, 13).toString()); row.add(jTable1.getValueAt(i, 14).toString()); row.add(jTable1.getValueAt(i, 15).toString()); row.add(jTable1.getValueAt(i, 16).toString()); row.add(jTable1.getValueAt(i, 17).toString()); row.add(jTable1.getValueAt(i, 18).toString()); row.add(jTable1.getValueAt(i, 19).toString()); row.add(jTable1.getValueAt(i, 20).toString()); row.add(jTable1.getValueAt(i, 21).toString()); row.add(jTable1.getValueAt(i, 22).toString()); row.add(jTable1.getValueAt(i, 23).toString()); row.add(jTable1.getValueAt(i, 24).toString()); rows.add(row); } ArrayList header = new ArrayList(); header.add("Type"); header.add("Voucehr No"); header.add("Date"); header.add("Name"); header.add("Product Code"); header.add("Product Name"); header.add("IMEI"); header.add("Serail No"); header.add("Qty"); header.add("Rate"); header.add("Basic Amt"); header.add("Tax"); header.add("Add Tax"); header.add("Disc"); header.add("MRP"); header.add("Amt"); header.add("Net"); header.add("Tax Name"); header.add("Cash"); header.add("Bank"); header.add("Card"); header.add("Bajaj"); header.add("Debtor"); header.add("Branch"); lb.exportToExcel("Purchase Return Register Detail", header, rows, "Purchase Return Register Detail"); } catch (Exception ex) { lb.printToLogFile("Exception at callView as OPDPatientListDateWise", ex); } } private void setAccountDetailMobile(String param_cd, String value) { try { JsonObject call = lb.getRetrofit().create(StartUpAPI.class) .getDataFromServer(param_cd, value.toUpperCase()).execute().body(); if (call != null) { System.out.println(call.toString()); AccountHead header = (AccountHead) new Gson().fromJson(call, AccountHead.class); if (header.getResult() == 1) { SelectAccount sa = new SelectAccount(null, true); sa.setLocationRelativeTo(null); sa.fillData((ArrayList) header.getAccountHeader()); sa.setVisible(true); if (sa.getReturnStatus() == SelectAccount.RET_OK) { int row = sa.row; if (row != -1) { ac_cd = header.getAccountHeader().get(row).getACCD(); jtxtAcAlias.setText(ac_cd); jtxtAcName.setText(header.getAccountHeader().get(row).getFNAME()); jtxtFromDate.requestFocusInWindow(); } } } else { lb.showMessageDailog(header.getCause().toString()); } } } catch (Exception ex) { lb.printToLogFile("Exception at setData at account master in sales invoice", ex); } } /** * 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() { jPanel1 = new javax.swing.JPanel(); jScrollPane1 = new javax.swing.JScrollPane(); jTable1 = new javax.swing.JTable(); panel = new javax.swing.JPanel(); jPanel2 = new javax.swing.JPanel(); jtxtAcName = new javax.swing.JTextField(); jbtnView = new javax.swing.JButton(); jtxtToDate = new javax.swing.JTextField(); jtxtAcAlias = new javax.swing.JTextField(); jComboBox1 = new javax.swing.JComboBox(); jbtnClose = new javax.swing.JButton(); jCheckBox1 = new javax.swing.JCheckBox(); jbtnExcel = new javax.swing.JButton(); jBillDateBtn = new javax.swing.JButton(); jBillDateBtn1 = new javax.swing.JButton(); jLabel4 = new javax.swing.JLabel(); jLabel3 = new javax.swing.JLabel(); jtxtFromDate = new javax.swing.JTextField(); jComboBox3 = new javax.swing.JComboBox(); jPanel1.setLayout(new java.awt.BorderLayout()); jTable1.setModel(new javax.swing.table.DefaultTableModel(new Object[][] { }, new String[] { "ref_no", "Type", "Bill No", "Date", "Name", "Code", "Name", "IMEI", "Serail No", "Qty", "Rate", "Basic Item Amt", "Amt", "Basic Amt", "Tax", "Tax Amt", "Add tax Amt", "Net Amt", "Tax Name", "Cash", "Bank", "Card", "Bajaj Amt", "Debtors", "Branch" }) { boolean[] canEdit = new boolean[] { false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false }; public boolean isCellEditable(int rowIndex, int columnIndex) { return canEdit[columnIndex]; } }); jTable1.getTableHeader().setReorderingAllowed(false); jTable1.addMouseListener(new java.awt.event.MouseAdapter() { public void mouseClicked(java.awt.event.MouseEvent evt) { jTable1MouseClicked(evt); } }); jScrollPane1.setViewportView(jTable1); if (jTable1.getColumnModel().getColumnCount() > 0) { jTable1.getColumnModel().getColumn(0).setMinWidth(0); jTable1.getColumnModel().getColumn(0).setPreferredWidth(0); jTable1.getColumnModel().getColumn(0).setMaxWidth(0); jTable1.getColumnModel().getColumn(1).setResizable(false); jTable1.getColumnModel().getColumn(2).setResizable(false); jTable1.getColumnModel().getColumn(3).setResizable(false); jTable1.getColumnModel().getColumn(4).setResizable(false); jTable1.getColumnModel().getColumn(5).setResizable(false); jTable1.getColumnModel().getColumn(6).setResizable(false); jTable1.getColumnModel().getColumn(7).setResizable(false); jTable1.getColumnModel().getColumn(8).setResizable(false); jTable1.getColumnModel().getColumn(9).setResizable(false); jTable1.getColumnModel().getColumn(10).setResizable(false); jTable1.getColumnModel().getColumn(11).setResizable(false); jTable1.getColumnModel().getColumn(12).setResizable(false); jTable1.getColumnModel().getColumn(13).setResizable(false); jTable1.getColumnModel().getColumn(14).setResizable(false); jTable1.getColumnModel().getColumn(15).setResizable(false); jTable1.getColumnModel().getColumn(16).setResizable(false); jTable1.getColumnModel().getColumn(17).setResizable(false); jTable1.getColumnModel().getColumn(18).setResizable(false); jTable1.getColumnModel().getColumn(19).setResizable(false); jTable1.getColumnModel().getColumn(20).setResizable(false); jTable1.getColumnModel().getColumn(21).setResizable(false); jTable1.getColumnModel().getColumn(22).setResizable(false); jTable1.getColumnModel().getColumn(23).setResizable(false); jTable1.getColumnModel().getColumn(24).setResizable(false); } jPanel1.add(jScrollPane1, java.awt.BorderLayout.CENTER); panel.setLayout(new java.awt.BorderLayout()); jtxtAcName.addFocusListener(new java.awt.event.FocusAdapter() { public void focusGained(java.awt.event.FocusEvent evt) { jtxtAcNameFocusGained(evt); } }); jbtnView.setText("View Result"); jbtnView.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jbtnViewActionPerformed(evt); } }); jbtnView.addKeyListener(new java.awt.event.KeyAdapter() { public void keyPressed(java.awt.event.KeyEvent evt) { jbtnViewKeyPressed(evt); } }); jtxtToDate.addFocusListener(new java.awt.event.FocusAdapter() { public void focusGained(java.awt.event.FocusEvent evt) { jtxtToDateFocusGained(evt); } public void focusLost(java.awt.event.FocusEvent evt) { jtxtToDateFocusLost(evt); } }); jtxtToDate.addKeyListener(new java.awt.event.KeyAdapter() { public void keyPressed(java.awt.event.KeyEvent evt) { jtxtToDateKeyPressed(evt); } }); jtxtAcAlias.addFocusListener(new java.awt.event.FocusAdapter() { public void focusGained(java.awt.event.FocusEvent evt) { jtxtAcAliasFocusGained(evt); } public void focusLost(java.awt.event.FocusEvent evt) { jtxtAcAliasFocusLost(evt); } }); jtxtAcAlias.addKeyListener(new java.awt.event.KeyAdapter() { public void keyPressed(java.awt.event.KeyEvent evt) { jtxtAcAliasKeyPressed(evt); } public void keyReleased(java.awt.event.KeyEvent evt) { jtxtAcAliasKeyReleased(evt); } }); jComboBox1.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Cash", "Credit", "All" })); jComboBox1.addKeyListener(new java.awt.event.KeyAdapter() { public void keyPressed(java.awt.event.KeyEvent evt) { jComboBox1KeyPressed(evt); } }); jbtnClose.setText("Close"); jbtnClose.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jbtnCloseActionPerformed(evt); } }); jbtnClose.addKeyListener(new java.awt.event.KeyAdapter() { public void keyPressed(java.awt.event.KeyEvent evt) { jbtnCloseKeyPressed(evt); } }); jCheckBox1.setText("Name"); jbtnExcel.setText("Excel"); jbtnExcel.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jbtnExcelActionPerformed(evt); } }); jbtnExcel.addKeyListener(new java.awt.event.KeyAdapter() { public void keyPressed(java.awt.event.KeyEvent evt) { jbtnExcelKeyPressed(evt); } }); jBillDateBtn.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jBillDateBtnActionPerformed(evt); } }); jBillDateBtn1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jBillDateBtn1ActionPerformed(evt); } }); jLabel4.setText("To Date"); jLabel3.setText("From Date"); jtxtFromDate.addFocusListener(new java.awt.event.FocusAdapter() { public void focusGained(java.awt.event.FocusEvent evt) { jtxtFromDateFocusGained(evt); } public void focusLost(java.awt.event.FocusEvent evt) { jtxtFromDateFocusLost(evt); } }); jtxtFromDate.addKeyListener(new java.awt.event.KeyAdapter() { public void keyPressed(java.awt.event.KeyEvent evt) { jtxtFromDateKeyPressed(evt); } }); jComboBox3.addKeyListener(new java.awt.event.KeyAdapter() { public void keyPressed(java.awt.event.KeyEvent evt) { jComboBox3KeyPressed(evt); } }); javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2); jPanel2.setLayout(jPanel2Layout); jPanel2Layout.setHorizontalGroup(jPanel2Layout .createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel2Layout.createSequentialGroup().addContainerGap().addGroup(jPanel2Layout .createParallelGroup( javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel2Layout.createSequentialGroup() .addComponent(jLabel3, javax.swing.GroupLayout.PREFERRED_SIZE, 72, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jtxtFromDate, javax.swing.GroupLayout.PREFERRED_SIZE, 84, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(0, 0, 0) .addComponent(jBillDateBtn, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(15, 15, 15) .addComponent(jLabel4, javax.swing.GroupLayout.PREFERRED_SIZE, 72, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jtxtToDate, javax.swing.GroupLayout.PREFERRED_SIZE, 84, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(0, 0, 0) .addComponent(jBillDateBtn1, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, 105, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jComboBox3, javax.swing.GroupLayout.PREFERRED_SIZE, 112, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 291, Short.MAX_VALUE) .addComponent(jbtnView, javax.swing.GroupLayout.PREFERRED_SIZE, 87, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jbtnExcel, javax.swing.GroupLayout.PREFERRED_SIZE, 87, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jbtnClose)) .addGroup(jPanel2Layout.createSequentialGroup() .addComponent(jCheckBox1, javax.swing.GroupLayout.PREFERRED_SIZE, 84, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jtxtAcAlias, javax.swing.GroupLayout.PREFERRED_SIZE, 71, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jtxtAcName))) .addContainerGap())); jPanel2Layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] { jbtnClose, jbtnView }); jPanel2Layout.setVerticalGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel2Layout.createSequentialGroup().addContainerGap().addGroup(jPanel2Layout .createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jLabel3, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jtxtFromDate, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jBillDateBtn, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jLabel4, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jtxtToDate, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jBillDateBtn1, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jComboBox3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jbtnView) .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jbtnExcel).addComponent(jbtnClose))) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel2Layout .createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jCheckBox1) .addComponent(jtxtAcAlias, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addComponent(jtxtAcName, javax.swing.GroupLayout.PREFERRED_SIZE, 24, javax.swing.GroupLayout.PREFERRED_SIZE)) .addContainerGap())); jPanel2Layout.linkSize(javax.swing.SwingConstants.VERTICAL, new java.awt.Component[] { jBillDateBtn, jBillDateBtn1, jComboBox1, jLabel3, jLabel4, jbtnClose, jbtnExcel, jbtnView, jtxtFromDate, jtxtToDate }); jPanel2Layout.linkSize(javax.swing.SwingConstants.VERTICAL, new java.awt.Component[] { jCheckBox1, jtxtAcAlias, jtxtAcName }); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup().addContainerGap() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(panel, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(jPanel2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) .addContainerGap())); layout.setVerticalGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup().addContainerGap() .addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, 369, Short.MAX_VALUE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED).addComponent(panel, javax.swing.GroupLayout.PREFERRED_SIZE, 26, javax.swing.GroupLayout.PREFERRED_SIZE) .addContainerGap())); pack(); }// </editor-fold>//GEN-END:initComponents private void jtxtFromDateFocusGained(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_jtxtFromDateFocusGained // TODO add your handling code here: jtxtFromDate.selectAll(); }//GEN-LAST:event_jtxtFromDateFocusGained private void jtxtFromDateFocusLost(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_jtxtFromDateFocusLost // TODO add your handling code here: try { if (jtxtFromDate.getText().contains("/")) { jtxtFromDate.setText(jtxtFromDate.getText().replace("/", "")); } if (jtxtFromDate.getText().length() == 8) { String temp = jtxtFromDate.getText(); String setDate = (temp.substring(0, 2)).replace(temp.substring(0, 2), temp.substring(0, 2) + "/") + (temp.substring(2, 4)).replace(temp.substring(2, 4), temp.substring(2, 4) + "/") + temp.substring(4, temp.length()); jtxtFromDate.setText(setDate); } // if ((new SimpleDateFormat("dd/MM/yyyy").format(new Date(jtxtFromDate.getText().trim()))) != null) { // jtxtToDate.requestFocusInWindow(); // } } catch (Exception ex) { // navLoad.jlblMsg.setText("Enter Correct Date"); jtxtFromDate.requestFocusInWindow(); } }//GEN-LAST:event_jtxtFromDateFocusLost private void jtxtFromDateKeyPressed(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jtxtFromDateKeyPressed // TODO add your handling code here: if (evt.getKeyCode() == KeyEvent.VK_ENTER) { jtxtToDate.requestFocusInWindow(); } }//GEN-LAST:event_jtxtFromDateKeyPressed private void jBillDateBtnActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBillDateBtnActionPerformed // TODO add your handling code here: OurDateChooser odc = new OurDateChooser(); odc.setnextFocus(jtxtFromDate); odc.setFormat("dd/MM/yyyy"); JPanel jp = new JPanel(); this.add(jp); jp.setBounds(jtxtFromDate.getX(), jtxtToDate.getY() + 125, jtxtFromDate.getX() + odc.getWidth(), jtxtFromDate.getY() + odc.getHeight()); odc.setLocation(0, 0); odc.showDialog(jp, "Select Date"); }//GEN-LAST:event_jBillDateBtnActionPerformed private void jtxtToDateFocusGained(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_jtxtToDateFocusGained // TODO add your handling code here: jtxtToDate.selectAll(); }//GEN-LAST:event_jtxtToDateFocusGained private void jtxtToDateFocusLost(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_jtxtToDateFocusLost // TODO add your handling code here: try { if (jtxtToDate.getText().contains("/")) { jtxtToDate.setText(jtxtToDate.getText().replace("/", "")); } if (jtxtToDate.getText().length() == 8) { String temp = jtxtToDate.getText(); String setDate = (temp.substring(0, 2)).replace(temp.substring(0, 2), temp.substring(0, 2) + "/") + (temp.substring(2, 4)).replace(temp.substring(2, 4), temp.substring(2, 4) + "/") + temp.substring(4, temp.length()); jtxtToDate.setText(setDate); } if ((new SimpleDateFormat("dd/MM/yyyy").format(new Date(jtxtToDate.getText().trim()))) != null) { jComboBox1.requestFocusInWindow(); } } catch (Exception ex) { // navLoad.jlblMsg.setText("Enter Correct Date"); jtxtToDate.requestFocusInWindow(); } }//GEN-LAST:event_jtxtToDateFocusLost private void jtxtToDateKeyPressed(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jtxtToDateKeyPressed // TODO add your handling code here: if (evt.getKeyCode() == KeyEvent.VK_ENTER) { jbtnView.requestFocusInWindow(); } }//GEN-LAST:event_jtxtToDateKeyPressed private void jBillDateBtn1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBillDateBtn1ActionPerformed // TODO add your handling code here: OurDateChooser odc = new OurDateChooser(); odc.setnextFocus(jtxtToDate); odc.setFormat("dd/MM/yyyy"); JPanel jp = new JPanel(); this.add(jp); jp.setBounds(jtxtToDate.getX() - 50, jtxtToDate.getY() + 125, jtxtToDate.getX() + odc.getWidth(), jtxtToDate.getY() + odc.getHeight()); odc.setLocation(0, 0); odc.showDialog(jp, "Select Date"); }//GEN-LAST:event_jBillDateBtn1ActionPerformed private void jbtnViewActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jbtnViewActionPerformed // TODO add your handling code here: jbtnViewActionPerformedRoutine(); lb.setColumnSizeForTable(jTable1, jPanel1.getWidth()); }//GEN-LAST:event_jbtnViewActionPerformed private void jbtnViewKeyPressed(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jbtnViewKeyPressed lb.enterClick(evt); }//GEN-LAST:event_jbtnViewKeyPressed private void jbtnCloseActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jbtnCloseActionPerformed // TODO add your handling code here: this.dispose(); }//GEN-LAST:event_jbtnCloseActionPerformed private void jbtnCloseKeyPressed(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jbtnCloseKeyPressed lb.enterClick(evt); }//GEN-LAST:event_jbtnCloseKeyPressed private void jbtnExcelActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jbtnExcelActionPerformed // TODO add your handling code here: callExcel(); }//GEN-LAST:event_jbtnExcelActionPerformed private void jbtnExcelKeyPressed(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jbtnExcelKeyPressed // TODO add your handling code here: lb.enterClick(evt); }//GEN-LAST:event_jbtnExcelKeyPressed private void jtxtAcAliasFocusGained(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_jtxtAcAliasFocusGained lb.selectAll(evt); }//GEN-LAST:event_jtxtAcAliasFocusGained private void jtxtAcAliasFocusLost(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_jtxtAcAliasFocusLost lb.toUpper(evt); }//GEN-LAST:event_jtxtAcAliasFocusLost private void jtxtAcAliasKeyPressed(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jtxtAcAliasKeyPressed if (lb.isEnter(evt)) { if (!lb.isBlank(jtxtAcAlias)) { setAccountDetailMobile("2", jtxtAcAlias.getText()); } } }//GEN-LAST:event_jtxtAcAliasKeyPressed private void jtxtAcAliasKeyReleased(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jtxtAcAliasKeyReleased }//GEN-LAST:event_jtxtAcAliasKeyReleased private void jtxtAcNameFocusGained(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_jtxtAcNameFocusGained lb.selectAll(evt); }//GEN-LAST:event_jtxtAcNameFocusGained private void jComboBox1KeyPressed(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jComboBox1KeyPressed // TODO add your handling code here: lb.enterFocus(evt, jComboBox3); }//GEN-LAST:event_jComboBox1KeyPressed private void jTable1MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jTable1MouseClicked // TODO add your handling code here: int row = jTable1.getSelectedRow(); if (row != -1) { if (evt.getClickCount() == 2) { evt.consume(); lb.openVoucherBook(jTable1.getValueAt(row, 0).toString()); } } }//GEN-LAST:event_jTable1MouseClicked private void jComboBox3KeyPressed(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jComboBox3KeyPressed // TODO add your handling code here: }//GEN-LAST:event_jComboBox3KeyPressed // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton jBillDateBtn; private javax.swing.JButton jBillDateBtn1; private javax.swing.JCheckBox jCheckBox1; private javax.swing.JComboBox jComboBox1; private javax.swing.JComboBox jComboBox3; private javax.swing.JLabel jLabel3; private javax.swing.JLabel jLabel4; private javax.swing.JPanel jPanel1; private javax.swing.JPanel jPanel2; private javax.swing.JScrollPane jScrollPane1; private javax.swing.JTable jTable1; private javax.swing.JButton jbtnClose; private javax.swing.JButton jbtnExcel; private javax.swing.JButton jbtnView; private javax.swing.JTextField jtxtAcAlias; private javax.swing.JTextField jtxtAcName; private javax.swing.JTextField jtxtFromDate; private javax.swing.JTextField jtxtToDate; private javax.swing.JPanel panel; // End of variables declaration//GEN-END:variables }