IDEMPIERE-2811 Each Record should have a primary key - M_ProductPrice / fix constructor
This commit is contained in:
parent
b248f46cde
commit
0c28fbc7b6
|
@ -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
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue