forked from Wavyzz/dolibarr
138 lines
3.3 KiB
PHP
Executable File
138 lines
3.3 KiB
PHP
Executable File
#!/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 3 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($product->description, $product->price, rand(1,5), 0, 0, 0, $prodids[$prodid], 0, '', '', 0, 0, '', $product->price_base_type, $product->price_ttc, $product->type);
|
|
if ($result < 0)
|
|
{
|
|
dol_print_error($db,$propal->error);
|
|
}
|
|
$xnbp++;
|
|
}
|
|
|
|
print " OK with ref ".$facture->ref."\n";;
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db,$facture->error);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db,$facture->error);
|
|
}
|
|
|
|
}
|
|
|
|
|