There are currently two ways to do invoicing:
- Cron Job
- An external application outside of box office.
The ticket describes both these approaches to figure out the best way to do it.
Cron Job
The default method to generate invoices is to use the following:
- Purchases become Sales Invoices
- Cancellations become Credit Notes.
This can be done on a daily basis using a CRON job that just scoops out all transactions on a particular day and pushes them as Sales Invoices / Credit Notes in ERP.
External Application
The approach is similar to Cron Job in terms of programming but it is deployed as a separate HG app that needs to be run by finance manually every month.
There are currently two ways to do invoicing:
The ticket describes both these approaches to figure out the best way to do it.
Cron Job
The default method to generate invoices is to use the following:
This can be done on a daily basis using a CRON job that just scoops out all transactions on a particular day and pushes them as Sales Invoices / Credit Notes in ERP.
External Application
The approach is similar to Cron Job in terms of programming but it is deployed as a separate HG app that needs to be run by finance manually every month.