123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- #!/usr/bin/php
- <?php
- /* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- *
- * This program 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.
- *
- * This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * ATTENTION DE PAS EXECUTER CE SCRIPT SUR UNE INSTALLATION DE PRODUCTION
- */
- /**
- * \file htdocs/dev/generate-facture.php
- * \brief Script de generation de donnees aleatoires pour les factures
- */
- // Test si mode batch
- $sapi_type = php_sapi_name();
- if (substr($sapi_type, 0, 3) == 'cgi') {
- echo "Erreur: Vous utilisez l'interpreteur PHP pour le mode CGI. Pour executer mailing-send.php en ligne de commande, vous devez utiliser l'interpreteur PHP pour le mode CLI.\n";
- exit;
- }
- // Recupere root dolibarr
- $path=preg_replace('/generate-facture.php/i','',$_SERVER["PHP_SELF"]);
- require ($path."../../htdocs/master.inc.php");
- require_once(DOL_DOCUMENT_ROOT."/compta/facture/class/facture.class.php");
- require_once(DOL_DOCUMENT_ROOT."/societe/class/societe.class.php");
- /*
- * Parameters
- */
- define (GEN_NUMBER_FACTURE, 5);
- $ret=$user->fetch('','admin');
- if (! $ret > 0)
- {
- print 'A user with login "admin" and all permissions must be created to use this script.'."\n";
- exit;
- }
- $user->getrights();
- $socids = array();
- $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."societe WHERE client=1";
- $resql = $db->query($sql);
- if ($resql)
- {
- $num_socs = $db->num_rows($resql);
- $i = 0;
- while ($i < $num_socs)
- {
- $i++;
- $row = $db->fetch_row($resql);
- $socids[$i] = $row[0];
- }
- }
- $prodids = array();
- $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."product WHERE tosell=1";
- $resql = $db->query($sql);
- if ($resql)
- {
- $num_prods = $db->num_rows($resql);
- $i = 0;
- while ($i < $num_prods)
- {
- $i++;
- $row = $db->fetch_row($resql);
- $prodids[$i] = $row[0];
- }
- }
- $i=0;
- $result=0;
- while ($i < GEN_NUMBER_FACTURE && $result >= 0)
- {
- $i++;
- $socid = rand(1, $num_socs);
- print "Invoice ".$i." for socid ".$socid;
- $facture = new Facture($db, $socids[$socid]);
- $facture->date = time();
- $facture->cond_reglement_id = 3;
- $facture->mode_reglement_id = 3;
- $result=$facture->create($user);
- if ($result >= 0)
- {
- $result=$facture->validate($user);
- if ($result)
- {
- $nbp = rand(2, 5);
- $xnbp = 0;
- while ($xnbp < $nbp)
- {
- $prodid = rand(1, $num_prods);
- $product=new Product($db);
- $result=$product->fetch($prodids[$prodid]);
- $result=$facture->addline($facture->id,$product->description,$product->price, rand(1,5), 0, 0, 0, $prodids[$prodid], 0, '', '', 0, 0, '', $product->price_base_type, $product->price_ttc, $product->type);
- $xnbp++;
- }
- print " OK with ref ".$facture->ref."\n";;
- }
- else
- {
- dol_print_error($db,$facture->error);
- }
- }
- else
- {
- dol_print_error($db,$facture->error);
- }
- }
- ?>
|