phpcompta-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpcompta-dev] r5600 - phpcompta/trunk/include


From: phpcompta-dev
Subject: [Phpcompta-dev] r5600 - phpcompta/trunk/include
Date: Fri, 20 Dec 2013 11:29:20 +0100 (CET)

Author: danydb
Date: 2013-12-20 11:29:20 +0100 (Fri, 20 Dec 2013)
New Revision: 5600

Modified:
   phpcompta/trunk/include/class_document.php
Log:
insert_existing_document : copy existing lob into table document

Modified: phpcompta/trunk/include/class_document.php
===================================================================
--- phpcompta/trunk/include/class_document.php  2013-12-18 19:46:27 UTC (rev 
5599)
+++ phpcompta/trunk/include/class_document.php  2013-12-20 10:29:20 UTC (rev 
5600)
@@ -380,6 +380,22 @@
         $this->db->commit();
 
     }
+    /**
+     * Copy a existing OID (LOB) into the table document
+     * @param type $p_ag_id Follow_Up::ag_id
+     * @param type $p_lob oid of existing document
+     * @param type $p_filename filename of existing document
+     * @param type $p_mimetype mimetype of existing document
+     * @param type $p_description Description of existing document (default 
empty)
+     */
+    static function insert_existing_document($p_ag_id, $p_lob, $p_filename, 
$p_mimetype, $p_description = "")
+    {
+        global $cn;
+        // insert into  the table
+        $sql = "insert into document (ag_id, 
d_lob,d_filename,d_mimetype,d_number,d_description) values ($1,$2,$3,$4,$5,$6)";
+        $cn->exec_sql($sql, array($p_ag_id, $p_lob, $p_filename, $p_mimetype, 
1, $p_description));
+    }
+
     /*! a_ref
      * \brief create and compute a string for reference the doc <A ...>
      *



---
PhpCompta est un logiciel de comptabilité libre en ligne (full web)
Projet opensource http://www.phpcompta.eu



reply via email to

[Prev in Thread] Current Thread [Next in Thread]