522 lines
21 KiB
Java
522 lines
21 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.shared;
|
|
|
|
import com.unicenta.basic.BasicException;
|
|
import com.unicenta.beans.JNumberPop;
|
|
import com.unicenta.data.gui.MessageInf;
|
|
import com.unicenta.pos.forms.AppLocal;
|
|
import com.unicenta.pos.forms.AppView;
|
|
import com.unicenta.pos.forms.JRootApp;
|
|
import com.unicenta.pos.forms.DataLogicSales;
|
|
import com.unicenta.pos.forms.DataLogicSystem;
|
|
import com.unicenta.pos.sales.DataLogicReceipts;
|
|
import com.unicenta.pos.sales.JTicketsBag;
|
|
import com.unicenta.pos.sales.ReprintTicketInfo;
|
|
import com.unicenta.pos.sales.SharedTicketInfo;
|
|
import com.unicenta.pos.sales.TicketsEditor;
|
|
import com.unicenta.pos.ticket.TicketInfo;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
import java.util.List;
|
|
import java.util.UUID;
|
|
import javax.swing.*;
|
|
|
|
/**
|
|
*
|
|
* @author JG uniCenta
|
|
*/
|
|
@Slf4j
|
|
public class JTicketsBagShared extends JTicketsBag {
|
|
|
|
private String m_sCurrentTicket = null;
|
|
private DataLogicReceipts dlReceipts = null;
|
|
private DataLogicSales dlSales = null;
|
|
private final DataLogicSystem dlSystem;
|
|
private Boolean showList;
|
|
|
|
|
|
/** Creates new form JTicketsBagShared
|
|
* @param app
|
|
* @param panelticket */
|
|
public JTicketsBagShared(AppView app, TicketsEditor panelticket) {
|
|
|
|
super(app, panelticket);
|
|
|
|
dlReceipts = (DataLogicReceipts) app.getBean("com.unicenta.pos.sales.DataLogicReceipts");
|
|
dlSales = (DataLogicSales) app.getBean("com.unicenta.pos.forms.DataLogicSales");
|
|
dlSystem = (DataLogicSystem) m_App.getBean("com.unicenta.pos.forms.DataLogicSystem");
|
|
|
|
initComponents();
|
|
|
|
m_jReprintTickets.setVisible(false);
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@Override
|
|
public void activate() {
|
|
|
|
log.debug("Loading Sales screen! "+this.getClass());
|
|
|
|
SwingWorker<String, String> reloadLayaway = new SwingWorker<>() {
|
|
@Override
|
|
protected String doInBackground() throws Exception {
|
|
while (true) {
|
|
log.debug("refresh screen");
|
|
updateCount();
|
|
Thread.sleep(5000);
|
|
}
|
|
|
|
//return null;
|
|
}
|
|
};
|
|
|
|
reloadLayaway.execute();
|
|
|
|
|
|
m_sCurrentTicket = null;
|
|
selectValidTicket();
|
|
|
|
m_jDelTicket.setEnabled(m_App.getAppUserView().getUser().hasPermission(
|
|
"com.unicenta.pos.sales.JPanelTicketEdits"));
|
|
m_jDelTicket.setEnabled(m_App.getAppUserView().getUser().hasPermission("sales.DeleteTicket"));
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @return
|
|
*/
|
|
@Override
|
|
public boolean deactivate() {
|
|
|
|
saveCurrentTicket();
|
|
|
|
m_sCurrentTicket = null;
|
|
m_panelticket.setActiveTicket(null, null);
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@Override
|
|
public void deleteTicket() {
|
|
|
|
dlSystem.execTicketRemoved(
|
|
new Object[] {
|
|
m_App.getAppUserView().getUser().getName(),
|
|
"Void",
|
|
"Ticket Deleted",
|
|
0.0
|
|
});
|
|
|
|
m_sCurrentTicket = null;
|
|
selectValidTicket();
|
|
}
|
|
|
|
public void updateCount() {
|
|
try {
|
|
List<SharedTicketInfo> l = dlReceipts.getSharedTicketList();
|
|
int count = l.size();
|
|
|
|
if (count > 0) {
|
|
m_jListTickets.setText(Integer.toString(count));
|
|
} else {
|
|
m_jListTickets.setText("");
|
|
}
|
|
} catch (BasicException ex) {
|
|
new MessageInf(ex).show(this);
|
|
m_jListTickets.setText("");
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
*
|
|
* @return
|
|
*/
|
|
@Override
|
|
protected JComponent getBagComponent() {
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @return
|
|
*/
|
|
@Override
|
|
protected JComponent getNullComponent() {
|
|
return new JPanel();
|
|
}
|
|
|
|
private void saveCurrentTicket() {
|
|
|
|
if (m_sCurrentTicket != null) {
|
|
try {
|
|
dlReceipts.insertSharedTicket(m_sCurrentTicket,
|
|
m_panelticket.getActiveTicket(),
|
|
m_panelticket.getActiveTicket().getPickupId());
|
|
m_jListTickets.setText("*");
|
|
TicketInfo l = dlReceipts.getSharedTicket(m_sCurrentTicket);
|
|
if(l.getLinesCount() == 0) {
|
|
dlReceipts.deleteSharedTicket(m_sCurrentTicket);
|
|
}
|
|
} catch (BasicException e) {
|
|
new MessageInf(e).show(this);
|
|
}
|
|
}
|
|
|
|
updateCount();
|
|
}
|
|
|
|
private void setActiveTicket(String id) throws BasicException{
|
|
|
|
TicketInfo ticket = dlReceipts.getSharedTicket(id);
|
|
if (ticket == null) {
|
|
m_jListTickets.setText("");
|
|
throw new BasicException(AppLocal.getIntString("message.noticket"));
|
|
} else {
|
|
dlReceipts.getPickupId(id);
|
|
Integer pickUp = dlReceipts.getPickupId(id);
|
|
dlReceipts.deleteSharedTicket(id);
|
|
m_sCurrentTicket = id;
|
|
m_panelticket.setActiveTicket(ticket, null);
|
|
ticket.setPickupId(pickUp);
|
|
}
|
|
|
|
updateCount();
|
|
}
|
|
|
|
private void setActiveReprintTicket(String id) throws BasicException{
|
|
|
|
|
|
TicketInfo ticket = dlSales.getReprintTicket(id);
|
|
m_sCurrentTicket = id;
|
|
}
|
|
|
|
private void selectValidTicket() {
|
|
|
|
newTicket();
|
|
updateCount();
|
|
|
|
try {
|
|
List<SharedTicketInfo> l = dlReceipts.getSharedTicketList();
|
|
if (l.isEmpty()) {
|
|
m_jListTickets.setText("");
|
|
newTicket();
|
|
} else {
|
|
showList = m_App.getAppUserView().getUser().hasPermission("sales.ShowList");
|
|
if (showList) {
|
|
m_jListTickets.doClick();
|
|
}
|
|
}
|
|
} catch (BasicException e) {
|
|
new MessageInf(e).show(this);
|
|
newTicket();
|
|
}
|
|
}
|
|
|
|
private void newTicket() {
|
|
|
|
saveCurrentTicket();
|
|
|
|
TicketInfo ticket = new TicketInfo();
|
|
m_sCurrentTicket = UUID.randomUUID().toString();
|
|
m_panelticket.setActiveTicket(ticket, null);
|
|
|
|
updateCount();
|
|
|
|
}
|
|
|
|
/** 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_jNewTicket = new javax.swing.JButton();
|
|
m_jListTickets = new javax.swing.JButton();
|
|
m_jDelTicket = new javax.swing.JButton();
|
|
m_jReprintTickets = new javax.swing.JButton();
|
|
m_jHold = new javax.swing.JButton();
|
|
|
|
setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N
|
|
setLayout(new java.awt.BorderLayout());
|
|
|
|
m_jNewTicket.setFont(new java.awt.Font("Arial", 0, 11)); // NOI18N
|
|
m_jNewTicket.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/unicenta/images/sale_new.png"))); // NOI18N
|
|
java.util.ResourceBundle bundle = java.util.ResourceBundle.getBundle("pos_messages"); // NOI18N
|
|
m_jNewTicket.setToolTipText(bundle.getString("tooltip.addnewticket")); // NOI18N
|
|
m_jNewTicket.setFocusPainted(false);
|
|
m_jNewTicket.setFocusable(false);
|
|
m_jNewTicket.setMargin(new java.awt.Insets(0, 4, 0, 4));
|
|
m_jNewTicket.setMaximumSize(new java.awt.Dimension(50, 40));
|
|
m_jNewTicket.setMinimumSize(new java.awt.Dimension(50, 40));
|
|
m_jNewTicket.setPreferredSize(new java.awt.Dimension(80, 45));
|
|
m_jNewTicket.setRequestFocusEnabled(false);
|
|
m_jNewTicket.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
m_jNewTicketActionPerformed(evt);
|
|
}
|
|
});
|
|
jPanel1.add(m_jNewTicket);
|
|
|
|
m_jListTickets.setFont(new java.awt.Font("Arial", 1, 14)); // NOI18N
|
|
m_jListTickets.setForeground(new java.awt.Color(255, 0, 153));
|
|
m_jListTickets.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/unicenta/images/sale_pending.png"))); // NOI18N
|
|
m_jListTickets.setToolTipText(bundle.getString("tooltip.layaway")); // NOI18N
|
|
m_jListTickets.setFocusPainted(false);
|
|
m_jListTickets.setFocusable(false);
|
|
m_jListTickets.setHorizontalAlignment(javax.swing.SwingConstants.LEFT);
|
|
m_jListTickets.setHorizontalTextPosition(javax.swing.SwingConstants.RIGHT);
|
|
m_jListTickets.setIconTextGap(1);
|
|
m_jListTickets.setMargin(new java.awt.Insets(0, 2, 0, 2));
|
|
m_jListTickets.setMaximumSize(new java.awt.Dimension(50, 40));
|
|
m_jListTickets.setMinimumSize(new java.awt.Dimension(50, 40));
|
|
m_jListTickets.setPreferredSize(new java.awt.Dimension(80, 45));
|
|
m_jListTickets.setRequestFocusEnabled(false);
|
|
m_jListTickets.setVerticalTextPosition(javax.swing.SwingConstants.TOP);
|
|
m_jListTickets.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
m_jListTicketsActionPerformed(evt);
|
|
}
|
|
});
|
|
jPanel1.add(m_jListTickets);
|
|
|
|
m_jDelTicket.setFont(new java.awt.Font("Arial", 0, 11)); // NOI18N
|
|
m_jDelTicket.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/unicenta/images/sale_delete.png"))); // NOI18N
|
|
m_jDelTicket.setToolTipText(bundle.getString("tooltip.delete")); // NOI18N
|
|
m_jDelTicket.setFocusPainted(false);
|
|
m_jDelTicket.setFocusable(false);
|
|
m_jDelTicket.setMargin(new java.awt.Insets(0, 4, 0, 4));
|
|
m_jDelTicket.setMaximumSize(new java.awt.Dimension(50, 40));
|
|
m_jDelTicket.setMinimumSize(new java.awt.Dimension(50, 40));
|
|
m_jDelTicket.setPreferredSize(new java.awt.Dimension(80, 45));
|
|
m_jDelTicket.setRequestFocusEnabled(false);
|
|
m_jDelTicket.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
m_jDelTicketActionPerformed(evt);
|
|
}
|
|
});
|
|
jPanel1.add(m_jDelTicket);
|
|
|
|
m_jReprintTickets.setFont(new java.awt.Font("Arial", 1, 14)); // NOI18N
|
|
m_jReprintTickets.setForeground(new java.awt.Color(255, 0, 153));
|
|
m_jReprintTickets.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/unicenta/images/reprint24.png"))); // NOI18N
|
|
m_jReprintTickets.setToolTipText(bundle.getString("tooltip.reprint")); // NOI18N
|
|
m_jReprintTickets.setFocusPainted(false);
|
|
m_jReprintTickets.setFocusable(false);
|
|
m_jReprintTickets.setIconTextGap(1);
|
|
m_jReprintTickets.setMargin(new java.awt.Insets(0, 2, 0, 2));
|
|
m_jReprintTickets.setMaximumSize(new java.awt.Dimension(50, 40));
|
|
m_jReprintTickets.setMinimumSize(new java.awt.Dimension(50, 40));
|
|
m_jReprintTickets.setPreferredSize(new java.awt.Dimension(80, 45));
|
|
m_jReprintTickets.setRequestFocusEnabled(false);
|
|
m_jReprintTickets.setVerticalTextPosition(javax.swing.SwingConstants.TOP);
|
|
m_jReprintTickets.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
m_jReprintTicketsActionPerformed(evt);
|
|
}
|
|
});
|
|
jPanel1.add(m_jReprintTickets);
|
|
|
|
m_jHold.setFont(new java.awt.Font("Arial", 0, 11)); // NOI18N
|
|
m_jHold.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/unicenta/images/logout.png"))); // NOI18N
|
|
m_jHold.setToolTipText(bundle.getString("tooltip.quicklogoff")); // NOI18N
|
|
m_jHold.setFocusPainted(false);
|
|
m_jHold.setFocusable(false);
|
|
m_jHold.setMargin(new java.awt.Insets(0, 4, 0, 4));
|
|
m_jHold.setMaximumSize(new java.awt.Dimension(50, 40));
|
|
m_jHold.setMinimumSize(new java.awt.Dimension(50, 40));
|
|
m_jHold.setPreferredSize(new java.awt.Dimension(80, 45));
|
|
m_jHold.setRequestFocusEnabled(false);
|
|
m_jHold.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
m_jHoldActionPerformed(evt);
|
|
}
|
|
});
|
|
jPanel1.add(m_jHold);
|
|
|
|
add(jPanel1, java.awt.BorderLayout.WEST);
|
|
}// </editor-fold>//GEN-END:initComponents
|
|
|
|
private void m_jListTicketsActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_m_jListTicketsActionPerformed
|
|
|
|
SwingUtilities.invokeLater(() -> {
|
|
try {
|
|
if (!m_App.getAppUserView().getUser().hasPermission("sales.ViewSharedTicket")){
|
|
JOptionPane.showMessageDialog(null,
|
|
AppLocal.getIntString("message.sharedticket"),
|
|
AppLocal.getIntString("message.sharedtickettitle"),
|
|
JOptionPane.INFORMATION_MESSAGE);
|
|
}else{
|
|
|
|
if("0".equals(m_App.getAppUserView().getUser().getRole())
|
|
|| "1".equals(m_App.getAppUserView().getUser().getRole())
|
|
|| m_App.getAppUserView().getUser().hasPermission("sales.ViewSharedTicket")
|
|
|| m_App.getAppUserView().getUser().hasPermission("sales.Override"))
|
|
{
|
|
List<SharedTicketInfo> sharedTicketList = dlReceipts.getSharedTicketList();
|
|
JTicketsBagSharedList listDialog = JTicketsBagSharedList.newJDialog(JTicketsBagShared.this);
|
|
String id = listDialog.showTicketsList(sharedTicketList, dlReceipts);
|
|
|
|
if (id != null) {
|
|
saveCurrentTicket();
|
|
setActiveTicket(id);
|
|
}
|
|
}else{
|
|
|
|
String appuser = m_App.getAppUserView().getUser().getId();
|
|
List<SharedTicketInfo> l = dlReceipts.getUserSharedTicketList(
|
|
appuser);
|
|
|
|
JTicketsBagSharedList listDialog = JTicketsBagSharedList.newJDialog(JTicketsBagShared.this);
|
|
|
|
String id = listDialog.showTicketsList(l, dlReceipts);
|
|
|
|
if (id != null) {
|
|
saveCurrentTicket();
|
|
setActiveTicket(id);
|
|
}
|
|
}
|
|
}
|
|
}catch (BasicException e) {
|
|
new MessageInf(e).show(JTicketsBagShared.this);
|
|
newTicket();
|
|
}
|
|
});
|
|
|
|
}//GEN-LAST:event_m_jListTicketsActionPerformed
|
|
|
|
private void m_jNewTicketActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_m_jNewTicketActionPerformed
|
|
|
|
newTicket();
|
|
|
|
}//GEN-LAST:event_m_jNewTicketActionPerformed
|
|
|
|
private void m_jHoldActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_m_jHoldActionPerformed
|
|
deactivate();
|
|
((JRootApp)m_App).closeAppView();
|
|
}//GEN-LAST:event_m_jHoldActionPerformed
|
|
|
|
private void m_jReprintTicketsActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_m_jReprintTicketsActionPerformed
|
|
SwingUtilities.invokeLater(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
|
|
try {
|
|
if (!m_App.getAppUserView().getUser().hasPermission("sales.ReprintTicket")){
|
|
JOptionPane.showMessageDialog(null,
|
|
AppLocal.getIntString("message.reprintticket"),
|
|
AppLocal.getIntString("message.reprinttickettitle"),
|
|
JOptionPane.INFORMATION_MESSAGE);
|
|
}else{
|
|
|
|
if("0".equals(m_App.getAppUserView().getUser().getRole())
|
|
|| "1".equals(m_App.getAppUserView().getUser().getRole())
|
|
|| m_App.getAppUserView().getUser().hasPermission("sales.ViewSharedTicket")
|
|
|| m_App.getAppUserView().getUser().hasPermission("sales.Override"))
|
|
{
|
|
List<ReprintTicketInfo> l = dlSales.getReprintTicketList();
|
|
JTicketsReprintList listDialog = JTicketsReprintList.newJDialog(JTicketsBagShared.this);
|
|
String id = listDialog.showTicketsList(l, dlSales);
|
|
|
|
}else{
|
|
|
|
String appuser = m_App.getAppUserView().getUser().getId();
|
|
List<ReprintTicketInfo> l = dlSales.getReprintTicketList();
|
|
|
|
JTicketsReprintList listDialog = JTicketsReprintList.newJDialog(JTicketsBagShared.this);
|
|
|
|
String id = listDialog.showTicketsList(l, dlSales);
|
|
|
|
if (id != null) {
|
|
saveCurrentTicket();
|
|
setActiveReprintTicket(id);
|
|
}
|
|
}
|
|
}
|
|
}catch (BasicException e) {
|
|
new MessageInf(e).show(JTicketsBagShared.this);
|
|
newTicket();
|
|
}
|
|
}
|
|
});
|
|
}//GEN-LAST:event_m_jReprintTicketsActionPerformed
|
|
|
|
private void m_jDelTicketActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_m_jDelTicketActionPerformed
|
|
// Only called in simple & standard NOT RESTAURANT
|
|
// For Restaurant-mode see JTicketsBagRestaurant
|
|
|
|
boolean pinOK = false;
|
|
|
|
if (m_sCurrentTicket != null) {
|
|
|
|
if (m_App.getProperties().getProperty("override.check").equals("true")) {
|
|
Integer secret = Integer.parseInt(m_App.getProperties().getProperty("override.pin"));
|
|
Integer iValue = JNumberPop.showEditNumber(this, AppLocal.getIntString("title.override.enterpin"));
|
|
|
|
if (iValue == null ? secret == null : iValue.equals(secret)) {
|
|
pinOK = true;
|
|
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) {
|
|
deleteTicket();
|
|
}
|
|
} else {
|
|
pinOK = false;
|
|
JOptionPane.showMessageDialog(this, AppLocal.getIntString("message.override.badpin"));
|
|
}
|
|
} else {
|
|
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) {
|
|
deleteTicket();
|
|
}
|
|
}
|
|
}
|
|
}//GEN-LAST:event_m_jDelTicketActionPerformed
|
|
|
|
|
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
|
private javax.swing.JPanel jPanel1;
|
|
private javax.swing.JButton m_jDelTicket;
|
|
private javax.swing.JButton m_jHold;
|
|
private javax.swing.JButton m_jListTickets;
|
|
private javax.swing.JButton m_jNewTicket;
|
|
private javax.swing.JButton m_jReprintTickets;
|
|
// End of variables declaration//GEN-END:variables
|
|
|
|
} |