noalyss-commit
[Top][All Lists]
Advanced

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

[Noalyss-commit] [noalyss] 75/151: Scenario pour dév. de comptabilité a


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 75/151: Scenario pour dév. de comptabilité analytique
Date: Sat, 4 Feb 2017 17:14:29 +0000 (UTC)

sparkyx pushed a commit to branch master
in repository noalyss.

commit 6f36d25c6b94d67f99c1b70bb52d2923821beac9
Author: Dany De Bontridder <address@hidden>
Date:   Sat Nov 26 23:05:07 2016 +0100

    Scenario pour dév. de comptabilité analytique
---
 scenario/comptabilite_analytique.php |   42 ++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/scenario/comptabilite_analytique.php 
b/scenario/comptabilite_analytique.php
new file mode 100644
index 0000000..53a203b
--- /dev/null
+++ b/scenario/comptabilite_analytique.php
@@ -0,0 +1,42 @@
+<?php
+
+/*
+ *   This file is part of NOALYSS.
+ *
+ *   NOALYSS is free software; you can redistribute it and/or modify
+ *   it under the terms of the GNU General Public License as published by
+ *   the Free Software Foundation; either version 2 of the License, or
+ *   (at your option) any later version.
+ *
+ *   NOALYSS is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with NOALYSS; if not, write to the Free Software
+ *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+// Copyright Author Dany De Bontridder address@hidden
+//@description: Developpement for ANC
+
+require_once NOALYSS_INCLUDE . "/class/class_anc_operation.php";
+
+$anc = new Anc_Operation($cn);
+
+$a_jrnxId = $cn->get_array(
+        "select j_id from jrnx join jrn on (jr_grpt_id=j_grpt)
+            where
+            jr_id=$1
+            ", array(4677));
+$nb = count($a_jrnxId);
+
+for ($i = 0; $i<$nb; $i++) {
+// First row 
+    $a = $anc->get_by_jid($a_jrnxId[$i]['j_id']);
+    if (! empty($a) ) {
+        $complete=$anc->to_request($a, 1);
+        var_dump($complete);
+    }
+}



reply via email to

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