erpcya / adempiere

ADempiere Business Suite ERP/CRM/MFG/SCM/POS done the Bazaar way in an open and unabated fashion. Focus is on the Community that includes Subject Matter Specialists, Implementors and End-Users.
www.adempiere.net
GNU General Public License v2.0
2 stars 5 forks source link

[Feature Request] Permitir acceder a las variables del procesador de pagos #42

Open yamelsenih opened 1 year ago

yamelsenih commented 1 year ago

Feature request

Actualmente ADempiere está en un punto donde cada proceso de negocio se encuentra en un paquete distinto, esto ha hecho que muchas funcionalidades por implementar se tengan que cambiar, una de ellas es el procesador de pagos. El mismo tiene variables que se encuentran declaradas como protegidas y no permiten el acceso desde un paquete diferente.

Las variables son:

protected MPaymentProcessor p_mpp = null;
protected MPayment          p_mp = null;

Describe the solution you'd like

Simplemte declarar como pública cada una de las varibles.

Additional context

https://github.com/adempiere/adempiere/issues/4241

Issues-translate-bot commented 1 year ago

Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿


Feature request

ADempiere is currently at a point where each business process is in a different package, this has meant that many functionalities to be implemented have to be changed, one of them is the payment processor. It has variables that are declared as protected and do not allow access from a different package.

The variables are:

protected MPaymentProcessor p_mpp = null;
protected MPayment p_mp = null;

Describe the solution you'd like

Simply declare each of the variables as public.

Additional context