127 lines
3.3 KiB
Java
127 lines
3.3 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.basic.BasicException;
|
||
|
|
import com.unicenta.pos.ticket.ProductInfoExt;
|
||
|
|
import java.awt.Component;
|
||
|
|
import java.awt.Dimension;
|
||
|
|
import java.awt.event.ActionEvent;
|
||
|
|
import java.awt.event.ActionListener;
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @author JG uniCenta
|
||
|
|
*/
|
||
|
|
public class JPanelTicketEdits extends JPanelTicket {
|
||
|
|
|
||
|
|
private JTicketCatalogLines m_catandlines;
|
||
|
|
|
||
|
|
/** Creates a new instance of JPanelTicketRefunds */
|
||
|
|
public JPanelTicketEdits() {
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public String getTitle() {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @throws BasicException
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public void activate() throws BasicException {
|
||
|
|
super.activate();
|
||
|
|
m_catandlines.loadCatalog();
|
||
|
|
}
|
||
|
|
|
||
|
|
public void reLoadCatalog(){
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
public void showCatalog() {
|
||
|
|
m_jbtnconfig.setVisible(true);
|
||
|
|
m_catandlines.showCatalog();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @param aRefundLines
|
||
|
|
*/
|
||
|
|
public void showRefundLines(List aRefundLines) {
|
||
|
|
// anado las lineas de refund
|
||
|
|
// m_reflines.setLines(aRefundLines);
|
||
|
|
m_jbtnconfig.setVisible(false);
|
||
|
|
m_catandlines.showRefundLines(aRefundLines);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
protected JTicketsBag getJTicketsBag() {
|
||
|
|
return new JTicketsBagTicket(m_App, this);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
protected Component getSouthComponent() {
|
||
|
|
|
||
|
|
m_catandlines = new JTicketCatalogLines(m_App, this,
|
||
|
|
"true".equals(m_jbtnconfig.getProperty("pricevisible")),
|
||
|
|
"true".equals(m_jbtnconfig.getProperty("taxesincluded")),
|
||
|
|
Integer.parseInt(m_jbtnconfig.getProperty("img-width", "64")),
|
||
|
|
Integer.parseInt(m_jbtnconfig.getProperty("img-height", "54")));
|
||
|
|
m_catandlines.setPreferredSize(new Dimension(0,
|
||
|
|
Integer.parseInt(m_jbtnconfig.getProperty("cat-height", "245"))));
|
||
|
|
m_catandlines.addActionListener(new CatalogListener());
|
||
|
|
return m_catandlines;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
protected void resetSouthComponent() {
|
||
|
|
}
|
||
|
|
|
||
|
|
private class CatalogListener implements ActionListener {
|
||
|
|
@Override
|
||
|
|
public void actionPerformed(ActionEvent e) {
|
||
|
|
buttonTransition((ProductInfoExt) e.getSource());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|