Ejemplo n.º 1
0
 function render_html()
 {
     // heading
     print "<h3>DELETE QUOTE</h3><br>";
     print "<p>This page allows you to delete unwanted quotes. This will also delete the journal information belonging to this quote.</p>";
     // display summary box
     quotes_render_summarybox("quotes", $this->id);
     // display form
     $this->obj_form_quote->render_html();
 }
Ejemplo n.º 2
0
 function render_html()
 {
     // heading
     print "<h3>EXPORT QUOTE</h3><br>";
     print "<p>This page allows you to export the quote in different formats and provides functions to allow you to email the quote directly to the customer.</p>";
     // display summary box
     quotes_render_summarybox($this->id);
     // display form
     $this->obj_form_quote->render_html();
 }
Ejemplo n.º 3
0
 function render_html()
 {
     // heading
     print "<h3>CONVERT QUOTE</h3><br>";
     print "<p>This page allows you to convert this quote into an invoice. Please note that this action can not be reversed.</p>";
     // display summary box
     quotes_render_summarybox("quotes", $this->id);
     // display form
     $this->obj_form_quote->render_html();
 }
Ejemplo n.º 4
0
 function render_html()
 {
     // heading
     print "<h3>QUOTE ITEMS</h3><br>";
     print "<p>This page shows all the items belonging to the quote and allows you to edit them.</p>";
     // display summary box
     quotes_render_summarybox($this->id);
     // display form
     $this->obj_table_items->render_html();
 }
Ejemplo n.º 5
0
 function render_html()
 {
     // heading
     print "<h3>VIEW QUOTE</h3><br>";
     print "<p>This page allows you to view the basic details of the quote. You can use the links in the green navigation menu above to change to different sections of the quote, in order to add items, payments or journal entries to the quote.</p>";
     // display summary box
     quotes_render_summarybox($this->id);
     // display form
     $this->obj_form_quote->render_html();
 }
Ejemplo n.º 6
0
 function render_html()
 {
     // title + summapy
     print "<h3>ADD/EDIT QUOTE ITEM</h3><br>";
     print "<p>This page allows you to make changes to an quote item.</p>";
     quotes_render_summarybox($this->id);
     $this->obj_form_item->render_html();
 }