mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-24 17:53:17 +01:00
122 lines
3.3 KiB
PHP
122 lines
3.3 KiB
PHP
<?php
|
|
/* Copyright (C) 2007-2008 Jérémie Ollivier <jeremie.o@laposte.net>
|
|
*
|
|
* 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, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
require ('../master.inc.php');
|
|
require ('include/environnement.php');
|
|
require ('classes/Facturation.class.php');
|
|
|
|
$obj_facturation = unserialize ($_SESSION['serObjFacturation']);
|
|
unset ($_SESSION['serObjFacturation']);
|
|
|
|
switch ( $_GET['action'] ) {
|
|
|
|
default:
|
|
if ( $_POST['hdnSource'] != 'NULL' ) {
|
|
|
|
// Récupération des données en fonction de la source (liste déroulante ou champ texte) ...
|
|
if ( $_POST['hdnSource'] == 'LISTE' ) {
|
|
|
|
$res = $sql->query('SELECT fk_product, ref, stock_propale, stock_commande, price, reel, tva_tx
|
|
FROM llx_product
|
|
LEFT JOIN llx_product_stock ON llx_product.rowid = llx_product_stock.fk_product
|
|
WHERE fk_product = '.$_POST['selProduit'].'
|
|
;');
|
|
|
|
} else if ( $_POST['hdnSource'] == 'REF' ) {
|
|
|
|
$res = $sql->query('SELECT fk_product, ref, stock_propale, stock_commande, price, reel, tva_tx
|
|
FROM llx_product
|
|
LEFT JOIN llx_product_stock ON llx_product.rowid = llx_product_stock.fk_product
|
|
WHERE ref = \''.$_POST['txtRef'].'\'
|
|
;');
|
|
|
|
}
|
|
|
|
|
|
|
|
// ... et enregistrement dans l'objet
|
|
if ( $sql->numRows ($res) ) {
|
|
|
|
$tab = $sql->fetchFirst($res);
|
|
|
|
$obj_facturation->id( $tab['fk_product'] );
|
|
$obj_facturation->ref( $tab['ref'] );
|
|
$obj_facturation->stock( $tab['reel'] - $tab['stock_propale'] - $tab['stock_commande'] );
|
|
$obj_facturation->prix( $tab['price'] );
|
|
$obj_facturation->tva( $tab['tva_tx'] );
|
|
|
|
// Définition du filtre pour n'afficher que le produit concerné
|
|
if ( $_POST['hdnSource'] == 'LISTE' ) {
|
|
|
|
$filtre = $tab['ref'];
|
|
|
|
} else if ( $_POST['hdnSource'] == 'REF' ) {
|
|
|
|
$filtre = $_POST['txtRef'];;
|
|
|
|
}
|
|
|
|
|
|
$redirection = 'affIndex.php?menu=facturation&filtre='.$filtre;
|
|
|
|
} else {
|
|
|
|
$obj_facturation->raz();
|
|
|
|
if ( $_POST['hdnSource'] == 'REF' ) {
|
|
|
|
$redirection = 'affIndex.php?menu=facturation&filtre='.$_POST['txtRef'];
|
|
|
|
} else {
|
|
|
|
$redirection = 'affIndex.php?menu=facturation';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$redirection = 'affIndex.php?menu=facturation';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'ajout_article';
|
|
$obj_facturation->qte($_POST['txtQte']);
|
|
$obj_facturation->tva($_POST['selTva']);
|
|
$obj_facturation->remise_percent($_POST['txtRemise']);
|
|
$obj_facturation->ajoutArticle();
|
|
|
|
$redirection = 'affIndex.php?menu=facturation';
|
|
break;
|
|
|
|
case 'suppr_article':
|
|
$obj_facturation->supprArticle($_GET['suppr_id']);
|
|
|
|
$redirection = 'affIndex.php?menu=facturation';
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
$_SESSION['serObjFacturation'] = serialize ($obj_facturation);
|
|
|
|
header ('Location: '.$redirection);
|
|
?>
|