171 lines
6.6 KiB
Java
171 lines
6.6 KiB
Java
|
|
// uniCenta oPOS - Touch Friendly Point Of Sale
|
||
|
|
// Copyright (c) 2009-2018 uniCenta & previous Openbravo POS works
|
||
|
|
// https://unicenta.com
|
||
|
|
//
|
||
|
|
// 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.unicenta.pos.sales;
|
||
|
|
|
||
|
|
import com.unicenta.pos.forms.AppLocal;
|
||
|
|
import java.awt.CardLayout;
|
||
|
|
import javax.swing.JOptionPane;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @author JG uniCenta
|
||
|
|
*/
|
||
|
|
public class JTicketsBagTicketBag extends javax.swing.JPanel {
|
||
|
|
|
||
|
|
private final JTicketsBagTicket m_ticketsbagticket;
|
||
|
|
|
||
|
|
/** Creates new form JTicketsBagTicketBag
|
||
|
|
* @param ticketsbagticket */
|
||
|
|
public JTicketsBagTicketBag(JTicketsBagTicket ticketsbagticket) {
|
||
|
|
m_ticketsbagticket = ticketsbagticket;
|
||
|
|
initComponents();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
public void showEdit() {
|
||
|
|
showView("edit");
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
public void showRefund() {
|
||
|
|
showView("refund");
|
||
|
|
}
|
||
|
|
|
||
|
|
private void showView(String view) {
|
||
|
|
CardLayout cl = (CardLayout)(getLayout());
|
||
|
|
cl.show(this, view);
|
||
|
|
}
|
||
|
|
|
||
|
|
/** 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() {
|
||
|
|
|
||
|
|
jPanEdit = new javax.swing.JPanel();
|
||
|
|
m_jBtnDelete = new javax.swing.JButton();
|
||
|
|
m_jBtnCancel = new javax.swing.JButton();
|
||
|
|
jPanRefund = new javax.swing.JPanel();
|
||
|
|
m_jBtnCancel1 = new javax.swing.JButton();
|
||
|
|
|
||
|
|
setLayout(new java.awt.CardLayout());
|
||
|
|
|
||
|
|
jPanEdit.setLayout(new java.awt.FlowLayout(java.awt.FlowLayout.LEFT));
|
||
|
|
|
||
|
|
m_jBtnDelete.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N
|
||
|
|
m_jBtnDelete.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/unicenta/images/sale_delete.png"))); // NOI18N
|
||
|
|
m_jBtnDelete.setText(AppLocal.getIntString("button.deleteticket")); // NOI18N
|
||
|
|
m_jBtnDelete.setToolTipText("Delete current Ticket");
|
||
|
|
m_jBtnDelete.setFocusPainted(false);
|
||
|
|
m_jBtnDelete.setFocusable(false);
|
||
|
|
m_jBtnDelete.setMargin(new java.awt.Insets(0, 4, 0, 4));
|
||
|
|
m_jBtnDelete.setMaximumSize(new java.awt.Dimension(50, 40));
|
||
|
|
m_jBtnDelete.setMinimumSize(new java.awt.Dimension(50, 40));
|
||
|
|
m_jBtnDelete.setPreferredSize(new java.awt.Dimension(80, 45));
|
||
|
|
m_jBtnDelete.setRequestFocusEnabled(false);
|
||
|
|
m_jBtnDelete.addActionListener(new java.awt.event.ActionListener() {
|
||
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||
|
|
m_jBtnDeleteActionPerformed(evt);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
jPanEdit.add(m_jBtnDelete);
|
||
|
|
|
||
|
|
m_jBtnCancel.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N
|
||
|
|
m_jBtnCancel.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/unicenta/images/cancel.png"))); // NOI18N
|
||
|
|
m_jBtnCancel.setText(AppLocal.getIntString("button.cancel")); // NOI18N
|
||
|
|
m_jBtnCancel.setToolTipText("Cancel Action");
|
||
|
|
m_jBtnCancel.setFocusPainted(false);
|
||
|
|
m_jBtnCancel.setFocusable(false);
|
||
|
|
m_jBtnCancel.setMargin(new java.awt.Insets(0, 4, 0, 4));
|
||
|
|
m_jBtnCancel.setMaximumSize(new java.awt.Dimension(50, 40));
|
||
|
|
m_jBtnCancel.setMinimumSize(new java.awt.Dimension(50, 40));
|
||
|
|
m_jBtnCancel.setPreferredSize(new java.awt.Dimension(80, 45));
|
||
|
|
m_jBtnCancel.setRequestFocusEnabled(false);
|
||
|
|
m_jBtnCancel.addActionListener(new java.awt.event.ActionListener() {
|
||
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||
|
|
m_jBtnCancelActionPerformed(evt);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
jPanEdit.add(m_jBtnCancel);
|
||
|
|
|
||
|
|
add(jPanEdit, "edit");
|
||
|
|
|
||
|
|
jPanRefund.setLayout(new java.awt.FlowLayout(java.awt.FlowLayout.LEFT));
|
||
|
|
|
||
|
|
m_jBtnCancel1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/unicenta/images/fileclose.png"))); // NOI18N
|
||
|
|
m_jBtnCancel1.setFocusPainted(false);
|
||
|
|
m_jBtnCancel1.setFocusable(false);
|
||
|
|
m_jBtnCancel1.setMargin(new java.awt.Insets(8, 14, 8, 14));
|
||
|
|
m_jBtnCancel1.setPreferredSize(new java.awt.Dimension(80, 45));
|
||
|
|
m_jBtnCancel1.setRequestFocusEnabled(false);
|
||
|
|
m_jBtnCancel1.addActionListener(new java.awt.event.ActionListener() {
|
||
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||
|
|
m_jBtnCancel1ActionPerformed(evt);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
jPanRefund.add(m_jBtnCancel1);
|
||
|
|
|
||
|
|
add(jPanRefund, "refund");
|
||
|
|
}// </editor-fold>//GEN-END:initComponents
|
||
|
|
|
||
|
|
private void m_jBtnCancel1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_m_jBtnCancel1ActionPerformed
|
||
|
|
|
||
|
|
m_ticketsbagticket.canceleditionTicket();
|
||
|
|
|
||
|
|
}//GEN-LAST:event_m_jBtnCancel1ActionPerformed
|
||
|
|
|
||
|
|
private void m_jBtnDeleteActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_m_jBtnDeleteActionPerformed
|
||
|
|
|
||
|
|
int res = JOptionPane.showConfirmDialog(this,
|
||
|
|
AppLocal.getIntString("message.wannadelete"),
|
||
|
|
AppLocal.getIntString("title.editor"),
|
||
|
|
JOptionPane.YES_NO_OPTION,
|
||
|
|
JOptionPane.QUESTION_MESSAGE);
|
||
|
|
|
||
|
|
if (res == JOptionPane.YES_OPTION) {
|
||
|
|
m_ticketsbagticket.deleteTicket();
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}//GEN-LAST:event_m_jBtnDeleteActionPerformed
|
||
|
|
|
||
|
|
private void m_jBtnCancelActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_m_jBtnCancelActionPerformed
|
||
|
|
|
||
|
|
m_ticketsbagticket.canceleditionTicket();
|
||
|
|
|
||
|
|
}//GEN-LAST:event_m_jBtnCancelActionPerformed
|
||
|
|
|
||
|
|
|
||
|
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
||
|
|
private javax.swing.JPanel jPanEdit;
|
||
|
|
private javax.swing.JPanel jPanRefund;
|
||
|
|
private javax.swing.JButton m_jBtnCancel;
|
||
|
|
private javax.swing.JButton m_jBtnCancel1;
|
||
|
|
private javax.swing.JButton m_jBtnDelete;
|
||
|
|
// End of variables declaration//GEN-END:variables
|
||
|
|
|
||
|
|
}
|