* Copyright (C) 2004-2009 Laurent Destailleur * Copyright (C) 2005 Eric Seigne * Copyright (C) 2005-2009 Regis Houssin * * 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. */ /** * \file htdocs/fourn/commande/fiche.php * \ingroup commande * \brief Fiche commande * \version $Id$ */ require('./pre.inc.php'); require_once(DOL_DOCUMENT_ROOT."/html.formfile.class.php"); require_once(DOL_DOCUMENT_ROOT."/html.formorder.class.php"); require_once(DOL_DOCUMENT_ROOT.'/includes/modules/supplier_order/modules_commandefournisseur.php'); require_once DOL_DOCUMENT_ROOT."/fourn/fournisseur.commande.class.php"; require_once DOL_DOCUMENT_ROOT."/fourn/fournisseur.product.class.php"; require_once DOL_DOCUMENT_ROOT."/lib/fourn.lib.php"; require_once(DOL_DOCUMENT_ROOT."/lib/functions2.lib.php"); if ($conf->projet->enabled) require_once(DOL_DOCUMENT_ROOT.'/project.class.php'); $langs->load('orders'); $langs->load('sendings'); $langs->load('companies'); $langs->load('bills'); $langs->load('propal'); $langs->load('deliveries'); $langs->load('products'); $langs->load('stocks'); $comclientid = isset($_GET["comid"])?$_GET["comid"]:''; $socid = isset($_GET["socid"])?$_GET["socid"]:''; // Security check $id = isset($_GET["id"])?$_GET["id"]:$_POST["id"]; if ($user->societe_id) $socid=$user->societe_id; $result = restrictedArea($user, 'commande_fournisseur', $id,''); // Recuperation de l'id de projet $projetid = 0; if ($_GET["projetid"]) $projetid = $_GET["projetid"]; $mesg=''; /* * Actions */ // Set project if ($_POST['action'] == 'classin') { $commande = new CommandeFournisseur($db); $commande->fetch($id); $commande->setProject($_POST["projetid"]); } if ($_REQUEST['action'] == 'setremisepercent' && $user->rights->fournisseur->commande->creer) { $commande = new CommandeFournisseur($db); $commande->fetch($_REQUEST['id']); $result = $commande->set_remise($user, $_POST['remise_percent']); $id=$_REQUEST['id']; } /* * Ajout d'une ligne produit dans la commande */ if ($_POST['action'] == 'addline' && $user->rights->fournisseur->commande->creer) { if ($_POST['qty'] && (($_POST['pu'] && ($_POST['np_desc'] || $_POST['dp_desc'])) || $_POST['idprodfournprice'])) { $commande = new CommandeFournisseur($db); $ret=$commande->fetch($id); if ($ret < 0) { dol_print_error($db,$commande->error); exit; } // Ecrase $pu par celui du produit // Ecrase $desc par celui du produit // Ecrase $txtva par celui du produit if ($_POST["idprodfournprice"]) // >0 or -1 { $product = new ProductFournisseur($db); $idprod=$product->get_buyprice($_POST['idprodfournprice'], $_POST['qty']); if ($idprod > 0) { $product->fetch($idprod); // cas special pour lequel on a les meme reference que le fournisseur // $label = '['.$nv_prod->ref.'] - '. $nv_prod->libelle; $label = $product->libelle; $societe=''; if ($commande->socid) { $societe=new Societe($db); $societe->fetch($commande->socid); } $desc = $product->description; $desc.= $product->description && $_POST['np_desc'] ? "\n" : ""; $desc.= $_POST['np_desc']; $tva_tx = get_default_tva($societe,$mysoc,$product->tva_tx,$product->id); $type = $product->type; $result=$commande->addline( $desc, $pu, $_POST['qty'], $tva_tx, $product->id, $_POST['idprodfournprice'], $product->fourn_ref, $_POST['remise_percent'], 'HT', $type ); } if ($idprod == -1) { // Quantity too low $mesg='
'.$langs->trans("ErrorQtyTooLowForThisSupplier").'
'; } } else { $type=$_POST["type"]; $desc=$_POST['dp_desc']; $tva_tx = price2num($_POST['tva_tx']); if (! $_POST['dp_desc']) { $mesg='
'.$langs->trans("ErrorFieldRequired",$langs->transnoentities("Label")).'
'; } else { if (!empty($_POST['pu'])) { $price_base_type = 'HT'; $ht = price2num($_POST['pu']); $result=$commande->addline($desc, $ht, $_POST['qty'], $tva_tx, 0, 0, '', $_POST['remise_percent'], $price_base_type, 0, $type); } else { $ttc = price2num($_POST['amountttc']); $ht = $ttc / (1 + ($tauxtva / 100)); $price_base_type = 'HT'; $result=$commande->addline($desc, $ht, $_POST['qty'], $tva_tx, 0, 0, '', $_POST['remise_percent'], $price_base_type, $ttc, $type); } } } //print "xx".$tva_tx; exit; if ($result > 0) { $outputlangs = $langs; if (! empty($_REQUEST['lang_id'])) { $outputlangs = new Translate("",$conf); $outputlangs->setDefaultLang($_REQUEST['lang_id']); } supplier_order_pdf_create($db, $commande->id, $commande->modelpdf, $outputlangs); unset($_POST['qty']); unset($_POST['type']); unset($_POST['idprodfournprice']); unset($_POST['remmise_percent']); unset($_POST['dp_desc']); unset($_POST['np_desc']); unset($_POST['pu']); unset($_POST['tva_tx']); } else if (empty($mesg)) { $mesg='
'.$commande->error.'
'; } } } /* * Mise a jour d'une ligne dans la commande */ if ($_POST['action'] == 'updateligne' && $user->rights->fournisseur->commande->creer && $_POST['save'] == $langs->trans('Save')) { $commande = new CommandeFournisseur($db,"",$id); if ($commande->fetch($id) < 0) dol_print_error($db); $result = $commande->updateline($_POST['elrowid'], $_POST['eldesc'], $_POST['pu'], $_POST['qty'], $_POST['remise_percent'], $_POST['tva_tx'], 'HT', 0, $_POST["type"] ); if ($result >= 0) { $outputlangs = $langs; if (! empty($_REQUEST['lang_id'])) { $outputlangs = new Translate("",$conf); $outputlangs->setDefaultLang($_REQUEST['lang_id']); } supplier_order_pdf_create($db, $commande->id, $commande->modelpdf, $outputlangs); } else { dol_print_error($db,$commande->error); exit; } } if ($_REQUEST['action'] == 'confirm_deleteproductline' && $_REQUEST['confirm'] == 'yes') { if ($user->rights->fournisseur->commande->creer) { $commande = new CommandeFournisseur($db); $commande->fetch($id); $result = $commande->delete_line($_GET['lineid']); $outputlangs = $langs; if (! empty($_REQUEST['lang_id'])) { $outputlangs = new Translate("",$conf); $outputlangs->setDefaultLang($_REQUEST['lang_id']); } supplier_order_pdf_create($db, $id, $commande->modelpdf, $outputlangs); } } if ($_REQUEST['action'] == 'confirm_valid' && $_REQUEST['confirm'] == 'yes' && $user->rights->fournisseur->commande->valider) { $commande = new CommandeFournisseur($db); $commande->fetch($id); $commande->date_commande=time(); $result = $commande->valid($user); if ($result >= 0) { $outputlangs = $langs; if (! empty($_REQUEST['lang_id'])) { $outputlangs = new Translate("",$conf); $outputlangs->setDefaultLang($_REQUEST['lang_id']); } supplier_order_pdf_create($db, $commande->id, $commande->modelpdf, $outputlangs); } } if ($_REQUEST['action'] == 'confirm_approve' && $_REQUEST["confirm"] == 'yes' && $user->rights->fournisseur->commande->approuver) { $commande = new CommandeFournisseur($db); $commande->fetch($id); $result = $commande->approve($user); } if ($_REQUEST['action'] == 'confirm_refuse' && $_REQUEST['confirm'] == 'yes' && $user->rights->fournisseur->commande->approuver) { $commande = new CommandeFournisseur($db); $commande->fetch($id); $result = $commande->refuse($user); } if ($_REQUEST['action'] == 'confirm_commande' && $_REQUEST['confirm'] == 'yes' && $user->rights->fournisseur->commande->commander) { $commande = new CommandeFournisseur($db); $commande->fetch($id); $result = $commande->commande($user, $_GET["datecommande"], $_GET["methode"], $_GET['comment']); } if ($_REQUEST['action'] == 'confirm_delete' && $_REQUEST['confirm'] == 'yes' && $user->rights->fournisseur->commande->creer) { $commande = new CommandeFournisseur($db); $commande->id = $id; $commande->delete(); Header('Location: index.php'); exit; } if ($_POST["action"] == 'livraison' && $user->rights->fournisseur->commande->receptionner) { $commande = new CommandeFournisseur($db); $commande->fetch($id); if ($_POST["type"]) { $date_liv = dol_mktime(0,0,0,$_POST["remonth"],$_POST["reday"],$_POST["reyear"]); $result = $commande->Livraison($user, $date_liv, $_POST["type"], $_POST["comment"]); if ($result > 0) { Header("Location: fiche.php?id=".$id); exit; } else { dol_print_error($db,$commande->error); exit; } } else { $mesg='
'.$langs->trans("ErrorFieldRequired",$langs->transnoentities("Delivery")).'
'; } } if ($_REQUEST["action"] == 'confirm_cancel' && $_REQUEST["confirm"] == 'yes' && $user->rights->fournisseur->commande->annuler) { $commande = new CommandeFournisseur($db); $commande->fetch($id); $result = $commande->cancel($user); if ($result > 0) { Header("Location: fiche.php?id=".$id); exit; } else { $mesg=$commande->error; } } /* * Ordonnancement des lignes */ if ($_GET['action'] == 'up' && $user->rights->fournisseur->commande->creer) { $commande = new CommandeFournisseur($db,'',$id); $commande->fetch($id); $commande->line_up($_GET['rowid']); $outputlangs = $langs; if (! empty($_REQUEST['lang_id'])) { $outputlangs = new Translate("",$conf); $outputlangs->setDefaultLang($_REQUEST['lang_id']); } supplier_order_pdf_create($db, $commande->id, $commande->modelpdf, $outputlangs); Header ('Location: '.$_SERVER["PHP_SELF"].'?id='.$id.'#'.$_GET['rowid']); exit; } if ($_GET['action'] == 'down' && $user->rights->fournisseur->commande->creer) { $commande = new CommandeFournisseur($db,'',$id); $commande->fetch($id); $commande->line_down($_GET['rowid']); $outputlangs = $langs; if (! empty($_REQUEST['lang_id'])) { $outputlangs = new Translate("",$conf); $outputlangs->setDefaultLang($_REQUEST['lang_id']); } supplier_order_pdf_create($db, $commande->id, $commande->modelpdf, $outputlangs); Header ('Location: '.$_SERVER["PHP_SELF"].'?id='.$id.'#'.$_GET['rowid']); exit; } if ($_REQUEST['action'] == 'builddoc') // En get ou en post { /* * Generation de la commande * definit dans /includes/modules/commande/modules_commande.php */ // Sauvegarde le dernier module choisi pour generer un document $commande = new CommandeFournisseur($db, 0, $_REQUEST['id']); $commande->fetch($_REQUEST['id']); if ($_REQUEST['model']) { $commande->setDocModel($user, $_REQUEST['model']); } $outputlangs = $langs; if (! empty($_REQUEST['lang_id'])) { $outputlangs = new Translate("",$conf); $outputlangs->setDefaultLang($_REQUEST['lang_id']); } $result=supplier_order_pdf_create($db, $commande->id,$commande->modelpdf,$outputlangs); if ($result <= 0) { dol_print_error($db,$result); exit; } else { Header ('Location: '.$_SERVER["PHP_SELF"].'?id='.$commande->id.'#builddoc'); exit; } } // Delete file if ($action=='remove_file') { $commande = new CommandeFournisseur($db); if ($commande->fetch($id)) { $upload_dir = $conf->commande->dir_output . "/"; $file = $upload_dir . '/' . urldecode($_GET['file']); dol_delete_file($file); $mesg = '
'.$langs->trans("FileWasRemoved").'
'; } } /* * Create an order */ if ($_GET["action"] == 'create') { $fourn = new Fournisseur($db); $result=$fourn->fetch($_GET["socid"]); $db->begin(); $orderid=$fourn->create_commande($user); if ($orderid > 0) { $idc = $fourn->single_open_commande; if ($comclientid != '') { $fourn->updateFromCommandeClient($user,$idc,$comclientid); } $id=$orderid; $_GET['id']=$id; $_REQUEST['id']=$id; $db->commit(); } else { $db->rollback(); $mesg=$fourn->error; } } /* * View */ llxHeader('',$langs->trans("OrderCard"),"CommandeFournisseur"); $html = new Form($db); $formfile = new FormFile($db); $formorder = new FormOrder($db); /* *************************************************************************** */ /* */ /* Mode vue et edition */ /* */ /* *************************************************************************** */ $now=gmmktime(); $productstatic = new Product($db); $id = $_REQUEST['id']; $ref= $_REQUEST['ref']; if ($id > 0 || ! empty($ref)) { //if ($mesg) print $mesg.'
'; $commande = new CommandeFournisseur($db); $result=$commande->fetch($_REQUEST['id'],$_REQUEST['ref']); if ($result >= 0) { $soc = new Societe($db); $soc->fetch($commande->socid); $author = new User($db); $author->id = $commande->user_author_id; $author->fetch(); $head = ordersupplier_prepare_head($commande); $title=$langs->trans("SupplierOrder"); dol_fiche_head($head, 'card', $title); /* * Confirmation de la suppression de la commande */ if ($_GET['action'] == 'delete') { $ret=$html->form_confirm($_SERVER["PHP_SELF"].'?id='.$id, $langs->trans('DeleteOrder'), $langs->trans('ConfirmDeleteOrder'), 'confirm_delete', '', 0, 2); if ($ret == 'html') print '
'; } /* * Confirmation de la validation */ if ($_GET['action'] == 'valid') { $commande->date_commande=gmmktime(); // We check if number is temporary number if (eregi('^\(PROV',$commande->ref)) $newref = $commande->getNextNumRef($soc); else $newref = $commande->ref; $text=$langs->trans('ConfirmValidateOrder',$newref); if ($conf->notification->enabled) { require_once(DOL_DOCUMENT_ROOT ."/notify.class.php"); $notify=new Notify($db); $text.='
'; $text.=$notify->confirmMessage(3,$commande->socid); } $ret=$html->form_confirm($_SERVER["PHP_SELF"].'?id='.$id, $langs->trans('ValidateOrder'), $text, 'confirm_valid', '', 0, ($conf->notification->enabled?0:1)); if ($ret == 'html') print '
'; } /* * Confirmation de l'approbation */ if ($_GET['action'] == 'approve') { $ret=$html->form_confirm("fiche.php?id=$commande->id",$langs->trans("ApproveThisOrder"),$langs->trans("ConfirmApproveThisOrder"),"confirm_approve", '', 1, 1); if ($ret == 'html') print '
'; } /* * Confirmation de la desapprobation * */ if ($_GET['action'] == 'refuse') { $ret=$html->form_confirm("fiche.php?id=$commande->id",$langs->trans("DenyingThisOrder"),$langs->trans("ConfirmDenyingThisOrder"),"confirm_refuse", '', 0, 1); if ($ret == 'html') print '
'; } /* * Confirmation de l'annulation */ if ($_GET['action'] == 'cancel') { $ret=$html->form_confirm("fiche.php?id=$commande->id",$langs->trans("Cancel"),$langs->trans("ConfirmCancelThisOrder"),"confirm_cancel", '', 0, 1); if ($ret == 'html') print '
'; } /* * Confirmation de l'envoi de la commande */ if ($_GET["action"] == 'commande') { $date_com = dol_mktime(0,0,0,$_POST["remonth"],$_POST["reday"],$_POST["reyear"]); $ret=$html->form_confirm("fiche.php?id=".$commande->id."&datecommande=".$date_com."&methode=".$_POST["methodecommande"]."&comment=".urlencode($_POST["comment"]), $langs->trans("MakeOrder"),$langs->trans("ConfirmMakeOrder",dol_print_date($date_com,'day')),"confirm_commande"); if ($ret == 'html') print '
'; } /* * Confirmation de la suppression d'une ligne produit */ if ($_GET['action'] == 'delete_product_line') { $ret=$html->form_confirm($_SERVER["PHP_SELF"].'?id='.$commande->id.'&lineid='.$_GET["lineid"], $langs->trans('DeleteProductLine'), $langs->trans('ConfirmDeleteProductLine'), 'confirm_deleteproductline','',0,2); if ($ret == 'html') print '
'; } /* * Commande */ $nbrow=8; if ($conf->projet->enabled) $nbrow++; print ''; // Ref print ''; print ''; print ''; // Ref supplier /* print '"; print ''; print ''; */ // Fournisseur print '"; print ''; print ''; // Statut print ''; print ''; print '"; // Date if ($commande->methode_commande_id > 0) { print '"; if ($commande->methode_commande) { print ''; } } // Auteur print ''; print ''; print ''; // Projet if ($conf->projet->enabled) { $langs->load('projects'); print ''; print ''; } // Ligne de 3 colonnes print ''; print ''; print ''; print ''; print ''; print ''; print ''; print "
'.$langs->trans("Ref").''; print $html->showrefnav($commande,'ref','',1,'ref','ref'); print '
'.$langs->trans("RefSupplier")."'.$commande->ref_supplier.'
'.$langs->trans("Supplier")."'.$soc->getNomUrl(1,'supplier').'
'.$langs->trans("Status").''; print $commande->getLibStatut(4); print "
'.$langs->trans("Date").''; if ($commande->date_commande) { print dol_print_date($commande->date_commande,"dayhourtext")."\n"; } print "
'.$langs->trans("Method").''.$commande->methode_commande.'
'.$langs->trans("AuthorRequest").''.$author->getNomUrl(1).'
'; print ''; if ($_GET['action'] != 'classer' && $commande->brouillon) print ''; print '
'; print $langs->trans('Project'); print ''.img_edit($langs->trans('SetProject')).'
'; print '
'; if ($_GET['action'] == 'classer') { $html->form_project($_SERVER['PHP_SELF'].'?id='.$commande->id, $commande->socid, $commande->projet_id, 'projetid'); } else { $html->form_project($_SERVER['PHP_SELF'].'?id='.$commande->id, $commande->socid, $commande->projet_id, 'none'); } print '
'.$langs->trans("AmountHT").''.price($commande->total_ht).''.$langs->trans("Currency".$conf->monnaie).'
'.$langs->trans("AmountVAT").''.price($commande->total_tva).''.$langs->trans("Currency".$conf->monnaie).'
'.$langs->trans("AmountTTC").''.price($commande->total_ttc).''.$langs->trans("Currency".$conf->monnaie).'
"; if ($mesg) print $mesg; else print '
'; /* * Lines */ print ''; $num = sizeof($commande->lignes); $i = 0; $total = 0; if ($num) { print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print "\n"; } $var=true; while ($i < $num) { $commandline = $commande->lignes[$i]; $var=!$var; // Show product and description $type=$commandline->product_type?$commandline->product_type:$commandline->fk_product_type; // Try to enhance type detection using date_start and date_end for free lines where type // was not saved. if (! empty($commandline->date_start)) $type=1; if (! empty($commandline->date_end)) $type=1; // Ligne en mode visu if ($_GET['action'] != 'editline' || $_GET['rowid'] != $commandline->id) { print ''; // Show product and description print ''; print ''; print '\n"; print ''; if ($commandline->remise_percent > 0) { print '\n"; } else { print ''; } print ''; if ($commande->statut == 0 && $user->rights->fournisseur->commande->creer) { print ''; $actiondelete='delete_product_line'; print ''; } else { print ''; } print ""; } // Ligne en mode update if ($_GET["action"] == 'editline' && $user->rights->fournisseur->commande->creer && ($_GET["rowid"] == $commandline->id)) { print 'id.'" method="post">'; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print '' . "\n"; print "\n"; } $i++; } /* * Form to add new line */ if ($commande->statut == 0 && $user->rights->fournisseur->commande->creer && $_GET["action"] <> 'editline') { print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; // Add free products/services form print ''; print ''; print ''; print ''; $var=true; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; // Ajout de produits/services predefinis if ($conf->produit->enabled || $conf->service->enabled) { print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; $var=!$var; print ''; print ''; print ''; print ''; print ''; print ''; print ''; } } print '
'.$langs->trans('Label').''.$langs->trans('VAT').''.$langs->trans('PriceUHT').''.$langs->trans('Qty').''.$langs->trans('ReductionShort').''.$langs->trans('TotalHTShort').' 
'; if ($commandline->fk_product > 0) { print ''; // ancre pour retourner sur la ligne $product_static=new ProductFournisseur($db); $product_static->fetch($commandline->fk_product); $text=$product_static->getNomUrl(1); $text.= ' - '.$product_static->libelle; $description=($conf->global->PRODUIT_DESC_IN_FORM?'':dol_htmlentitiesbr($commandline->description)); print $html->textwithtooltip($text,$description,3,'','',$i); // Show range print_date_range($commandline->date_start,$commandline->date_end); // Add description in form if ($conf->global->PRODUIT_DESC_IN_FORM) print ($commandline->description && $commandline->description!=$product_static->libelle)?'
'.dol_htmlentitiesbr($commandline->description):''; } // Description - Editor wysiwyg if (! $commandline->fk_product) { if ($type==1) $text = img_object($langs->trans('Service'),'service'); else $text = img_object($langs->trans('Product'),'product'); print $text.' '.nl2br($commandline->description); // Show range print_date_range($commandline->date_start,$commandline->date_end); } print '
'.vatrate($commandline->tva_tx).'%'.price($commandline->subprice)."'.$commandline->qty.''.dol_print_reduction($commandline->remise_percent,$langs)." '.price($commandline->total_ht).'id.'#'.$commandline->id.'">'; print img_edit(); print ''; print img_delete(); print '  
'; print ''; // ancre pour retourner sur la ligne if (($conf->produit->enabled || $conf->service->enabled) && $commandline->fk_product > 0) { print ''; print img_object($langs->trans('ShowProduct'),'product'); print ' '.$commandline->ref_fourn.''; print ' ('.$commandline->ref.')'; print ' - '.nl2br($commandline->product); print '
'; } else { print $html->select_type_of_lines($commandline->product_type,'type',1); if ($conf->produit->enabled && $conf->service->enabled) print '
'; } // Description - Editor wysiwyg if ($conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_DETAILS) { require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php"); $doleditor=new DolEditor('eldesc',$commandline->description,200,'dolibarr_details'); $doleditor->Create(); } else { print ''; } print '
'; $html->select_tva('tva_tx',$commandline->tva_tx); print '%'; print '
'; print ''; // ancre print $langs->trans('AddNewLine').' - '.$langs->trans("FreeZone").''.$langs->trans('VAT').''.$langs->trans('PriceUHT').''.$langs->trans('Qty').''.$langs->trans('ReductionShort').' 
'; print $html->select_type_of_lines(isset($_POST["type"])?$_POST["type"]:-1,'type',1); if ($conf->produit->enabled && $conf->service->enabled) print '
'; // Editor wysiwyg if ($conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_DETAILS) { require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php"); $doleditor=new DolEditor('dp_desc',$_POST["dp_desc"],100,'dolibarr_details'); $doleditor->Create(); } else { print ''; } print '
'; //if($soc->tva_assuj == "0") //print '0'; //else print $html->select_tva('tva_tx',$conf->defaulttx,$soc,$mysoc); print '%
'; print $langs->trans("AddNewLine").' - '; if ($conf->service->enabled) { print $langs->trans('RecordedProductsAndServices'); } else { print $langs->trans('RecordedProducts'); } print ''.$langs->trans('Qty').''.$langs->trans('ReductionShort').' 
'; $html->select_produits_fournisseurs($commande->fourn_id,'','idprodfournprice','',$filtre); if (! $conf->global->PRODUIT_USE_SEARCH_TO_SELECT) print '
'; // Editor wysiwyg if ($conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_DETAILS) { require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php"); $doleditor=new DolEditor('np_desc',$_POST["np_desc"],100,'dolibarr_details'); $doleditor->Create(); } else { print ''; } print '
%
'; print ''; /** * Boutons actions */ if ($user->societe_id == 0 && $_GET['action'] != 'editline' && $_GET['action'] != 'delete') { print '
'; if ($commande->statut == 0 && $num > 0) { if ($user->rights->fournisseur->commande->valider) { print ''.$langs->trans('Validate').''; } } if ($commande->statut == 1) { if ($user->rights->fournisseur->commande->approuver) { print ''.$langs->trans("ApproveOrder").''; print ''.$langs->trans("RefuseOrder").''; } if ($user->rights->fournisseur->commande->annuler) { print ''.$langs->trans("CancelOrder").''; } } if ($commande->statut == 2) { if ($user->rights->fournisseur->commande->annuler) { print ''.$langs->trans("CancelOrder").''; } } if ($user->rights->fournisseur->commande->annuler) { print ''.$langs->trans("Delete").''; } print "
"; } print '
'; print ''; // ancre /* * Documents generes */ $comfournref = dol_sanitizeFileName($commande->ref); $file = $conf->fournisseur->commande->dir_output . '/' . $comfournref . '/' . $comfournref . '.pdf'; $relativepath = $comfournref.'/'.$comfournref.'.pdf'; $filedir = $conf->fournisseur->commande->dir_output . '/' . $comfournref; $urlsource=$_SERVER["PHP_SELF"]."?id=".$commande->id; $genallowed=$user->rights->fournisseur->commande->creer; $delallowed=$user->rights->fournisseur->commande->supprimer; $somethingshown=$formfile->show_documents('commande_fournisseur',$comfournref,$filedir,$urlsource,$genallowed,$delallowed,$commande->modelpdf); print ''; if ( $user->rights->fournisseur->commande->commander && ($commande->statut == 2 || $commande->statut == 6)) { /** * Commander (action=commande) */ print '
'; print '
'; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print '
'.$langs->trans("ToOrder").'
'.$langs->trans("OrderDate").''; $date_com = dol_mktime(0,0,0,$_POST["remonth"],$_POST["reday"],$_POST["reyear"]); print $html->select_date($date_com,'','','','',"commande"); print '
'.$langs->trans("OrderMode").''; $formorder->select_methodes_commande($_POST["methodecommande"],"methodecommande",1); print '
'.$langs->trans("Comment").'
'; print '
'; } if ( $user->rights->fournisseur->commande->receptionner && ($commande->statut == 3 ||$commande->statut == 4 )) { /** * Receptionner (action=livraison) */ print '
'; print '
'; print ''; print ''; print ''; print ''; print '\n"; print "'; print ''; print ''; print "
'.$langs->trans("Receive").'
'.$langs->trans("DeliveryDate").''; print $html->select_date('','','','','',"commande"); print "
".$langs->trans("Delivery")."\n"; $liv = array(); $liv[''] = ' '; $liv['tot'] = $langs->trans("TotalWoman"); $liv['par'] = $langs->trans("PartialWoman"); $liv['nev'] = $langs->trans("NeverReceived"); $liv['can'] = $langs->trans("Canceled"); print $html->select_array("type",$liv); print '
'.$langs->trans("Comment").'
\n"; print "
\n"; } print '
'; } else { // Commande non trouvee dol_print_error($db); } } $db->close(); llxFooter('$Date$ - $Revision$'); ?>