package org.jallinone.items.client;
import org.openswing.swing.table.client.GridController;
import java.util.*;
import org.openswing.swing.message.receive.java.*;
import org.openswing.swing.message.send.java.FilterWhereClause;
import org.openswing.swing.table.java.GridDataLocator;
import org.openswing.swing.mdi.client.MDIFrame;
import org.openswing.swing.util.client.ClientUtils;
import org.jallinone.sales.pricelist.java.*;
import java.math.BigDecimal;
import javax.swing.*;
import org.jallinone.commons.client.CompanyGridController;
import org.jallinone.commons.java.*;
import org.jallinone.items.java.GridItemVO;
import org.openswing.swing.util.client.ClientSettings;
import org.jallinone.items.client.ItemsFrame;
import java.beans.PropertyVetoException;
import org.jallinone.items.java.DetailItemVO;
import org.jallinone.variants.client.ProductVariantsPanel;
import org.jallinone.items.java.ItemPK;
import org.openswing.swing.client.SaveButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import org.openswing.swing.util.java.Consts;
import org.openswing.swing.client.GridControl;
/**
* <p>Title: JAllInOne ERP/CRM application</p>
* <p>Description: This class is the grid controller for item prices panel.</p>
* <p>Copyright: Copyright (C) 2006 Mauro Carniel</p>
*
* <p> This file is part of JAllInOne ERP/CRM application.
* This application is free software; you can redistribute it and/or
* modify it under the terms of the (LGPL) Lesser General Public
* License as published by the Free Software Foundation;
*
* GNU LESSER GENERAL PUBLIC LICENSE
* Version 2.1, February 1999
*
* This application 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* The author may be contacted at:
* maurocarniel@tin.it</p>
*
* @author Mauro Carniel
* @version 1.0
*/
public class PricesController extends CompanyGridController {
/** item detail frame */
private ItemFrame frame = null;
public PricesController(ItemFrame frame) {
this.frame = frame;
}
/**
* Callback method invoked after saving data when the grid was in EDIT mode (on pressing save button).
* The method is called ONLY if the operation is successfully completed.
*/
public void afterEditGrid(GridControl grid) {
grid.reloadCurrentBlockOfData();
}
/**
* Callback method invoked after saving data when the grid was in INSERT mode (on pressing save button).
* The method is called ONLY if the operation is successfully completed.
*/
public void afterInsertGrid(GridControl grid) {
grid.reloadCurrentBlockOfData();
}
/**
* Callback method invoked when the user has clicked on the insert button
* @param valueObject empty value object just created: the user can manage it to fill some attribute values
*/
public void createValueObject(ValueObject valueObject) throws Exception {
PriceVO vo = (PriceVO)valueObject;
vo.setStartDateSAL02(new java.sql.Date(System.currentTimeMillis()));
vo.setEndDateSAL02(null);
}
/**
* Validate dates.
*/
private Response validateDates(PriceVO vo) {
if (vo.getEndDateSAL02()!=null && vo.getStartDateSAL02().getTime()>vo.getEndDateSAL02().getTime())
return new ErrorResponse("start date must be less than or equals to end date.");
return new VOResponse(new Boolean(true));
}
/**
* Method invoked when the user has clicked on save button and the grid is in INSERT mode.
* @param rowNumbers row indexes related to the new rows to save
* @param newValueObjects list of new value objects to save
* @return an ErrorResponse value object in case of errors, VOListResponse if the operation is successfully completed
*/
public Response insertRecords(int[] rowNumbers, ArrayList newValueObjects) throws Exception {
PriceVO vo = null;
Response response = null;
DetailItemVO itemVO = (DetailItemVO)frame.getFormPanel().getVOModel().getValueObject();
for(int i=0;i<newValueObjects.size();i++) {
vo = (PriceVO)newValueObjects.get(i);
response = validateDates(vo);
if (response.isError())
return response;
vo.setCompanyCodeSys01SAL02(itemVO.getCompanyCodeSys01ITM01());
vo.setItemCodeItm01SAL02(itemVO.getItemCodeITM01());
}
return ClientUtils.getData("insertPrices",newValueObjects);
}
/**
* Method invoked when the user has clicked on save button and the grid is in EDIT mode.
* @param rowNumbers row indexes related to the changed rows
* @param oldPersistentObjects old value objects, previous the changes
* @param persistentObjects value objects relatied to the changed rows
* @return an ErrorResponse value object in case of errors, VOListResponse if the operation is successfully completed
*/
public Response updateRecords(int[] rowNumbers,ArrayList oldPersistentObjects,ArrayList persistentObjects) throws Exception {
Response response = null;
PriceVO vo = null;
for(int i=0;i<persistentObjects.size();i++) {
vo = (PriceVO)persistentObjects.get(i);
response = validateDates(vo);
if (response.isError())
return response;
}
return ClientUtils.getData("updatePrices",new ArrayList[]{oldPersistentObjects,persistentObjects});
}
/**
* Method invoked when the user has clicked on delete button and the grid is in READONLY mode.
* @param persistentObjects value objects to delete (related to the currently selected rows)
* @return an ErrorResponse value object in case of errors, VOResponse if the operation is successfully completed
*/
public Response deleteRecords(ArrayList persistentObjects) throws Exception {
return ClientUtils.getData("deletePrices",persistentObjects);
}
/**
* Callback method invoked when the user has selected another row.
* @param rowNumber selected row index
*/
public void rowChanged(int rowNumber) {
if (frame.getPricesGrid().getMode()!=Consts.READONLY)
return;
if (rowNumber!=-1)
reloadVariantsPrices(rowNumber);
else
frame.getVariantsPricesPanel().removeAll();
frame.getVariantsPricesPanel().revalidate();
frame.getVariantsPricesPanel().repaint();
}
private void reloadVariantsPrices(int rowNumber) {
DetailItemVO vo = (DetailItemVO)frame.getFormPanel().getVOModel().getValueObject();
final ProductVariantsPanel variantsPricesPanel = frame.getVariantsPricesPanel();
final PriceVO priceVO = (PriceVO)frame.getPricesGrid().getVOListTableModel().getObjectForRow(rowNumber);
if(!Boolean.TRUE.equals(vo.getUseVariant1ITM01()) &&
!Boolean.TRUE.equals(vo.getUseVariant2ITM01()) &&
!Boolean.TRUE.equals(vo.getUseVariant3ITM01()) &&
!Boolean.TRUE.equals(vo.getUseVariant4ITM01()) &&
!Boolean.TRUE.equals(vo.getUseVariant5ITM01()))
variantsPricesPanel.removeAll();
else {
variantsPricesPanel.removeAll();
variantsPricesPanel.getOtherGridParams().put(ApplicationConsts.ITEM,new ItemPK(vo.getCompanyCodeSys01(),vo.getItemCodeITM01()));
variantsPricesPanel.getOtherGridParams().put(ApplicationConsts.PRICELIST,priceVO.getPricelistCodeSal01SAL02());
variantsPricesPanel.initGrid(vo);
variantsPricesPanel.revalidate();
variantsPricesPanel.repaint();
SaveButton saveButton = new SaveButton();
saveButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Response res = ClientUtils.getData("updateVariantsPrices",new Object[]{
variantsPricesPanel.getVariantsMatrixVO(),
variantsPricesPanel.getCells(),
priceVO.getPricelistCodeSal01SAL02(),
priceVO.getStartDateSAL02(),
priceVO.getEndDateSAL02()
});
if (res.isError()) {
JOptionPane.showMessageDialog(
ClientUtils.getParentFrame(frame),
res.getErrorMessage(),
ClientSettings.getInstance().getResources().getResource("Error while saving"),
JOptionPane.ERROR_MESSAGE
);
}
else
JOptionPane.showMessageDialog(
ClientUtils.getParentFrame(frame),
ClientSettings.getInstance().getResources().getResource("prices saved"),
ClientSettings.getInstance().getResources().getResource("Attention"),
JOptionPane.INFORMATION_MESSAGE
);
}
});
variantsPricesPanel.getButtonsPanel().add(saveButton);
}
variantsPricesPanel.revalidate();
variantsPricesPanel.repaint();
}
/**
* Callback method invoked when the data loading is completed.
* @param error <code>true</code> if data loading has terminated with errors, <code>false</code> otherwise
*/
public void loadDataCompleted(boolean error) {
frame.getVariantsPricesPanel().removeAll();
frame.getVariantsPricesPanel().revalidate();
frame.getVariantsPricesPanel().repaint();
int rowNumber = frame.getPricesGrid().getSelectedRow();
if (rowNumber!=-1)
reloadVariantsPrices(rowNumber);
else
frame.getVariantsPricesPanel().removeAll();
}
}