[ 1703207 ] Issue when push button Paymenet Rule fo Order Complete
Fix bug introduced in revision 2161 (NPE)
This commit is contained in:
parent
c2faba83d5
commit
b29b483ba1
|
@ -1027,15 +1027,19 @@ public class VPayment extends CDialog
|
|||
{
|
||||
invoice = new MInvoice (Env.getCtx(), C_Invoice_ID, null);
|
||||
}
|
||||
if (invoice != null) {
|
||||
invoice.setC_CashLine_ID(cl.getC_CashLine_ID());
|
||||
invoice.save();
|
||||
}
|
||||
|
||||
if (order == null && C_Order_ID != 0)
|
||||
{
|
||||
order = new MOrder (Env.getCtx(), C_Order_ID, null);
|
||||
}
|
||||
if (order != null) {
|
||||
order.setC_CashLine_ID(cl.getC_CashLine_ID());
|
||||
order.save();
|
||||
}
|
||||
log.config("Update Order & Invoice with CashLine");
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue