Hi,
1. You can use a custom Invoice Window with filter DocStatus='IP', that you can list only Invoices with 'IP' Status and then you can validate them one by one.
2. You can create a new form that you list invoices by status parameter by default 'IP' after you select your invoices and you process a DocAction Complete.
Br,
Raouf
--
You received this message because you are subscribed to the Google Groups "iDempiere" group.
To unsubscribe from this group and stop receiving emails from it, send an email to idempiere+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/idempiere/3d811025-20c9-4e08-b27a-6d548df09885%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi,
another idea, look at org.compiere.process.DocumentEngine class
and you can add your use case on getValidActions method
example :
/********************
* Invoice
*/
else if (AD_Table_ID == MInvoice.Table_ID)
{
if (docStatus.equals(DocumentEngine.STATUS_Drafted)
|| docStatus.equals(DocumentEngine.STATUS_Invalid))
{
options[index++] = DocumentEngine.ACTION_Prepare;
}
// Complete .. CO
else if
(docStatus.equals(DocumentEngine.STATUS_Completed))
{
if (periodOpen) {
options[index++] =
DocumentEngine.ACTION_Reverse_Correct;
}
options[index++] =
DocumentEngine.ACTION_Reverse_Accrual;
}
}
BR,
Raouf
--
You received this message because you are subscribed to the Google Groups "iDempiere" group.
To unsubscribe from this group and stop receiving emails from it, send an email to idempiere+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/idempiere/b1f61d06-fca9-4fb1-8ac7-727cdb3bcc35%40googlegroups.com.
How do i change Document Action.

--
You received this message because you are subscribed to the Google Groups "iDempiere" group.
To unsubscribe from this group and stop receiving emails from it, send an email to idempiere+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/idempiere/47edcb5b-99ac-4649-8d3c-3328e00282af%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to idempiere+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/idempiere/47edcb5b-99ac-4649-8d3c-3328e00282af%40googlegroups.com.
--Hi,Thanks&Regards