2006-12-11 21:52:01 +01:00
< ? php
/* Copyright ( C ) 2004 - 2006 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2011-05-24 01:46:39 +02:00
* Copyright ( C ) 2004 - 2011 Laurent Destailleur < eldy @ users . sourceforge . net >
2010-05-28 22:41:41 +02:00
* Copyright ( C ) 2005 Eric Seigne < eric . seigne @ ryxeo . com >
2012-12-30 15:11:07 +01:00
* Copyright ( C ) 2005 - 2009 Regis Houssin < regis . houssin @ capnetworks . com >
2010-09-28 18:24:25 +02:00
* Copyright ( C ) 2010 Juanjo Menent < jmenent @ 2 byte . es >
2015-02-11 22:54:06 +01:00
* Copyright ( C ) 2014 Cedric Gross < c . gross @ kreiz - it . fr >
2006-12-11 21:52:01 +01:00
*
* 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
2011-12-17 21:58:44 +01:00
* along with this program . If not , see < http :// www . gnu . org / licenses />.
* or see http :// www . gnu . org /
2006-12-11 21:52:01 +01:00
*/
/**
2010-05-28 22:41:41 +02:00
* \file htdocs / fourn / commande / dispatch . php
2009-08-06 16:44:24 +02:00
* \ingroup commande
2015-02-11 22:54:06 +01:00
* \brief Page to dispatch receiving
2008-11-16 02:54:33 +01:00
*/
2006-12-11 21:52:01 +01:00
2012-08-22 23:24:21 +02:00
require '../../main.inc.php' ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/modules/supplier_order/modules_commandefournisseur.php' ;
require_once DOL_DOCUMENT_ROOT . '/product/stock/class/entrepot.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/fourn.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/fourn/class/fournisseur.commande.class.php' ;
2015-02-24 11:19:47 +01:00
require_once DOL_DOCUMENT_ROOT . '/fourn/class/fournisseur.commande.dispatch.class.php' ;
2012-09-15 10:01:35 +02:00
if ( ! empty ( $conf -> projet -> enabled )) require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php' ;
2006-12-11 21:52:01 +01:00
$langs -> load ( 'orders' );
$langs -> load ( 'sendings' );
$langs -> load ( 'companies' );
$langs -> load ( 'bills' );
$langs -> load ( 'deliveries' );
$langs -> load ( 'products' );
$langs -> load ( 'stocks' );
2014-03-15 10:28:01 +01:00
if ( ! empty ( $conf -> productbatch -> enabled )) $langs -> load ( 'productbatch' );
2006-12-11 21:52:01 +01:00
2009-04-27 22:37:50 +02:00
// Security check
2014-03-01 14:49:30 +01:00
$id = GETPOST ( " id " , 'int' );
2015-03-08 02:08:26 +01:00
$lineid = GETPOST ( 'lineid' , 'int' );
$action = GETPOST ( 'action' );
2009-04-27 22:37:50 +02:00
if ( $user -> societe_id ) $socid = $user -> societe_id ;
2013-03-24 21:06:45 +01:00
$result = restrictedArea ( $user , 'fournisseur' , $id , '' , 'commande' );
2006-12-11 21:52:01 +01:00
2010-08-26 16:49:40 +02:00
if ( empty ( $conf -> stock -> enabled ))
{
accessforbidden ();
}
2010-03-11 15:31:16 +01:00
// Recuperation de l'id de projet
$projectid = 0 ;
2014-03-15 10:28:01 +01:00
if ( $_GET [ " projectid " ]) $projectid = GETPOST ( " projectid " , 'int' );
2006-12-11 21:52:01 +01:00
$mesg = '' ;
2010-08-26 16:49:40 +02:00
2006-12-11 21:52:01 +01:00
/*
* Actions
*/
2015-02-11 22:54:06 +01:00
2015-03-09 20:26:56 +01:00
if ( $action == 'checkdispatchline' &&
! (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && empty ( $user -> rights -> fournisseur -> commande -> receptionner ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && empty ( $user -> rights -> fournisseur -> commande_advance -> check )))
)
2015-03-08 02:08:26 +01:00
{
$supplierorderdispatch = new CommandeFournisseurDispatch ( $db );
$result = $supplierorderdispatch -> fetch ( $lineid );
if ( ! $result ) dol_print_error ( $db );
$result = $supplierorderdispatch -> setStatut ( 1 );
if ( $result < 0 )
{
setEventMessages ( $supplierorderdispatch -> error , $supplierorderdispatch -> errors , 'errors' );
$error ++ ;
$action = '' ;
}
}
2015-03-09 20:26:56 +01:00
if ( $action == 'uncheckdispatchline' &&
! (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && empty ( $user -> rights -> fournisseur -> commande -> receptionner ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && empty ( $user -> rights -> fournisseur -> commande_advance -> check )))
)
2015-03-08 02:08:26 +01:00
{
$supplierorderdispatch = new CommandeFournisseurDispatch ( $db );
$result = $supplierorderdispatch -> fetch ( $lineid );
if ( ! $result ) dol_print_error ( $db );
$result = $supplierorderdispatch -> setStatut ( 0 );
if ( $result < 0 )
{
setEventMessages ( $supplierorderdispatch -> error , $supplierorderdispatch -> errors , 'errors' );
$error ++ ;
$action = '' ;
}
}
2015-04-09 15:14:50 +02:00
if ( $action == 'denydispatchline' &&
! (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && empty ( $user -> rights -> fournisseur -> commande -> receptionner ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && empty ( $user -> rights -> fournisseur -> commande_advance -> check )))
)
{
$supplierorderdispatch = new CommandeFournisseurDispatch ( $db );
$result = $supplierorderdispatch -> fetch ( $lineid );
if ( ! $result ) dol_print_error ( $db );
2015-04-09 16:15:52 +02:00
$result = $supplierorderdispatch -> setStatut ( 2 );
2015-04-09 15:14:50 +02:00
if ( $result < 0 )
{
setEventMessages ( $supplierorderdispatch -> error , $supplierorderdispatch -> errors , 'errors' );
$error ++ ;
$action = '' ;
}
}
2015-03-08 02:08:26 +01:00
if ( $action == 'dispatch' && $user -> rights -> fournisseur -> commande -> receptionner )
2006-12-11 21:52:01 +01:00
{
2008-11-16 02:54:33 +01:00
$commande = new CommandeFournisseur ( $db );
2014-03-01 14:49:30 +01:00
$commande -> fetch ( $id );
2015-02-10 21:08:02 +01:00
$error = 0 ;
2014-03-01 14:49:30 +01:00
$db -> begin ();
2006-12-11 21:52:01 +01:00
2015-04-10 12:59:33 +02:00
$pos = 0 ;
2008-11-16 02:54:33 +01:00
foreach ( $_POST as $key => $value )
2006-12-11 21:52:01 +01:00
{
2015-03-08 02:08:26 +01:00
if ( preg_match ( '/^product_([0-9]+)$/i' , $key , $reg )) // without batch module enabled
2008-11-16 02:54:33 +01:00
{
2015-04-10 12:59:33 +02:00
$pos ++ ;
//$numline=$reg[1] + 1; // line of product
$numline = $pos ;
2010-05-28 22:41:41 +02:00
$prod = " product_ " . $reg [ 1 ];
$qty = " qty_ " . $reg [ 1 ];
$ent = " entrepot_ " . $reg [ 1 ];
2014-03-01 14:49:30 +01:00
$pu = " pu_ " . $reg [ 1 ]; // This is unit price including discount
2015-02-12 12:56:21 +01:00
$fk_commandefourndet = " fk_commandefourndet_ " . $reg [ 1 ];
2015-03-08 02:08:26 +01:00
if ( GETPOST ( $qty ) > 0 ) // We ask to move a qty
2010-08-26 16:49:40 +02:00
{
2015-04-09 15:14:50 +02:00
if ( ! ( GETPOST ( $ent , 'int' ) > 0 ))
2015-02-10 21:08:02 +01:00
{
2015-03-08 02:08:26 +01:00
dol_syslog ( 'No dispatch for line ' . $key . ' as no warehouse choosed' );
$text = $langs -> transnoentities ( 'Warehouse' ) . ', ' . $langs -> transnoentities ( 'Line' ) . ' ' . ( $numline );
setEventMessage ( $langs -> trans ( 'ErrorFieldRequired' , $text ), 'errors' );
2015-02-10 21:08:02 +01:00
$error ++ ;
}
2015-04-02 13:57:20 +02:00
2015-03-08 02:08:26 +01:00
if ( ! $error )
{
2015-06-18 19:49:19 +02:00
$result = $commande -> DispatchProduct ( $user , GETPOST ( $prod , 'int' ), GETPOST ( $qty ), GETPOST ( $ent , 'int' ), GETPOST ( $pu ), GETPOST ( 'comment' ), '' , '' , '' , GETPOST ( $fk_commandefourndet , 'int' ), $notrigger );
2015-03-08 02:08:26 +01:00
if ( $result < 0 )
{
setEventMessages ( $commande -> error , $commande -> errors , 'errors' );
$error ++ ;
}
}
2010-08-26 16:49:40 +02:00
}
2015-02-11 14:46:16 +01:00
}
2015-03-08 02:08:26 +01:00
if ( preg_match ( '/^product_([0-9]+)_([0-9]+)$/i' , $key , $reg )) // with batch module enabled
2015-02-11 14:46:16 +01:00
{
2015-04-10 12:59:33 +02:00
$pos ++ ;
2014-03-15 10:28:01 +01:00
//eat-by date dispatch
2015-04-10 12:59:33 +02:00
//$numline=$reg[2] + 1; // line of product
$numline = $pos ;
2015-06-18 19:49:19 +02:00
$prod = 'product_' . $reg [ 1 ] . '_' . $reg [ 2 ];
$qty = 'qty_' . $reg [ 1 ] . '_' . $reg [ 2 ];
$ent = 'entrepot_' . $reg [ 1 ] . '_' . $reg [ 2 ];
$pu = 'pu_' . $reg [ 1 ] . '_' . $reg [ 2 ];
$fk_commandefourndet = 'fk_commandefourndet_' . $reg [ 1 ] . '_' . $reg [ 2 ];
$lot = 'lot_number_' . $reg [ 1 ] . '_' . $reg [ 2 ];
$dDLUO = dol_mktime ( 12 , 0 , 0 , $_POST [ 'dluo_' . $reg [ 1 ] . '_' . $reg [ 2 ] . 'month' ], $_POST [ 'dluo_' . $reg [ 1 ] . '_' . $reg [ 2 ] . 'day' ], $_POST [ 'dluo_' . $reg [ 1 ] . '_' . $reg [ 2 ] . 'year' ]);
$dDLC = dol_mktime ( 12 , 0 , 0 , $_POST [ 'dlc_' . $reg [ 1 ] . '_' . $reg [ 2 ] . 'month' ], $_POST [ 'dlc_' . $reg [ 1 ] . '_' . $reg [ 2 ] . 'day' ], $_POST [ 'dlc_' . $reg [ 1 ] . '_' . $reg [ 2 ] . 'year' ]);
$fk_commandefourndet = 'fk_commandefourndet_' . $reg [ 1 ] . '_' . $reg [ 2 ];
2015-03-08 02:08:26 +01:00
if ( GETPOST ( $qty ) > 0 ) // We ask to move a qty
2014-03-15 10:28:01 +01:00
{
2015-03-08 02:08:26 +01:00
if ( ! ( GETPOST ( $ent , 'int' ) > 0 ))
{
dol_syslog ( 'No dispatch for line ' . $key . ' as no warehouse choosed' );
$text = $langs -> transnoentities ( 'Warehouse' ) . ', ' . $langs -> transnoentities ( 'Line' ) . ' ' . ( $numline ) . '-' . ( $reg [ 1 ] + 1 );
setEventMessage ( $langs -> trans ( 'ErrorFieldRequired' , $text ), 'errors' );
$error ++ ;
}
2015-02-11 22:54:06 +01:00
2015-03-08 02:08:26 +01:00
if ( ! ( $_POST [ $lot ] || $dDLUO || $dDLC ))
2015-02-10 21:08:02 +01:00
{
2015-03-08 02:08:26 +01:00
dol_syslog ( 'No dispatch for line ' . $key . ' as serial/eat-by/sellby date are not set' );
$text = $langs -> transnoentities ( 'atleast1batchfield' ) . ', ' . $langs -> transnoentities ( 'Line' ) . ' ' . ( $numline ) . '-' . ( $reg [ 1 ] + 1 );
2015-02-11 22:54:06 +01:00
setEventMessage ( $langs -> trans ( 'ErrorFieldRequired' , $text ), 'errors' );
2015-02-10 21:08:02 +01:00
$error ++ ;
}
2015-04-02 13:57:20 +02:00
2015-03-08 02:08:26 +01:00
if ( ! $error )
2015-02-11 22:54:06 +01:00
{
2015-06-18 19:49:19 +02:00
$result = $commande -> dispatchProduct ( $user , GETPOST ( $prod , 'int' ), GETPOST ( $qty ), GETPOST ( $ent , 'int' ), GETPOST ( $pu ), GETPOST ( 'comment' ), $dDLC , $dDLUO , GETPOST ( $lot , 'alpha' ), GETPOST ( $fk_commandefourndet , 'int' ), $notrigger );
2015-02-11 22:54:06 +01:00
if ( $result < 0 )
{
setEventMessages ( $commande -> error , $commande -> errors , 'errors' );
$error ++ ;
}
}
2015-02-10 21:08:02 +01:00
}
2008-11-16 02:54:33 +01:00
}
2006-12-11 21:52:01 +01:00
}
2013-03-24 21:06:45 +01:00
2015-02-10 21:08:02 +01:00
if ( ! $notrigger && ! $error )
2013-02-25 16:56:37 +01:00
{
global $conf , $langs , $user ;
2014-07-11 16:02:27 +02:00
// Call trigger
2015-03-31 15:48:08 +02:00
$result = $commande -> call_trigger ( 'ORDER_SUPPLIER_DISPATCH' , $user );
2014-07-11 16:02:27 +02:00
// End call triggers
2015-02-10 21:08:02 +01:00
if ( $result < 0 )
{
setEventMessages ( $commande -> error , $commande -> errors , 'errors' );
$error ++ ;
}
2013-02-25 16:56:37 +01:00
}
2006-12-11 21:52:01 +01:00
2015-06-18 19:49:19 +02:00
if ( $result >= 0 && ! $error )
2010-05-28 22:41:41 +02:00
{
2014-03-01 14:49:30 +01:00
$db -> commit ();
2014-03-15 10:28:01 +01:00
header ( " Location: dispatch.php?id= " . $id );
2010-05-28 22:41:41 +02:00
exit ;
}
else
{
2014-03-01 14:49:30 +01:00
$db -> rollback ();
2010-05-28 22:41:41 +02:00
}
2006-12-11 21:52:01 +01:00
}
2008-06-14 12:01:31 +02:00
/*
* View
*/
2015-02-24 11:19:47 +01:00
$form = new Form ( $db );
$warehouse_static = new Entrepot ( $db );
$supplierorderdispatch = new CommandeFournisseurDispatch ( $db );
2015-02-11 22:54:06 +01:00
$help_url = 'EN:CommandeFournisseur' ;
2015-02-11 14:46:16 +01:00
if ( ! empty ( $conf -> productbatch -> enabled ))
{
2015-02-11 22:54:06 +01:00
llxHeader ( '' , $langs -> trans ( " OrderCard " ), $help_url , '' , 0 , 0 , array ( '/core/js/lib_batch.js' ));
2015-02-11 14:46:16 +01:00
}
else
{
2015-02-11 22:54:06 +01:00
llxHeader ( '' , $langs -> trans ( " OrderCard " ), $help_url );
2014-03-15 10:28:01 +01:00
}
2006-12-11 21:52:01 +01:00
2010-05-28 22:41:41 +02:00
$now = dol_now ();
2006-12-11 21:52:01 +01:00
2014-03-15 10:28:01 +01:00
$id = GETPOST ( 'id' , 'int' );
$ref = GETPOST ( 'ref' );
2009-01-31 01:06:19 +01:00
if ( $id > 0 || ! empty ( $ref ))
2006-12-11 21:52:01 +01:00
{
2008-11-16 02:54:33 +01:00
//if ($mesg) print $mesg.'<br>';
$commande = new CommandeFournisseur ( $db );
2009-01-31 01:06:19 +01:00
2014-03-15 10:28:01 +01:00
$result = $commande -> fetch ( $id , $ref );
2009-01-31 01:06:19 +01:00
if ( $result >= 0 )
2006-12-11 21:52:01 +01:00
{
2008-11-16 02:54:33 +01:00
$soc = new Societe ( $db );
$soc -> fetch ( $commande -> socid );
$author = new User ( $db );
2010-05-05 19:36:20 +02:00
$author -> fetch ( $commande -> user_author_id );
2008-11-16 02:54:33 +01:00
2008-11-24 21:09:23 +01:00
$head = ordersupplier_prepare_head ( $commande );
2009-01-31 01:06:19 +01:00
2008-11-16 02:54:33 +01:00
$title = $langs -> trans ( " SupplierOrder " );
2009-08-06 16:44:24 +02:00
dol_fiche_head ( $head , 'dispatch' , $title , 0 , 'order' );
2009-01-31 01:06:19 +01:00
2008-11-16 02:54:33 +01:00
/*
* Commande
*/
print '<table class="border" width="100%">' ;
2009-01-31 01:06:19 +01:00
2008-11-16 02:54:33 +01:00
// Ref
print '<tr><td width="20%">' . $langs -> trans ( " Ref " ) . '</td>' ;
2009-01-31 01:06:19 +01:00
print '<td colspan="2">' ;
2011-11-08 10:18:45 +01:00
print $form -> showrefnav ( $commande , 'ref' , '' , 1 , 'ref' , 'ref' );
2009-01-31 01:06:19 +01:00
print '</td>' ;
2008-11-16 02:54:33 +01:00
print '</tr>' ;
// Fournisseur
2009-01-31 01:06:19 +01:00
print '<tr><td>' . $langs -> trans ( " Supplier " ) . " </td> " ;
print '<td colspan="2">' . $soc -> getNomUrl ( 1 , 'supplier' ) . '</td>' ;
2008-11-16 02:54:33 +01:00
print '</tr>' ;
// Statut
print '<tr>' ;
print '<td>' . $langs -> trans ( " Status " ) . '</td>' ;
2009-01-31 01:06:19 +01:00
print '<td colspan="2">' ;
2008-11-16 02:54:33 +01:00
print $commande -> getLibStatut ( 4 );
print " </td></tr> " ;
2009-01-31 01:06:19 +01:00
// Date
2008-11-16 02:54:33 +01:00
if ( $commande -> methode_commande_id > 0 )
2006-12-11 21:52:01 +01:00
{
2008-11-16 02:54:33 +01:00
print '<tr><td>' . $langs -> trans ( " Date " ) . '</td><td colspan="2">' ;
if ( $commande -> date_commande )
{
2009-02-20 23:53:15 +01:00
print dol_print_date ( $commande -> date_commande , " dayhourtext " ) . " \n " ;
2008-11-16 02:54:33 +01:00
}
2009-01-31 01:06:19 +01:00
print " </td></tr> " ;
2008-11-16 02:54:33 +01:00
if ( $commande -> methode_commande )
{
2009-01-31 01:06:19 +01:00
print '<tr><td>' . $langs -> trans ( " Method " ) . '</td><td colspan="2">' . $commande -> methode_commande . '</td></tr>' ;
2008-11-16 02:54:33 +01:00
}
2006-12-11 21:52:01 +01:00
}
2008-11-16 02:54:33 +01:00
// Auteur
print '<tr><td>' . $langs -> trans ( " AuthorRequest " ) . '</td>' ;
print '<td colspan="2">' . $author -> getNomUrl ( 1 ) . '</td>' ;
2009-01-31 01:06:19 +01:00
print '</tr>' ;
2008-11-16 02:54:33 +01:00
print " </table> " ;
2013-11-14 17:08:59 +01:00
//if ($mesg) print $mesg;
print '<br>' ;
2008-11-16 02:54:33 +01:00
2010-05-28 22:41:41 +02:00
$disabled = 1 ;
2012-09-15 10:01:35 +02:00
if ( ! empty ( $conf -> global -> STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER )) $disabled = 0 ;
2010-05-28 22:41:41 +02:00
2008-11-16 02:54:33 +01:00
/*
* Lignes de commandes
*/
2010-05-28 23:52:51 +02:00
if ( $commande -> statut <= 2 || $commande -> statut >= 6 )
{
print $langs -> trans ( " OrderStatusNotReadyToDispatch " );
}
2008-11-16 02:54:33 +01:00
if ( $commande -> statut == 3 || $commande -> statut == 4 || $commande -> statut == 5 )
2006-12-11 21:52:01 +01:00
{
2010-08-26 16:49:40 +02:00
$entrepot = new Entrepot ( $db );
$listwarehouses = $entrepot -> list_array ( 1 );
2008-11-16 02:54:33 +01:00
print '<form method="POST" action="dispatch.php?id=' . $commande -> id . '">' ;
2009-05-17 10:01:54 +02:00
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
2008-11-16 02:54:33 +01:00
print '<input type="hidden" name="action" value="dispatch">' ;
print '<table class="noborder" width="100%">' ;
2015-02-24 11:19:47 +01:00
// Set $products_dispatched with qty dispatched for each product id
2015-02-11 14:46:16 +01:00
$products_dispatched = array ();
2015-02-12 12:56:21 +01:00
$sql = " SELECT l.rowid, cfd.fk_product, sum(cfd.qty) as qty " ;
2008-11-16 02:54:33 +01:00
$sql .= " FROM " . MAIN_DB_PREFIX . " commande_fournisseur_dispatch as cfd " ;
2015-02-19 00:01:26 +01:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " commande_fournisseurdet as l on l.rowid = cfd.fk_commandefourndet " ;
2008-11-16 02:54:33 +01:00
$sql .= " WHERE cfd.fk_commande = " . $commande -> id ;
2015-02-19 00:01:26 +01:00
$sql .= " GROUP BY l.rowid, cfd.fk_product " ;
2008-11-16 02:54:33 +01:00
$resql = $db -> query ( $sql );
if ( $resql )
{
2015-09-10 23:29:13 +02:00
$num = $db -> num_rows ( $resql );
$i = 0 ;
if ( $num )
2008-11-16 02:54:33 +01:00
{
2015-09-10 23:29:13 +02:00
while ( $i < $num )
{
$objd = $db -> fetch_object ( $resql );
$products_dispatched [ $objd -> rowid ] = price2num ( $objd -> qty , 5 );
$i ++ ;
}
2008-11-16 02:54:33 +01:00
}
$db -> free ( $resql );
}
2015-02-12 12:56:21 +01:00
$sql = " SELECT l.rowid, l.fk_product, l.subprice, l.remise_percent, SUM(l.qty) as qty, " ;
2015-02-19 00:01:26 +01:00
$sql .= " p.ref, p.label, p.tobatch " ;
2008-11-16 02:54:33 +01:00
$sql .= " FROM " . MAIN_DB_PREFIX . " commande_fournisseurdet as l " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " product as p ON l.fk_product=p.rowid " ;
$sql .= " WHERE l.fk_commande = " . $commande -> id ;
2016-05-16 10:49:43 +02:00
if ( empty ( $conf -> global -> STOCK_SUPPORTS_SERVICES )) $sql .= " AND l.product_type = 0 " ;
2015-02-19 00:01:26 +01:00
$sql .= " GROUP BY p.ref, p.label, p.tobatch, l.rowid, l.fk_product, l.subprice, l.remise_percent " ; // Calculation of amount dispatched is done per fk_product so we must group by fk_product
2012-08-07 19:32:51 +02:00
$sql .= " ORDER BY p.ref, p.label " ;
2008-11-16 02:54:33 +01:00
$resql = $db -> query ( $sql );
if ( $resql )
{
$num = $db -> num_rows ( $resql );
$i = 0 ;
if ( $num )
{
print '<tr class="liste_titre">' ;
2015-02-11 22:54:06 +01:00
print '<td>' . $langs -> trans ( " Description " ) . '</td>' ;
print '<td></td>' ;
print '<td></td>' ;
print '<td></td>' ;
2008-11-16 02:54:33 +01:00
print '<td align="right">' . $langs -> trans ( " QtyOrdered " ) . '</td>' ;
2015-02-11 22:54:06 +01:00
print '<td align="right">' . $langs -> trans ( " QtyDispatchedShort " ) . '</td>' ;
print '<td align="right">' . $langs -> trans ( " QtyToDispatchShort " ) . '</td>' ;
2010-05-28 22:41:41 +02:00
print '<td align="right">' . $langs -> trans ( " Warehouse " ) . '</td>' ;
2008-11-16 02:54:33 +01:00
print " </tr> \n " ;
2015-02-11 22:54:06 +01:00
if ( ! empty ( $conf -> productbatch -> enabled ))
{
2014-03-15 10:28:01 +01:00
print '<tr class="liste_titre">' ;
2015-02-11 22:54:06 +01:00
print '<td></td>' ;
print '<td>' . $langs -> trans ( " batch_number " ) . '</td>' ;
2014-03-15 10:28:01 +01:00
print '<td>' . $langs -> trans ( " l_eatby " ) . '</td>' ;
print '<td>' . $langs -> trans ( " l_sellby " ) . '</td>' ;
2015-02-11 22:54:06 +01:00
print '<td colspan="4"> </td>' ;
2014-03-15 10:28:01 +01:00
print " </tr> \n " ;
}
2008-11-16 02:54:33 +01:00
}
2010-05-28 23:52:51 +02:00
$nbfreeproduct = 0 ;
$nbproduct = 0 ;
2008-11-16 02:54:33 +01:00
$var = true ;
while ( $i < $num )
{
$objp = $db -> fetch_object ( $resql );
2010-05-28 23:52:51 +02:00
2009-12-14 23:26:57 +01:00
// On n'affiche pas les produits personnalises
2010-05-28 23:52:51 +02:00
if ( ! $objp -> fk_product > 0 )
{
$nbfreeproduct ++ ;
}
else
2008-11-16 02:54:33 +01:00
{
2015-09-12 11:50:46 +02:00
$remaintodispatch = price2num ( $objp -> qty - (( float ) $products_dispatched [ $objp -> rowid ]), 5 ); // Calculation of dispatched
2010-05-28 23:52:51 +02:00
if ( $remaintodispatch < 0 ) $remaintodispatch = 0 ;
2015-02-11 22:54:06 +01:00
if ( $remaintodispatch || empty ( $conf -> global -> SUPPLIER_ORDER_DISABLE_STOCK_DISPATCH_WHEN_TOTAL_REACHED ))
2010-08-26 16:49:40 +02:00
{
2013-11-14 17:08:59 +01:00
$nbproduct ++ ;
2014-03-01 14:49:30 +01:00
2013-11-14 17:08:59 +01:00
$var =! $var ;
2015-04-10 12:59:33 +02:00
// To show detail cref and description value, we must make calculation by cref
//print ($objp->cref?' ('.$objp->cref.')':'');
//if ($objp->description) print '<br>'.nl2br($objp->description);
if (( empty ( $conf -> productbatch -> enabled )) || $objp -> tobatch == 0 )
{
$suffix = '_' . $i ;
} else {
$suffix = '_0_' . $i ;
}
print " \n " ;
print '<!-- Line ' . $suffix . ' -->' . " \n " ;
2013-11-14 17:08:59 +01:00
print " <tr " . $bc [ $var ] . " > " ;
2015-02-11 22:54:06 +01:00
$linktoprod = '<a href="' . DOL_URL_ROOT . '/product/fournisseurs.php?id=' . $objp -> fk_product . '">' . img_object ( $langs -> trans ( " ShowProduct " ), 'product' ) . ' ' . $objp -> ref . '</a>' ;
$linktoprod .= ' - ' . $objp -> label . " \n " ;
if ( ! empty ( $conf -> productbatch -> enabled ))
{
if ( $objp -> tobatch )
{
print '<td colspan="4">' ;
print $linktoprod ;
print " </td> " ;
}
else
{
print '<td>' ;
print $linktoprod ;
print " </td> " ;
print '<td colspan="3">' ;
print $langs -> trans ( " ProductDoesNotUseBatchSerial " );
print '</td>' ;
}
}
else
{
2015-03-06 16:13:09 +01:00
print '<td colspan="4">' ;
2015-02-11 22:54:06 +01:00
print $linktoprod ;
print " </td> " ;
}
2014-03-15 10:28:01 +01:00
$up_ht_disc = $objp -> subprice ;
if ( ! empty ( $objp -> remise_percent ) && empty ( $conf -> global -> STOCK_EXCLUDE_DISCOUNT_FOR_PMP )) $up_ht_disc = price2num ( $up_ht_disc * ( 100 - $objp -> remise_percent ) / 100 , 'MU' );
2014-03-01 14:49:30 +01:00
2015-02-11 22:54:06 +01:00
// Qty ordered
2013-11-14 17:08:59 +01:00
print '<td align="right">' . $objp -> qty . '</td>' ;
2015-02-11 22:54:06 +01:00
// Already dispatched
2015-02-12 12:56:21 +01:00
print '<td align="right">' . $products_dispatched [ $objp -> rowid ] . '</td>' ;
2013-11-14 17:08:59 +01:00
2015-02-11 22:54:06 +01:00
if ( ! empty ( $conf -> productbatch -> enabled ) && $objp -> tobatch == 1 )
{
print '<td align="right">' . img_picto ( $langs -> trans ( 'AddDispatchBatchLine' ), 'split.png' , 'onClick="addLineBatch(' . $i . ')"' ) . '</td>' ; // Dispatch column
print '<td></td>' ; // Warehouse column
2014-03-15 10:28:01 +01:00
print '</tr>' ;
2015-02-11 22:54:06 +01:00
print '<tr ' . $bc [ $var ] . ' name="dluo' . $suffix . '">' ;
print '<td>' ;
2015-02-24 11:19:47 +01:00
print '<input name="fk_commandefourndet' . $suffix . '" type="hidden" value="' . $objp -> rowid . '">' ;
2014-03-15 10:28:01 +01:00
print '<input name="product' . $suffix . '" type="hidden" value="' . $objp -> fk_product . '">' ;
print '<input name="pu' . $suffix . '" type="hidden" value="' . $up_ht_disc . '"><!-- This is a up including discount -->' ;
2015-02-11 22:54:06 +01:00
print '</td>' ;
2015-02-19 00:01:26 +01:00
2015-02-11 22:54:06 +01:00
print '<td>' ;
2015-04-10 12:10:05 +02:00
print '<input type="text" id="lot_number' . $suffix . '" name="lot_number' . $suffix . '" size="40" value="' . GETPOST ( 'lot_number' . $suffix ) . '">' ;
2015-02-11 22:54:06 +01:00
print '</td>' ;
print '<td>' ;
2015-04-10 12:10:05 +02:00
$dlcdatesuffix = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'dlc' . $suffix . 'month' ), GETPOST ( 'dlc' . $suffix . 'day' ), GETPOST ( 'dlc' . $suffix . 'year' ));
$form -> select_date ( $dlcdatesuffix , 'dlc' . $suffix , '' , '' , 1 , " " );
2015-02-11 22:54:06 +01:00
print '</td>' ;
print '<td>' ;
2015-04-10 12:10:05 +02:00
$dluodatesuffix = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'dluo' . $suffix . 'month' ), GETPOST ( 'dluo' . $suffix . 'day' ), GETPOST ( 'dluo' . $suffix . 'year' ));
$form -> select_date ( $dluodatesuffix , 'dluo' . $suffix , '' , '' , 1 , " " );
2014-03-15 10:28:01 +01:00
print '</td>' ;
2015-02-11 22:54:06 +01:00
print '<td colspan="2"> </td>' ; // Qty ordered + qty already dispatached
2014-03-15 10:28:01 +01:00
}
2013-11-14 17:08:59 +01:00
// Dispatch
2015-02-11 22:54:06 +01:00
print '<td align="right">' ;
if ( empty ( $conf -> productbatch -> enabled ) || $objp -> tobatch != 1 )
{
2015-02-12 12:56:21 +01:00
print '<input name="fk_commandefourndet' . $suffix . '" type="hidden" value="' . $objp -> rowid . '">' ;
2015-02-24 11:19:47 +01:00
print '<input name="product' . $suffix . '" type="hidden" value="' . $objp -> fk_product . '">' ;
2015-02-11 22:54:06 +01:00
print '<input name="pu' . $suffix . '" type="hidden" value="' . $up_ht_disc . '"><!-- This is a up including discount -->' ;
}
2015-04-10 12:10:05 +02:00
print '<input id="qty' . $suffix . '" name="qty' . $suffix . '" type="text" size="8" value="' . ( GETPOST ( 'qty' . $suffix ) != '' ? GETPOST ( 'qty' . $suffix ) : $remaintodispatch ) . '">' ;
2015-02-11 22:54:06 +01:00
print '</td>' ;
2013-11-14 17:08:59 +01:00
// Warehouse
print '<td align="right">' ;
if ( count ( $listwarehouses ) > 1 )
{
2015-03-01 16:04:34 +01:00
print $form -> selectarray ( " entrepot " . $suffix , $listwarehouses , GETPOST ( " entrepot " . $suffix ), 1 , 0 , 0 , '' , 0 , 0 , $disabled );
2013-11-14 17:08:59 +01:00
}
elseif ( count ( $listwarehouses ) == 1 )
{
2015-03-01 16:04:34 +01:00
print $form -> selectarray ( " entrepot " . $suffix , $listwarehouses , GETPOST ( " entrepot " . $suffix ), 0 , 0 , 0 , '' , 0 , 0 , $disabled );
2013-11-14 17:08:59 +01:00
}
else
{
print $langs -> trans ( " NoWarehouseDefined " );
}
print " </td> \n " ;
2015-02-11 22:54:06 +01:00
2013-11-14 17:08:59 +01:00
print " </tr> \n " ;
2010-08-26 16:49:40 +02:00
}
2008-11-16 02:54:33 +01:00
}
$i ++ ;
}
$db -> free ( $resql );
}
else
{
2009-02-20 23:53:15 +01:00
dol_print_error ( $db );
2008-11-16 02:54:33 +01:00
}
print " </table> \n " ;
print " <br/> \n " ;
2010-05-28 22:41:41 +02:00
2010-05-28 23:52:51 +02:00
if ( $nbproduct )
{
2010-08-26 17:46:39 +02:00
print $langs -> trans ( " Comment " ) . ' : ' ;
print '<input type="text" size="60" maxlength="128" name="comment" value="' ;
2014-03-15 10:28:01 +01:00
print $_POST [ " comment " ] ? GETPOST ( " comment " ) : $langs -> trans ( " DispatchSupplierOrder " , $commande -> ref );
2010-08-26 17:46:39 +02:00
// print ' / '.$commande->ref_supplier; // Not yet available
2015-02-11 22:54:06 +01:00
print '" class="flat"> ' ;
2010-08-26 17:46:39 +02:00
2015-02-11 22:54:06 +01:00
//print '<div class="center">';
print '<input type="submit" class="button" value="' . $langs -> trans ( " DispatchVerb " ) . '"' ;
2015-05-07 11:57:23 +02:00
if ( count ( $listwarehouses ) <= 0 ) print ' disabled' ;
2015-02-11 22:54:06 +01:00
print '>' ;
//print '</div>';
2010-05-28 23:52:51 +02:00
}
if ( ! $nbproduct && $nbfreeproduct )
{
print $langs -> trans ( " NoPredefinedProductToDispatch " );
}
2010-05-28 22:41:41 +02:00
print '</form>' ;
2006-12-11 21:52:01 +01:00
}
2014-03-01 14:49:30 +01:00
2013-11-14 17:08:59 +01:00
dol_fiche_end ();
2008-11-16 02:54:33 +01:00
2015-04-10 12:10:05 +02:00
// List of lines already dispatched
2010-07-11 21:29:18 +02:00
$sql = " SELECT p.ref, p.label, " ;
$sql .= " e.rowid as warehouse_id, e.label as entrepot, " ;
2015-03-08 02:08:26 +01:00
$sql .= " cfd.rowid as dispatchlineid, cfd.fk_product, cfd.qty, cfd.eatby, cfd.sellby, cfd.batch, cfd.comment, cfd.status " ;
2010-05-28 22:41:41 +02:00
$sql .= " FROM " . MAIN_DB_PREFIX . " product as p, " ;
$sql .= " " . MAIN_DB_PREFIX . " commande_fournisseur_dispatch as cfd " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " entrepot as e ON cfd.fk_entrepot = e.rowid " ;
2008-11-16 02:54:33 +01:00
$sql .= " WHERE cfd.fk_commande = " . $commande -> id ;
$sql .= " AND cfd.fk_product = p.rowid " ;
2009-12-14 23:26:57 +01:00
$sql .= " ORDER BY cfd.rowid ASC " ;
2008-11-16 02:54:33 +01:00
$resql = $db -> query ( $sql );
if ( $resql )
2006-12-11 21:52:01 +01:00
{
2008-11-16 02:54:33 +01:00
$num = $db -> num_rows ( $resql );
$i = 0 ;
2010-05-28 23:52:51 +02:00
if ( $num > 0 )
2008-11-16 02:54:33 +01:00
{
2010-05-28 23:52:51 +02:00
print " <br/> \n " ;
2014-03-01 14:49:30 +01:00
2013-11-14 17:08:59 +01:00
print_titre ( $langs -> trans ( " ReceivingForSameOrder " ));
2014-03-01 14:49:30 +01:00
2010-05-28 23:52:51 +02:00
print '<table class="noborder" width="100%">' ;
2008-11-16 02:54:33 +01:00
print '<tr class="liste_titre">' ;
print '<td>' . $langs -> trans ( " Description " ) . '</td>' ;
2015-02-11 22:54:06 +01:00
if ( ! empty ( $conf -> productbatch -> enabled ))
{
print '<td>' . $langs -> trans ( " batch_number " ) . '</td>' ;
print '<td>' . $langs -> trans ( " l_eatby " ) . '</td>' ;
print '<td>' . $langs -> trans ( " l_sellby " ) . '</td>' ;
}
2008-11-16 02:54:33 +01:00
print '<td align="right">' . $langs -> trans ( " QtyDispatched " ) . '</td>' ;
2015-02-11 15:03:33 +01:00
print '<td></td>' ;
print '<td>' . $langs -> trans ( " Warehouse " ) . '</td>' ;
print '<td>' . $langs -> trans ( " Comment " ) . '</td>' ;
2015-03-08 02:08:26 +01:00
if ( ! empty ( $conf -> global -> SUPPLIER_ORDER_USE_DISPATCH_STATUS )) print '<td align="center" colspan="2">' . $langs -> trans ( " Status " ) . '</td>' ;
2008-11-16 02:54:33 +01:00
print " </tr> \n " ;
2010-05-28 23:52:51 +02:00
$var = false ;
2008-11-16 02:54:33 +01:00
2010-05-28 23:52:51 +02:00
while ( $i < $num )
{
$objp = $db -> fetch_object ( $resql );
2015-04-02 13:57:20 +02:00
2013-06-20 09:18:12 +02:00
print " <tr " . $bc [ $var ] . " > " ;
2010-05-28 23:52:51 +02:00
print '<td>' ;
print '<a href="' . DOL_URL_ROOT . '/product/fournisseurs.php?id=' . $objp -> fk_product . '">' . img_object ( $langs -> trans ( " ShowProduct " ), 'product' ) . ' ' . $objp -> ref . '</a>' ;
print ' - ' . $objp -> label ;
print " </td> \n " ;
2015-02-11 22:54:06 +01:00
if ( ! empty ( $conf -> productbatch -> enabled ))
{
print '<td>' . $objp -> batch . '</td>' ;
print '<td>' . dol_print_date ( $db -> jdate ( $objp -> eatby ), 'day' ) . '</td>' ;
print '<td>' . dol_print_date ( $db -> jdate ( $objp -> sellby ), 'day' ) . '</td>' ;
}
2015-02-11 15:03:33 +01:00
// Qty
2010-05-28 23:52:51 +02:00
print '<td align="right">' . $objp -> qty . '</td>' ;
2015-02-11 15:03:33 +01:00
print '<td> </td>' ;
// Warehouse
print '<td>' ;
2010-07-11 21:29:18 +02:00
$warehouse_static -> id = $objp -> warehouse_id ;
$warehouse_static -> libelle = $objp -> entrepot ;
print $warehouse_static -> getNomUrl ( 1 );
print '</td>' ;
2015-02-11 15:03:33 +01:00
// Comment
print '<td>' . dol_trunc ( $objp -> comment ) . '</td>' ;
// Status
if ( ! empty ( $conf -> global -> SUPPLIER_ORDER_USE_DISPATCH_STATUS ))
{
2015-02-24 11:19:47 +01:00
print '<td align="right">' ;
$supplierorderdispatch -> status = ( empty ( $objp -> status ) ? 0 : $objp -> status );
//print $supplierorderdispatch->status;
print $supplierorderdispatch -> getLibStatut ( 5 );
2015-02-11 15:03:33 +01:00
print '</td>' ;
2015-03-08 02:08:26 +01:00
// Add button to check/uncheck disaptching
print '<td align="center">' ;
2015-03-09 20:26:56 +01:00
if (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && empty ( $user -> rights -> fournisseur -> commande -> receptionner ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && empty ( $user -> rights -> fournisseur -> commande_advance -> check ))
)
2015-03-08 02:08:26 +01:00
{
2015-04-02 13:57:20 +02:00
if ( empty ( $objp -> status ))
2015-03-09 20:26:56 +01:00
{
2015-04-09 15:14:50 +02:00
print '<a class="button buttonRefused" href="#">' . $langs -> trans ( " Approve " ) . '</a>' ;
print '<a class="button buttonRefused" href="#">' . $langs -> trans ( " Deny " ) . '</a>' ;
2015-03-09 20:26:56 +01:00
}
else
{
2015-04-09 15:14:50 +02:00
print '<a class="button buttonRefused" href="#">' . $langs -> trans ( " Disapprove " ) . '</a>' ;
print '<a class="button buttonRefused" href="#">' . $langs -> trans ( " Deny " ) . '</a>' ;
2015-03-09 20:26:56 +01:00
}
2015-03-08 02:08:26 +01:00
}
2015-03-09 20:26:56 +01:00
else
2015-03-08 02:08:26 +01:00
{
2015-03-09 20:26:56 +01:00
$disabled = '' ;
if ( $commande -> statut == 5 ) $disabled = 1 ;
2015-04-02 13:57:20 +02:00
if ( empty ( $objp -> status ))
2015-03-09 20:26:56 +01:00
{
2015-04-09 15:14:50 +02:00
print '<a class="button' . ( $disabled ? ' buttonRefused' : '' ) . '" href="' . $_SERVER [ " PHP_SELF " ] . " ?id= " . $id . " &action=checkdispatchline&lineid= " . $objp -> dispatchlineid . '">' . $langs -> trans ( " Approve " ) . '</a>' ;
print '<a class="button' . ( $disabled ? ' buttonRefused' : '' ) . '" href="' . $_SERVER [ " PHP_SELF " ] . " ?id= " . $id . " &action=denydispatchline&lineid= " . $objp -> dispatchlineid . '">' . $langs -> trans ( " Deny " ) . '</a>' ;
2015-03-09 20:26:56 +01:00
}
2015-04-09 16:15:52 +02:00
if ( $objp -> status == 1 )
2015-03-09 20:26:56 +01:00
{
2015-04-09 16:15:52 +02:00
print '<a class="button' . ( $disabled ? ' buttonRefused' : '' ) . '" href="' . $_SERVER [ " PHP_SELF " ] . " ?id= " . $id . " &action=uncheckdispatchline&lineid= " . $objp -> dispatchlineid . '">' . $langs -> trans ( " Reinit " ) . '</a>' ;
2015-04-09 15:14:50 +02:00
print '<a class="button' . ( $disabled ? ' buttonRefused' : '' ) . '" href="' . $_SERVER [ " PHP_SELF " ] . " ?id= " . $id . " &action=denydispatchline&lineid= " . $objp -> dispatchlineid . '">' . $langs -> trans ( " Deny " ) . '</a>' ;
2015-03-09 20:26:56 +01:00
}
2015-04-09 16:15:52 +02:00
if ( $objp -> status == 2 )
{
print '<a class="button' . ( $disabled ? ' buttonRefused' : '' ) . '" href="' . $_SERVER [ " PHP_SELF " ] . " ?id= " . $id . " &action=uncheckdispatchline&lineid= " . $objp -> dispatchlineid . '">' . $langs -> trans ( " Reinit " ) . '</a>' ;
print '<a class="button' . ( $disabled ? ' buttonRefused' : '' ) . '" href="' . $_SERVER [ " PHP_SELF " ] . " ?id= " . $id . " &action=checkdispatchline&lineid= " . $objp -> dispatchlineid . '">' . $langs -> trans ( " Approve " ) . '</a>' ;
}
2015-03-08 02:08:26 +01:00
}
2015-04-02 13:57:20 +02:00
print '</td>' ;
2015-03-08 02:08:26 +01:00
}
2015-04-02 13:57:20 +02:00
2010-05-28 23:52:51 +02:00
print " </tr> \n " ;
$i ++ ;
$var =! $var ;
}
$db -> free ( $resql );
print " </table> \n " ;
2008-11-16 02:54:33 +01:00
}
2006-12-11 21:52:01 +01:00
}
2008-11-16 02:54:33 +01:00
else
2006-12-11 21:52:01 +01:00
{
2009-02-20 23:53:15 +01:00
dol_print_error ( $db );
2006-12-11 21:52:01 +01:00
}
2008-11-16 02:54:33 +01:00
}
else
{
2009-12-14 23:26:57 +01:00
// Commande non trouvee
2009-02-20 23:53:15 +01:00
dol_print_error ( $db );
2006-12-11 21:52:01 +01:00
}
}
2011-08-27 16:24:16 +02:00
llxFooter ();
2015-02-11 15:03:33 +01:00
$db -> close ();