Revision: 700
http://cs-project.svn.sourceforge.net/cs-project/?rev=700&view=rev
Author: crazedsanity
Date: 2007-12-17 19:15:44 -0800 (Mon, 17 Dec 2007)
Log Message:
-----------
Class for retrieving invoice records and (probably) modifying them.
Added Paths:
-----------
branches/invoices/lib/invoiceViewer.class.php
Copied: branches/invoices/lib/invoiceViewer.class.php (from rev 698, branches/invoices/lib/invoice.class.php)
===================================================================
--- branches/invoices/lib/invoiceViewer.class.php (rev 0)
+++ branches/invoices/lib/invoiceViewer.class.php 2007-12-18 03:15:44 UTC (rev 700)
@@ -0,0 +1,36 @@
+<?php
+/*
+ * This class was built to handle creation, searching, and updates of invoices.
+ * For searches involving items on the invoice, use invoiceItem{}.
+ * invoices is handled by
+ *
+ * SVN INFORMATION:::
+ * ------------------
+ * SVN Signature::::::: $Id$
+ * Last Author::::::::: $Author$
+ * Current Revision:::: $Revision$
+ * Repository Location: $HeadURL$
+ * Last Updated:::::::: $Date$
+ *
+ */
+
+//TODO: log everything!
+
+
+class invoiceViewer extends invoice {
+
+ protected $gfObj;
+ protected $logsObj;
+
+
+
+ //=========================================================================
+ public function __construct(cs_phpDB $db) {
+ $this->db = $db;
+ $this->gfObj = new cs_globalFunctions;
+ $this->gfObj->debugPrintOpt = DEBUGPRINTOPT;
+ $this->logsObj = new logsClass($this->db, 'Invoice Viewer');
+ }//end __construct()
+ //=========================================================================
+}
+?>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|