I’ve had some clients who effectively want to prepay me for my work. Currently the is no mechanism to allow me to do so (and least not in the system).
A new feature would be the ability to add credit to a client’s account and then enter payments using that credit as a payment option,
Mike
1 Like
in /application/modules/payments/models/mdl_payments.php
‘payment_amount’ => array(
‘field’ => ‘payment_amount’,
‘label’ => lang(‘payment’),
‘rules’ => ‘required|callback_validate_payment_amount’
change to
‘payment_amount’ => array(
‘field’ => ‘payment_amount’,
‘label’ => lang(‘payment’),
‘rules’ => ‘required’
conorh
November 28, 2017, 8:40am
4
@Repair_I_T Does your method allow us to add a payment larger than that due by the client?
Kovah
November 28, 2017, 8:41am
5
By the way: the fix by @Repair_I_T does not solve the problem but deactivates the proper validation for invoice amounts which is not recommended. Any support for such fixes will be rejected.