IDEMPIERE-2811 Each Record should have a primary key - M_ProductPrice / fix constructor

This commit is contained in:
Murilo Habermann Torquato 2016-01-27 19:56:24 +01:00
parent b248f46cde
commit 0c28fbc7b6
1 changed files with 2 additions and 2 deletions

View File

@ -60,12 +60,12 @@ public class MProductPrice extends X_M_ProductPrice
/**
* Persistency Constructor
* @param ctx context
* @param ignored ignored
* @param M_ProductPrice_ID key
* @param trxName transaction
*/
public MProductPrice (Properties ctx, int M_ProductPrice_ID, String trxName)
{
super(ctx, 0, trxName);
super(ctx, M_ProductPrice_ID, trxName);
} // MProductPrice
/**