105 lines
2.8 KiB
Java
105 lines
2.8 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.inventory;
|
||
|
|
|
||
|
|
import com.unicenta.basic.BasicException;
|
||
|
|
import com.unicenta.data.user.EditorRecord;
|
||
|
|
import com.unicenta.data.user.ListProvider;
|
||
|
|
import com.unicenta.data.user.SaveProvider;
|
||
|
|
import com.unicenta.pos.forms.AppLocal;
|
||
|
|
import com.unicenta.pos.forms.DataLogicSales;
|
||
|
|
//import com.unicenta.pos.suppliers.DataLogicSuppliers;
|
||
|
|
import com.unicenta.pos.panels.JPanelTable;
|
||
|
|
import com.unicenta.pos.suppliers.DataLogicSuppliers;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @author adrianromero
|
||
|
|
*/
|
||
|
|
public class StockDiaryPanel extends JPanelTable {
|
||
|
|
|
||
|
|
private StockDiaryEditor jeditor;
|
||
|
|
private DataLogicSales m_dlSales;
|
||
|
|
// private DataLogicSuppliers m_dlSuppliers;
|
||
|
|
|
||
|
|
/** Creates a new instance of JPanelDiaryEditor */
|
||
|
|
public StockDiaryPanel() {
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
protected void init() {
|
||
|
|
m_dlSales = (DataLogicSales) app.getBean("com.unicenta.pos.forms.DataLogicSales");
|
||
|
|
// DataLogicSuppliers m_dlSuppliers = (DataLogicSuppliers) app.getBean("com.unicenta.pos.suppliers.DataLogicSuppliers");
|
||
|
|
jeditor = new StockDiaryEditor(app, dirty);
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public ListProvider getListProvider() {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public SaveProvider getSaveProvider() {
|
||
|
|
return new SaveProvider(null
|
||
|
|
, m_dlSales.getStockDiaryInsert()
|
||
|
|
, m_dlSales.getStockDiaryDelete());
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public EditorRecord getEditor() {
|
||
|
|
return jeditor;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public String getTitle() {
|
||
|
|
return AppLocal.getIntString("Menu.StockDiary");
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @throws BasicException
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public void activate() throws BasicException {
|
||
|
|
jeditor.activate(); // primero activo el editor
|
||
|
|
super.activate(); // segundo activo el padre
|
||
|
|
}
|
||
|
|
}
|