コード例 #1
0
 function render_html()
 {
     // title + summary
     print "<h3>ADD/EDIT INVOICE PAYMENT</h3><br>";
     print "<p>This page allows you to make changes to an invoice payment.</p>";
     invoice_render_summarybox("ar", $this->id);
     $this->obj_form_item->render_html();
 }
コード例 #2
0
 function render_html()
 {
     // heading
     print "<h3>INVOICE ITEMS</h3><br>";
     print "<p>This page shows all the items belonging to the invoice and allows you to edit them.</p>";
     // display summapy box
     invoice_render_summarybox("ap", $this->id);
     // display form
     $this->obj_table_items->render_html();
 }
コード例 #3
0
 function render_html()
 {
     // heading
     print "<h3>DELETE INVOICE</h3><br>";
     print "<p>This page allows you to delete incorrect invoices, provided that they have not been locked.</p>";
     // display summapy box
     invoice_render_summarybox("ap", $this->id);
     // display form
     $this->obj_form_invoice->render_html();
 }
コード例 #4
0
 function render_html()
 {
     // heading
     print "<h3>VIEW INVOICE</h3><br>";
     print "<p>This page allows you to view the basic details of the invoice. You can use the links in the green navigation menu above to change to different sections of the invoice, in order to add items, payments or journal entries to the invoice.</p>";
     // display summapy box
     invoice_render_summarybox("ap", $this->id);
     // display form
     $this->obj_form_invoice->render_html();
 }
コード例 #5
0
 function render_html()
 {
     // heading
     print "<h3>INVOICE PAYMENTS</h3><br>";
     print "<p>This page shows all payments made against this invoice and allows you to edit them.</p>";
     // display summapy box
     invoice_render_summarybox("ap", $this->id);
     // display form
     $this->obj_table_payments->render_html();
 }
コード例 #6
0
 function render_html()
 {
     // heading
     print "<h3>EXPORT INVOICE</h3><br>";
     print "<p>This page allows you to export the invoice in different formats and provides functions to allow you to email the invoice directly to the customer.</p>";
     // display summary box
     invoice_render_summarybox("ar", $this->id);
     // display form
     $this->obj_form_invoice->render_html();
 }