[ 1761918 ] Error creating periods for a year with per. created partial
https://sourceforge.net/tracker/?func=detail&atid=879332&aid=1761918&group_id=176962 [ 2430755 ] Year Create Periods display proper error message https://sourceforge.net/tracker/?func=detail&atid=879332&aid=2430755&group_id=176962
This commit is contained in:
parent
a2bc7f9f46
commit
21a15dfb3f
|
@ -1,5 +1,5 @@
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* Product: Adempiere ERP & CRM Smart Business Solution *
|
* Product: Adempiere ERP & CRM Smart Business Solution *
|
||||||
* Copyright (C) 1999-2006 ComPiere, Inc. All Rights Reserved. *
|
* Copyright (C) 1999-2006 ComPiere, Inc. All Rights Reserved. *
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
* This program is free software; you can redistribute it and/or modify it *
|
||||||
* under the terms version 2 of the GNU General Public License as published *
|
* under the terms version 2 of the GNU General Public License as published *
|
||||||
|
@ -26,11 +26,11 @@ import java.util.Properties;
|
||||||
import java.util.StringTokenizer;
|
import java.util.StringTokenizer;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
|
|
||||||
|
import org.adempiere.exceptions.FillMandatoryException;
|
||||||
import org.compiere.process.DocumentTypeVerify;
|
import org.compiere.process.DocumentTypeVerify;
|
||||||
import org.compiere.process.SvrProcess;
|
import org.compiere.process.SvrProcess;
|
||||||
import org.compiere.util.Env;
|
import org.compiere.util.Env;
|
||||||
import org.compiere.util.Language;
|
import org.compiere.util.Language;
|
||||||
import org.compiere.util.Msg;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -38,9 +38,17 @@ import org.compiere.util.Msg;
|
||||||
*
|
*
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: MYear.java,v 1.5 2006/10/11 04:12:39 jjanke Exp $
|
* @version $Id: MYear.java,v 1.5 2006/10/11 04:12:39 jjanke Exp $
|
||||||
|
*
|
||||||
|
* @author Teo Sarca, www.arhipac.ro
|
||||||
|
* <li>BF [ 1761918 ] Error creating periods for a year with per. created partial
|
||||||
|
* <li>BF [ 2430755 ] Year Create Periods display proper error message
|
||||||
*/
|
*/
|
||||||
public class MYear extends X_C_Year
|
public class MYear extends X_C_Year
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private static final long serialVersionUID = 2110541427179611810L;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Standard Constructor
|
* Standard Constructor
|
||||||
|
@ -152,19 +160,13 @@ public class MYear extends X_C_Year
|
||||||
} // toString
|
} // toString
|
||||||
|
|
||||||
|
|
||||||
/**
|
@Override
|
||||||
* Before Save
|
|
||||||
* @param newRecord new
|
|
||||||
* @return true if can be saved
|
|
||||||
*/
|
|
||||||
protected boolean beforeSave (boolean newRecord)
|
protected boolean beforeSave (boolean newRecord)
|
||||||
{
|
{
|
||||||
int yy = getYearAsInt();
|
int yy = getYearAsInt();
|
||||||
if (yy == 0)
|
if (yy == 0)
|
||||||
{
|
{
|
||||||
log.saveError("FillMandatory", Msg.getElement(getCtx(), "Year")
|
throw new FillMandatoryException(COLUMNNAME_FiscalYear);
|
||||||
+ " -> " + yy + " (2006 - 2006/07 - 2006-07 - ...)");
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
} // beforeSave
|
} // beforeSave
|
||||||
|
@ -176,7 +178,7 @@ public class MYear extends X_C_Year
|
||||||
* @param locale locale
|
* @param locale locale
|
||||||
* @return true if created
|
* @return true if created
|
||||||
*/
|
*/
|
||||||
public boolean createStdPeriods(Locale locale)
|
public void createStdPeriods(Locale locale)
|
||||||
{
|
{
|
||||||
if (locale == null)
|
if (locale == null)
|
||||||
{
|
{
|
||||||
|
@ -222,11 +224,21 @@ public class MYear extends X_C_Year
|
||||||
cal.add(Calendar.DAY_OF_YEAR, -1);
|
cal.add(Calendar.DAY_OF_YEAR, -1);
|
||||||
Timestamp end = new Timestamp(cal.getTimeInMillis());
|
Timestamp end = new Timestamp(cal.getTimeInMillis());
|
||||||
//
|
//
|
||||||
MPeriod period = new MPeriod (this, month+1, name, start, end);
|
MPeriod period = MPeriod.get(getCtx(), start, getAD_Org_ID());
|
||||||
if (!period.save(get_TrxName())) // Creates Period Control
|
if (period == null)
|
||||||
return false;
|
{
|
||||||
|
period = new MPeriod (this, month+1, name, start, end);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
period.setC_Year_ID(this.getC_Year_ID());
|
||||||
|
period.setPeriodNo(month+1);
|
||||||
|
period.setName(name);
|
||||||
|
period.setStartDate(start);
|
||||||
|
period.setEndDate(end);
|
||||||
|
}
|
||||||
|
period.saveEx(get_TrxName()); // Creates Period Control
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
} // createStdPeriods
|
} // createStdPeriods
|
||||||
|
|
||||||
} // MYear
|
} // MYear
|
||||||
|
|
|
@ -50,9 +50,8 @@ public class YearCreatePeriods extends SvrProcess
|
||||||
throw new AdempiereUserError ("@NotFound@: @C_Year_ID@ - " + p_C_Year_ID);
|
throw new AdempiereUserError ("@NotFound@: @C_Year_ID@ - " + p_C_Year_ID);
|
||||||
log.info(year.toString());
|
log.info(year.toString());
|
||||||
//
|
//
|
||||||
if (year.createStdPeriods(null))
|
year.createStdPeriods(null);
|
||||||
return "@OK@";
|
return "@OK@";
|
||||||
return "@Error@";
|
|
||||||
} // doIt
|
} // doIt
|
||||||
|
|
||||||
} // YearCreatePeriods
|
} // YearCreatePeriods
|
||||||
|
|
Loading…
Reference in New Issue