2004-11-29 17:48:53 +01:00
< ? php
2006-12-11 17:03:34 +01:00
/* Copyright ( C ) 2004 - 2006 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2015-02-17 19:49:17 +01:00
* Copyright ( C ) 2004 - 2015 Laurent Destailleur < eldy @ users . sourceforge . net >
2008-07-01 21:57:52 +02:00
* Copyright ( C ) 2005 Eric Seigne < eric . seigne @ ryxeo . com >
2016-01-15 13:12:19 +01:00
* Copyright ( C ) 2005 - 2016 Regis Houssin < regis . houssin @ capnetworks . com >
2015-06-26 17:54:34 +02:00
* Copyright ( C ) 2010 - 2015 Juanjo Menent < jmenent @ 2 byte . es >
2015-12-08 11:35:08 +01:00
* Copyright ( C ) 2011 - 2015 Philippe Grand < philippe . grand @ atoo - net . com >
2016-07-23 16:37:21 +02:00
* Copyright ( C ) 2012 - 2016 Marcos García < marcosgdf @ gmail . com >
2013-04-09 17:18:07 +02:00
* Copyright ( C ) 2013 Florian Henry < florian . henry @ open - concept . pro >
2014-10-31 04:59:57 +01:00
* Copyright ( C ) 2014 Ion Agorria < ion @ agorria . com >
2004-11-29 17:48:53 +01:00
*
2006-12-05 01:47:40 +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 .
2004-11-29 17:48:53 +01:00
*
2006-12-05 01:47:40 +01:00
* This program is distributed in the hope that it will be useful ,
2011-05-04 23:20:51 +02:00
* 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 .
*
2011-12-17 21:58:44 +01:00
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < http :// www . gnu . org / licenses />.
* or see http :// www . gnu . org /
2011-05-04 23:20:51 +02:00
*/
/**
2014-09-18 21:18:25 +02:00
* \file htdocs / fourn / commande / card . php
2011-05-04 23:20:51 +02:00
* \ingroup supplier , order
* \brief Card supplier order
*/
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/class/html.formfile.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formorder.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/modules/supplier_order/modules_commandefournisseur.php' ;
require_once DOL_DOCUMENT_ROOT . '/fourn/class/fournisseur.commande.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/fourn/class/fournisseur.product.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/fourn.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php' ;
2013-01-23 11:28:11 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
2013-04-09 17:18:07 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/doleditor.class.php' ;
2015-11-15 18:23:42 +01:00
if ( ! empty ( $conf -> supplier_proposal -> enabled ))
2016-11-24 17:03:18 +01:00
require_once DOL_DOCUMENT_ROOT . '/supplier_proposal/class/supplier_proposal.class.php' ;
2013-01-23 11:28:11 +01:00
if ( ! empty ( $conf -> produit -> enabled ))
2012-08-25 03:28:30 +02:00
require_once DOL_DOCUMENT_ROOT . '/product/class/product.class.php' ;
2016-04-01 16:29:47 +02:00
if ( ! empty ( $conf -> projet -> enabled )) {
2017-10-16 08:47:05 +02:00
require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formprojet.class.php' ;
2016-04-01 16:29:47 +02:00
}
2014-10-29 05:13:15 +01:00
require_once NUSOAP_PATH . '/nusoap.php' ; // Include SOAP
2011-05-04 23:20:51 +02:00
2017-02-08 12:37:38 +01:00
if ( ! empty ( $conf -> variants -> enabled )) {
require_once DOL_DOCUMENT_ROOT . '/variants/class/ProductCombination.class.php' ;
2016-07-23 16:37:21 +02:00
}
2017-10-11 12:05:48 +02:00
$langs -> loadLangs ( array ( 'admin' , 'orders' , 'sendings' , 'companies' , 'bills' , 'propal' , 'supplier_proposal' , 'deliveries' , 'products' , 'stocks' , 'productbatch' ));
2015-02-23 09:16:14 +01:00
if ( ! empty ( $conf -> incoterm -> enabled )) $langs -> load ( 'incoterm' );
2011-05-04 23:20:51 +02:00
2012-02-27 22:26:22 +01:00
$id = GETPOST ( 'id' , 'int' );
2012-04-10 17:21:28 +02:00
$ref = GETPOST ( 'ref' , 'alpha' );
$action = GETPOST ( 'action' , 'alpha' );
$confirm = GETPOST ( 'confirm' , 'alpha' );
$comclientid = GETPOST ( 'comid' , 'int' );
2012-02-27 22:26:22 +01:00
$socid = GETPOST ( 'socid' , 'int' );
2012-04-10 17:21:28 +02:00
$projectid = GETPOST ( 'projectid' , 'int' );
2015-02-27 18:05:12 +01:00
$cancel = GETPOST ( 'cancel' , 'alpha' );
$lineid = GETPOST ( 'lineid' , 'int' );
2012-05-21 17:12:57 +02:00
2015-01-30 16:52:14 +01:00
$lineid = GETPOST ( 'lineid' , 'int' );
$origin = GETPOST ( 'origin' , 'alpha' );
$originid = ( GETPOST ( 'originid' , 'int' ) ? GETPOST ( 'originid' , 'int' ) : GETPOST ( 'origin_id' , 'int' )); // For backward compatibility
2012-05-21 17:12:57 +02:00
2012-07-02 19:30:37 +02:00
//PDF
2012-05-21 18:44:09 +02:00
$hidedetails = ( GETPOST ( 'hidedetails' , 'int' ) ? GETPOST ( 'hidedetails' , 'int' ) : ( ! empty ( $conf -> global -> MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS ) ? 1 : 0 ));
$hidedesc = ( GETPOST ( 'hidedesc' , 'int' ) ? GETPOST ( 'hidedesc' , 'int' ) : ( ! empty ( $conf -> global -> MAIN_GENERATE_DOCUMENTS_HIDE_DESC ) ? 1 : 0 ));
$hideref = ( GETPOST ( 'hideref' , 'int' ) ? GETPOST ( 'hideref' , 'int' ) : ( ! empty ( $conf -> global -> MAIN_GENERATE_DOCUMENTS_HIDE_REF ) ? 1 : 0 ));
2012-05-21 17:12:57 +02:00
2015-02-22 17:41:02 +01:00
$datelivraison = dol_mktime ( GETPOST ( 'liv_hour' , 'int' ), GETPOST ( 'liv_min' , 'int' ), GETPOST ( 'liv_sec' , 'int' ), GETPOST ( 'liv_month' , 'int' ), GETPOST ( 'liv_day' , 'int' ), GETPOST ( 'liv_year' , 'int' ));
2011-05-04 23:20:51 +02:00
// Security check
if ( $user -> societe_id ) $socid = $user -> societe_id ;
2018-01-17 15:54:27 +01:00
$result = restrictedArea ( $user , 'fournisseur' , $id , 'commande_fournisseur' , 'commande' );
2011-05-04 23:20:51 +02:00
2017-06-10 12:56:28 +02:00
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
2014-10-06 07:20:58 +02:00
$hookmanager -> initHooks ( array ( 'ordersuppliercard' , 'globalcard' ));
2012-02-29 14:32:22 +01:00
2011-05-09 11:44:06 +02:00
$object = new CommandeFournisseur ( $db );
2013-12-17 16:15:48 +01:00
$extrafields = new ExtraFields ( $db );
// fetch optionals attributes and labels
$extralabels = $extrafields -> fetch_name_optionals_label ( $object -> table_element );
2011-05-09 11:44:06 +02:00
2012-12-01 15:45:05 +01:00
// Load object
if ( $id > 0 || ! empty ( $ref ))
{
2017-10-16 08:47:05 +02:00
$ret = $object -> fetch ( $id , $ref );
if ( $ret < 0 ) dol_print_error ( $db , $object -> error );
2012-12-01 15:45:05 +01:00
$ret = $object -> fetch_thirdparty ();
if ( $ret < 0 ) dol_print_error ( $db , $object -> error );
}
2013-03-12 15:06:38 +01:00
else if ( ! empty ( $socid ) && $socid > 0 )
2012-12-01 15:45:05 +01:00
{
$fourn = new Fournisseur ( $db );
$ret = $fourn -> fetch ( $socid );
if ( $ret < 0 ) dol_print_error ( $db , $object -> error );
$object -> socid = $fourn -> id ;
$ret = $object -> fetch_thirdparty ();
if ( $ret < 0 ) dol_print_error ( $db , $object -> error );
}
2011-05-04 23:20:51 +02:00
2014-01-11 13:33:30 +01:00
$permissionnote = $user -> rights -> fournisseur -> commande -> creer ; // Used by the include of actions_setnotes.inc.php
2015-07-28 14:13:16 +02:00
$permissiondellink = $user -> rights -> fournisseur -> commande -> creer ; // Used by the include of actions_dellink.inc.php
2015-02-28 03:11:15 +01:00
$permissiontoedit = $user -> rights -> fournisseur -> commande -> creer ; // Used by the include of actions_lineupdown.inc.php
2014-01-11 13:33:30 +01:00
2011-05-04 23:20:51 +02:00
/*
* Actions
*/
2014-01-11 13:33:30 +01:00
2014-07-18 01:32:54 +02:00
$parameters = array ( 'socid' => $socid );
$reshook = $hookmanager -> executeHooks ( 'doActions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by some hooks
2014-09-28 03:41:32 +02:00
if ( $reshook < 0 ) setEventMessages ( $hookmanager -> error , $hookmanager -> errors , 'errors' );
2014-07-18 01:32:54 +02:00
2015-02-28 03:11:15 +01:00
if ( empty ( $reshook ))
2012-04-13 14:02:53 +02:00
{
2017-09-17 15:38:50 +02:00
if ( $cancel )
{
if ( ! empty ( $backtopage ))
{
header ( " Location: " . $backtopage );
exit ;
}
$action = '' ;
}
2011-05-04 23:20:51 +02:00
2015-02-28 03:11:15 +01:00
include DOL_DOCUMENT_ROOT . '/core/actions_setnotes.inc.php' ; // Must be include, not include_once
2011-05-04 23:20:51 +02:00
2015-07-28 14:13:16 +02:00
include DOL_DOCUMENT_ROOT . '/core/actions_dellink.inc.php' ; // Must be include, not include_once
2015-02-28 03:11:15 +01:00
include DOL_DOCUMENT_ROOT . '/core/actions_lineupdown.inc.php' ; // Must be include, not include_once
2011-05-05 23:35:07 +02:00
2015-02-28 03:11:15 +01:00
if ( $action == 'setref_supplier' && $user -> rights -> fournisseur -> commande -> creer )
2012-04-10 17:21:28 +02:00
{
2017-10-16 08:47:05 +02:00
$result = $object -> setValueFrom ( 'ref_supplier' , GETPOST ( 'ref_supplier' , 'alpha' ), '' , null , 'text' , '' , $user , 'ORDER_SUPPLIER_MODIFY' );
2015-03-04 23:03:29 +01:00
if ( $result < 0 ) setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
2014-07-09 18:00:21 +02:00
2015-03-04 23:03:29 +01:00
// Set incoterm
2015-03-08 02:08:26 +01:00
if ( $action == 'set_incoterms' && $user -> rights -> fournisseur -> commande -> creer )
2012-04-10 17:21:28 +02:00
{
2015-03-04 23:03:29 +01:00
$result = $object -> setIncoterms ( GETPOST ( 'incoterm_id' , 'int' ), GETPOST ( 'location_incoterms' , 'alpha' ));
if ( $result < 0 ) setEventMessages ( $object -> error , $object -> errors , 'errors' );
2012-04-10 17:21:28 +02:00
}
2015-12-08 11:35:08 +01:00
// payment conditions
2015-02-28 03:11:15 +01:00
if ( $action == 'setconditions' && $user -> rights -> fournisseur -> commande -> creer )
2013-11-17 23:25:25 +01:00
{
2017-10-16 08:47:05 +02:00
$result = $object -> setPaymentTerms ( GETPOST ( 'cond_reglement_id' , 'int' ));
2015-03-04 23:03:29 +01:00
if ( $result < 0 ) setEventMessages ( $object -> error , $object -> errors , 'errors' );
2013-11-17 23:25:25 +01:00
}
2004-11-29 17:48:53 +01:00
2015-12-08 11:35:08 +01:00
// payment mode
2015-02-28 03:11:15 +01:00
if ( $action == 'setmode' && $user -> rights -> fournisseur -> commande -> creer )
2013-11-17 23:25:25 +01:00
{
2017-10-16 08:47:05 +02:00
$result = $object -> setPaymentMethods ( GETPOST ( 'mode_reglement_id' , 'int' ));
2015-03-04 23:03:29 +01:00
if ( $result < 0 ) setEventMessages ( $object -> error , $object -> errors , 'errors' );
2013-11-17 23:25:25 +01:00
}
2016-08-10 09:47:25 +02:00
2016-02-16 23:58:21 +01:00
// Multicurrency Code
else if ( $action == 'setmulticurrencycode' && $user -> rights -> fournisseur -> commande -> creer ) {
$result = $object -> setMulticurrencyCode ( GETPOST ( 'multicurrency_code' , 'alpha' ));
}
// Multicurrency rate
else if ( $action == 'setmulticurrencyrate' && $user -> rights -> fournisseur -> commande -> creer ) {
2016-08-10 09:47:25 +02:00
$result = $object -> setMulticurrencyRate ( price2num ( GETPOST ( 'multicurrency_tx' )));
2016-02-16 23:58:21 +01:00
}
2005-08-31 23:56:05 +02:00
2015-02-28 03:11:15 +01:00
// bank account
if ( $action == 'setbankaccount' && $user -> rights -> fournisseur -> commande -> creer )
2013-11-17 23:25:25 +01:00
{
2017-10-16 08:47:05 +02:00
$result = $object -> setBankAccount ( GETPOST ( 'fk_account' , 'int' ));
2015-03-04 23:03:29 +01:00
if ( $result < 0 ) setEventMessages ( $object -> error , $object -> errors , 'errors' );
2013-11-17 23:25:25 +01:00
}
2010-05-28 23:52:51 +02:00
2015-12-08 11:35:08 +01:00
// date of delivery
2015-02-28 03:11:15 +01:00
if ( $action == 'setdate_livraison' && $user -> rights -> fournisseur -> commande -> creer )
2013-11-17 23:25:25 +01:00
{
2015-02-28 03:11:15 +01:00
$result = $object -> set_date_livraison ( $user , $datelivraison );
2015-03-04 23:03:29 +01:00
if ( $result < 0 ) setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-02-28 03:11:15 +01:00
}
2012-08-15 15:52:51 +02:00
2015-02-28 03:11:15 +01:00
// Set project
if ( $action == 'classin' && $user -> rights -> fournisseur -> commande -> creer )
2013-11-17 23:25:25 +01:00
{
2017-10-16 08:47:05 +02:00
$result = $object -> setProject ( $projectid );
2015-04-02 18:44:02 +02:00
if ( $result < 0 ) setEventMessages ( $object -> error , $object -> errors , 'errors' );
2013-11-17 23:25:25 +01:00
}
2012-08-15 15:52:51 +02:00
2015-02-28 03:11:15 +01:00
if ( $action == 'setremisepercent' && $user -> rights -> fournisseur -> commande -> creer )
2013-11-17 23:25:25 +01:00
{
2017-10-16 08:47:05 +02:00
$result = $object -> set_remise ( $user , $_POST [ 'remise_percent' ]);
2015-03-04 23:03:29 +01:00
if ( $result < 0 ) setEventMessages ( $object -> error , $object -> errors , 'errors' );
2013-11-17 23:25:25 +01:00
}
2014-05-05 17:59:43 +02:00
2015-04-08 17:33:38 +02:00
if ( $action == 'reopen' ) // no test on permission here, permission to use will depends on status
2013-11-17 23:25:25 +01:00
{
2017-10-16 08:47:05 +02:00
if ( in_array ( $object -> statut , array ( 1 , 2 , 3 , 4 , 5 , 6 , 7 , 9 )))
{
if ( $object -> statut == 1 ) $newstatus = 0 ; // Validated->Draft
else if ( $object -> statut == 2 ) $newstatus = 0 ; // Approved->Draft
else if ( $object -> statut == 3 ) $newstatus = 2 ; // Ordered->Approved
else if ( $object -> statut == 4 ) $newstatus = 3 ;
else if ( $object -> statut == 5 )
{
//$newstatus=2; // Ordered
// TODO Can we set it to submited ?
//$newstatus=3; // Submited
// TODO If there is at least one reception, we can set to Received->Received partially
$newstatus = 4 ; // Received partially
}
else if ( $object -> statut == 6 ) $newstatus = 2 ; // Canceled->Approved
else if ( $object -> statut == 7 ) $newstatus = 3 ; // Canceled->Process running
else if ( $object -> statut == 9 ) $newstatus = 1 ; // Refused->Validated
else $newstatus = 2 ;
//print "old status = ".$object->statut.' new status = '.$newstatus;
$db -> begin ();
$result = $object -> setStatus ( $user , $newstatus );
if ( $result > 0 )
{
// Currently the "Re-open" also remove the billed flag because there is no button "Set unpaid" yet.
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande_fournisseur' ;
$sql .= ' SET billed = 0' ;
$sql .= ' WHERE rowid = ' . $object -> id ;
$resql = $db -> query ( $sql );
if ( $newstatus == 0 )
{
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande_fournisseur' ;
$sql .= ' SET fk_user_approve = null, fk_user_approve2 = null, date_approve = null, date_approve2 = null' ;
$sql .= ' WHERE rowid = ' . $object -> id ;
$resql = $db -> query ( $sql );
}
$db -> commit ();
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id );
exit ;
}
else
2015-04-01 21:00:51 +02:00
{
$db -> rollback ();
2014-05-05 17:59:43 +02:00
2017-10-16 08:47:05 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
}
2014-06-23 11:47:07 +02:00
}
2012-08-15 15:52:51 +02:00
2015-11-16 14:55:46 +01:00
/*
* Classify supplier order as billed
*/
if ( $action == 'classifybilled' && $user -> rights -> fournisseur -> commande -> creer )
{
2016-04-09 18:50:22 +02:00
$ret = $object -> classifyBilled ( $user );
2015-11-16 14:55:46 +01:00
if ( $ret < 0 ) {
2015-12-08 11:35:08 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-11-16 14:55:46 +01:00
}
}
2016-09-11 16:05:38 +02:00
// Add a product line
2015-02-28 03:11:15 +01:00
if ( $action == 'addline' && $user -> rights -> fournisseur -> commande -> creer )
{
2017-10-16 08:47:05 +02:00
$db -> begin ();
2017-06-07 16:44:04 +02:00
2017-10-16 08:47:05 +02:00
$langs -> load ( 'errors' );
$error = 0 ;
2015-02-28 03:11:15 +01:00
// Set if we used free entry or predefined product
$predef = '' ;
$product_desc = ( GETPOST ( 'dp_desc' ) ? GETPOST ( 'dp_desc' ) : '' );
2015-12-07 03:59:03 +01:00
$date_start = dol_mktime ( GETPOST ( 'date_start' . $predef . 'hour' ), GETPOST ( 'date_start' . $predef . 'min' ), GETPOST ( 'date_start' . $predef . 'sec' ), GETPOST ( 'date_start' . $predef . 'month' ), GETPOST ( 'date_start' . $predef . 'day' ), GETPOST ( 'date_start' . $predef . 'year' ));
$date_end = dol_mktime ( GETPOST ( 'date_end' . $predef . 'hour' ), GETPOST ( 'date_end' . $predef . 'min' ), GETPOST ( 'date_end' . $predef . 'sec' ), GETPOST ( 'date_end' . $predef . 'month' ), GETPOST ( 'date_end' . $predef . 'day' ), GETPOST ( 'date_end' . $predef . 'year' ));
2017-08-13 23:17:34 +02:00
$prod_entry_mode = GETPOST ( 'prod_entry_mode' );
2016-07-23 16:37:21 +02:00
if ( $prod_entry_mode == 'free' )
2015-02-28 03:11:15 +01:00
{
$idprod = 0 ;
$price_ht = GETPOST ( 'price_ht' );
$tva_tx = ( GETPOST ( 'tva_tx' ) ? GETPOST ( 'tva_tx' ) : 0 );
}
else
{
$idprod = GETPOST ( 'idprod' , 'int' );
$price_ht = '' ;
$tva_tx = '' ;
}
2013-11-17 23:25:25 +01:00
2015-02-28 03:11:15 +01:00
$qty = GETPOST ( 'qty' . $predef );
$remise_percent = GETPOST ( 'remise_percent' . $predef );
2016-12-11 02:09:57 +01:00
$price_ht_devise = GETPOST ( 'multicurrency_price_ht' );
2015-02-28 03:11:15 +01:00
2017-10-16 08:47:05 +02:00
// Extrafields
$extrafieldsline = new ExtraFields ( $db );
$extralabelsline = $extrafieldsline -> fetch_name_optionals_label ( $object -> table_element_line );
$array_options = $extrafieldsline -> getOptionalsFromPost ( $extralabelsline , $predef );
// Unset extrafield
if ( is_array ( $extralabelsline )) {
// Get extra fields
foreach ( $extralabelsline as $key => $value ) {
unset ( $_POST [ " options_ " . $key ]);
}
}
if ( $prod_entry_mode == 'free' && GETPOST ( 'price_ht' ) < 0 && $qty < 0 )
{
setEventMessages ( $langs -> trans ( 'ErrorBothFieldCantBeNegative' , $langs -> transnoentitiesnoconv ( 'UnitPrice' ), $langs -> transnoentitiesnoconv ( 'Qty' )), null , 'errors' );
$error ++ ;
}
if ( $prod_entry_mode == 'free' && ! GETPOST ( 'idprodfournprice' ) && GETPOST ( 'type' ) < 0 )
{
setEventMessages ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( 'Type' )), null , 'errors' );
$error ++ ;
}
if ( $prod_entry_mode == 'free' && GETPOST ( 'price_ht' ) === '' && GETPOST ( 'price_ttc' ) === '' && $price_ht_devise === '' ) // Unit price can be 0 but not ''
{
setEventMessages ( $langs -> trans ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( 'UnitPrice' ))), null , 'errors' );
$error ++ ;
}
if ( $prod_entry_mode == 'free' && ! GETPOST ( 'dp_desc' ))
{
setEventMessages ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( 'Description' )), null , 'errors' );
$error ++ ;
}
if ( ! GETPOST ( 'qty' ))
{
setEventMessages ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( 'Qty' )), null , 'errors' );
$error ++ ;
}
2013-11-17 23:25:25 +01:00
2017-02-08 12:37:38 +01:00
if ( ! $error && ! empty ( $conf -> variants -> enabled ) && $prod_entry_mode != 'free' ) {
2016-07-23 16:37:21 +02:00
if ( $combinations = GETPOST ( 'combinations' , 'array' )) {
//Check if there is a product with the given combination
$prodcomb = new ProductCombination ( $db );
if ( $res = $prodcomb -> fetchByProductCombination2ValuePairs ( $idprod , $combinations )) {
$idprod = $res -> fk_product_child ;
} else {
setEventMessage ( $langs -> trans ( 'ErrorProductCombinationNotFound' ), 'errors' );
$error ++ ;
}
}
}
// Ecrase $pu par celui du produit
2017-10-16 08:47:05 +02:00
// Ecrase $desc par celui du produit
// Ecrase $txtva par celui du produit
if (( $prod_entry_mode != 'free' ) && empty ( $error )) // With combolist mode idprodfournprice is > 0 or -1. With autocomplete, idprodfournprice is > 0 or ''
{
$productsupplier = new ProductFournisseur ( $db );
2018-04-24 12:57:31 +02:00
$idprod = 0 ;
2018-06-16 14:47:33 +02:00
if ( GETPOST ( 'idprodfournprice' , 'alpha' ) == - 1 || GETPOST ( 'idprodfournprice' , 'alpha' ) == '' ) $idprod =- 99 ; // Same behaviour than with combolist. When not select idprodfournprice is now -99 (to avoid conflict with next action that may return -1, -2, ...)
if ( preg_match ( '/^idprod_([0-9]+)$/' , GETPOST ( 'idprodfournprice' , 'alpha' ), $reg ))
2017-08-23 15:02:38 +02:00
{
$idprod = $reg [ 1 ];
2018-06-16 14:47:33 +02:00
$res = $productsupplier -> fetch ( $idprod ); // Load product from its ID
// Call to init some price properties of $productsupplier
2017-08-23 15:02:38 +02:00
// So if a supplier price already exists for another thirdparty (first one found), we use it as reference price
2018-06-16 14:47:33 +02:00
if ( ! empty ( $conf -> global -> SUPPLIER_TAKE_FIRST_PRICE_IF_NO_PRICE_FOR_CURRENT_SUPPLIER ))
{
$fksoctosearch = 0 ;
$productsupplier -> get_buyprice ( 0 , - 1 , $idprod , 'none' , $fksoctosearch ); // We force qty to -1 to be sure to find if a supplier price exist
if ( $productsupplier -> fourn_socid != $socid ) // The price we found is for another supplier, so we clear supplier price
{
$productsupplier -> ref_supplier = '' ;
}
}
else
{
$fksoctosearch = $object -> thirdparty -> id ;
$productsupplier -> get_buyprice ( 0 , - 1 , $idprod , 'none' , $fksoctosearch ); // We force qty to -1 to be sure to find if a supplier price exist
}
2017-08-23 15:02:38 +02:00
}
2018-06-16 14:47:33 +02:00
elseif ( GETPOST ( 'idprodfournprice' , 'alpha' ) > 0 )
2017-10-16 08:47:05 +02:00
{
$qtytosearch = $qty ; // Just to see if a price exists for the quantity. Not used to found vat.
//$qtytosearch=-1; // We force qty to -1 to be sure to find if a supplier price exist
2018-06-16 14:47:33 +02:00
$idprod = $productsupplier -> get_buyprice ( GETPOST ( 'idprodfournprice' , 'alpha' ), $qtytosearch );
2017-10-16 08:47:05 +02:00
$res = $productsupplier -> fetch ( $idprod );
}
2015-02-28 03:11:15 +01:00
2017-10-16 08:47:05 +02:00
if ( $idprod > 0 )
{
$label = $productsupplier -> label ;
2015-02-28 03:11:15 +01:00
2017-10-16 08:47:05 +02:00
$desc = $productsupplier -> description ;
if ( trim ( $product_desc ) != trim ( $desc )) $desc = dol_concatdesc ( $desc , $product_desc );
2015-02-28 03:11:15 +01:00
2017-10-16 08:47:05 +02:00
$type = $productsupplier -> type ;
2018-04-24 12:57:31 +02:00
$price_base_type = ( $productsupplier -> fourn_price_base_type ? $productsupplier -> fourn_price_base_type : 'HT' );
$ref_supplier = $productsupplier -> ref_supplier ;
2016-08-10 09:47:25 +02:00
2018-06-16 14:47:33 +02:00
$tva_tx = get_default_tva ( $object -> thirdparty , $mysoc , $productsupplier -> id , GETPOST ( 'idprodfournprice' , 'alpha' ));
$tva_npr = get_default_npr ( $object -> thirdparty , $mysoc , $productsupplier -> id , GETPOST ( 'idprodfournprice' , 'alpha' ));
2016-02-27 11:32:49 +01:00
if ( empty ( $tva_tx )) $tva_npr = 0 ;
2017-10-16 08:47:05 +02:00
$localtax1_tx = get_localtax ( $tva_tx , 1 , $mysoc , $object -> thirdparty , $tva_npr );
$localtax2_tx = get_localtax ( $tva_tx , 2 , $mysoc , $object -> thirdparty , $tva_npr );
2018-06-16 13:49:28 +02:00
$pu = $productsupplier -> fourn_pu ;
if ( empty ( $pu )) $pu = 0 ; // If pu is '' or null, we force to have a numeric value
2017-10-16 08:47:05 +02:00
$result = $object -> addline (
$desc ,
2018-06-16 13:49:28 +02:00
$pu ,
2017-10-16 08:47:05 +02:00
$qty ,
$tva_tx ,
$localtax1_tx ,
$localtax2_tx ,
$idprod ,
2018-04-24 12:57:31 +02:00
0 , // We already have the $idprod always defined
$ref_supplier ,
2017-10-16 08:47:05 +02:00
$remise_percent ,
'HT' ,
$pu_ttc ,
$type ,
$tva_npr ,
'' ,
$date_start ,
$date_end ,
$array_options ,
2018-02-23 11:06:07 +01:00
$productsupplier -> fk_unit ,
$productsupplier -> fourn_multicurrency_unitprice
2017-10-16 08:47:05 +02:00
);
}
if ( $idprod == - 99 || $idprod == 0 )
{
// Product not selected
$error ++ ;
$langs -> load ( " errors " );
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " ProductOrService " )) . ' ' . $langs -> trans ( " or " ) . ' ' . $langs -> trans ( " NoPriceDefinedForThisSupplier " ), null , 'errors' );
}
if ( $idprod == - 1 )
{
// Quantity too low
$error ++ ;
$langs -> load ( " errors " );
setEventMessages ( $langs -> trans ( " ErrorQtyTooLowForThisSupplier " ), null , 'errors' );
}
}
2018-04-24 12:57:31 +02:00
else if ( empty ( $error )) // $price_ht is already set
2015-02-28 03:11:15 +01:00
{
$pu_ht = price2num ( $price_ht , 'MU' );
$pu_ttc = price2num ( GETPOST ( 'price_ttc' ), 'MU' );
$tva_npr = ( preg_match ( '/\*/' , $tva_tx ) ? 1 : 0 );
$tva_tx = str_replace ( '*' , '' , $tva_tx );
$label = ( GETPOST ( 'product_label' ) ? GETPOST ( 'product_label' ) : '' );
$desc = $product_desc ;
$type = GETPOST ( 'type' );
2017-11-12 16:06:08 +01:00
$ref_supplier = GETPOST ( 'fourn_ref' , 'alpha' );
2015-02-28 03:11:15 +01:00
2015-04-21 15:49:58 +02:00
$fk_unit = GETPOST ( 'units' , 'alpha' );
2015-04-19 15:59:49 +02:00
2017-10-16 08:47:05 +02:00
$tva_tx = price2num ( $tva_tx ); // When vat is text input field
// Local Taxes
$localtax1_tx = get_localtax ( $tva_tx , 1 , $mysoc , $object -> thirdparty );
$localtax2_tx = get_localtax ( $tva_tx , 2 , $mysoc , $object -> thirdparty );
2018-04-24 12:57:31 +02:00
if ( $price_ht !== '' )
2017-10-16 08:47:05 +02:00
{
2018-04-24 12:57:31 +02:00
$pu_ht = price2num ( $price_ht , 'MU' ); // $pu_ht must be rounded according to settings
2017-10-16 08:47:05 +02:00
}
else
{
2018-04-24 12:57:31 +02:00
$pu_ttc = price2num ( GETPOST ( 'price_ttc' ), 'MU' );
$pu_ht = price2num ( $pu_ttc / ( 1 + ( $tva_tx / 100 )), 'MU' ); // $pu_ht must be rounded according to settings
2017-10-16 08:47:05 +02:00
}
2018-04-24 12:57:31 +02:00
$price_base_type = 'HT' ;
2016-12-11 02:09:57 +01:00
$pu_ht_devise = price2num ( $price_ht_devise , 'MU' );
2016-12-11 02:50:21 +01:00
2018-04-24 12:57:31 +02:00
$result = $object -> addline ( $desc , $pu_ht , $qty , $tva_tx , $localtax1_tx , $localtax2_tx , 0 , 0 , $ref_supplier , $remise_percent , $price_base_type , $pu_ttc , $type , '' , '' , $date_start , $date_end , $array_options , $fk_unit , $pu_ht_devise );
2015-02-28 03:11:15 +01:00
}
2014-05-05 17:59:43 +02:00
2017-10-16 08:47:05 +02:00
//print "xx".$tva_tx; exit;
if ( ! $error && $result > 0 )
{
$db -> commit ();
2017-06-07 16:44:04 +02:00
2017-10-16 08:47:05 +02:00
$ret = $object -> fetch ( $object -> id ); // Reload to get new records
2015-02-28 03:11:15 +01:00
2017-10-16 08:47:05 +02:00
// Define output language
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' )) $newlang = GETPOST ( 'lang_id' , 'aZ09' );
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> thirdparty -> default_lang ;
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$model = $object -> modelpdf ;
$ret = $object -> fetch ( $id ); // Reload to get new records
2015-02-28 03:11:15 +01:00
2017-10-16 08:47:05 +02:00
$result = $object -> generateDocument ( $model , $outputlangs , $hidedetails , $hidedesc , $hideref );
if ( $result < 0 ) dol_print_error ( $db , $result );
}
2015-02-28 03:11:15 +01:00
unset ( $_POST [ 'prod_entry_mode' ]);
2017-10-16 08:47:05 +02:00
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
unset ( $_POST [ 'remise_percent' ]);
unset ( $_POST [ 'pu' ]);
unset ( $_POST [ 'price_ht' ]);
2016-04-12 14:10:27 +02:00
unset ( $_POST [ 'multicurrency_price_ht' ]);
2017-10-16 08:47:05 +02:00
unset ( $_POST [ 'price_ttc' ]);
2017-11-12 16:06:08 +01:00
unset ( $_POST [ 'fourn_ref' ]);
2017-10-16 08:47:05 +02:00
unset ( $_POST [ 'tva_tx' ]);
unset ( $_POST [ 'label' ]);
unset ( $localtax1_tx );
unset ( $localtax2_tx );
2015-02-28 03:11:15 +01:00
unset ( $_POST [ 'np_marginRate' ]);
unset ( $_POST [ 'np_markRate' ]);
2017-10-16 08:47:05 +02:00
unset ( $_POST [ 'dp_desc' ]);
2015-02-28 03:11:15 +01:00
unset ( $_POST [ 'idprodfournprice' ]);
2017-10-16 08:47:05 +02:00
unset ( $_POST [ 'date_starthour' ]);
unset ( $_POST [ 'date_startmin' ]);
unset ( $_POST [ 'date_startsec' ]);
unset ( $_POST [ 'date_startday' ]);
unset ( $_POST [ 'date_startmonth' ]);
unset ( $_POST [ 'date_startyear' ]);
unset ( $_POST [ 'date_endhour' ]);
unset ( $_POST [ 'date_endmin' ]);
unset ( $_POST [ 'date_endsec' ]);
unset ( $_POST [ 'date_endday' ]);
unset ( $_POST [ 'date_endmonth' ]);
unset ( $_POST [ 'date_endyear' ]);
}
else
2015-02-28 03:11:15 +01:00
{
2017-10-16 08:47:05 +02:00
$db -> rollback ();
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
2017-06-07 16:44:04 +02:00
2017-10-16 08:47:05 +02:00
$action = '' ;
2012-12-01 15:45:05 +01:00
}
2013-11-17 23:25:25 +01:00
2015-02-28 03:11:15 +01:00
/*
2015-12-08 11:35:08 +01:00
* Updating a line in the order
2015-02-28 03:11:15 +01:00
*/
2017-09-15 10:50:50 +02:00
if ( $action == 'updateline' && $user -> rights -> fournisseur -> commande -> creer && ! GETPOST ( 'cancel' , 'alpha' ))
2015-01-31 00:08:45 +01:00
{
2017-09-24 23:28:48 +02:00
$vat_rate = ( GETPOST ( 'tva_tx' ) ? GETPOST ( 'tva_tx' ) : 0 );
2011-10-14 16:44:22 +02:00
2015-02-28 18:10:31 +01:00
if ( $lineid )
2017-09-26 20:57:09 +02:00
{
2017-11-12 16:06:08 +01:00
$line = new CommandeFournisseurLigne ( $db );
$res = $line -> fetch ( $lineid );
if ( ! $res ) dol_print_error ( $db );
2017-09-26 20:57:09 +02:00
}
2017-10-03 14:50:52 +02:00
2017-09-27 09:09:38 +02:00
$productsupplier = new ProductFournisseur ( $db );
2018-04-24 13:22:34 +02:00
if ( ! empty ( $conf -> global -> SUPPLIER_ORDER_WITH_PREDEFINED_PRICES_ONLY ))
2017-09-26 20:57:09 +02:00
{
2018-04-24 13:22:34 +02:00
if ( $line -> fk_product > 0 && $productsupplier -> get_buyprice ( 0 , price2num ( $_POST [ 'qty' ]), $line -> fk_product , 'none' , GETPOST ( 'socid' , 'int' )) < 0 )
{
setEventMessages ( $langs -> trans ( " ErrorQtyTooLowForThisSupplier " ), null , 'warnings' );
}
2017-09-26 20:57:09 +02:00
}
2017-09-26 14:13:11 +02:00
2017-11-12 16:06:08 +01:00
$date_start = dol_mktime ( GETPOST ( 'date_starthour' ), GETPOST ( 'date_startmin' ), GETPOST ( 'date_startsec' ), GETPOST ( 'date_startmonth' ), GETPOST ( 'date_startday' ), GETPOST ( 'date_startyear' ));
$date_end = dol_mktime ( GETPOST ( 'date_endhour' ), GETPOST ( 'date_endmin' ), GETPOST ( 'date_endsec' ), GETPOST ( 'date_endmonth' ), GETPOST ( 'date_endday' ), GETPOST ( 'date_endyear' ));
2017-09-26 14:13:11 +02:00
2017-11-12 16:06:08 +01:00
// Define info_bits
$info_bits = 0 ;
if ( preg_match ( '/\*/' , $vat_rate ))
2017-10-16 08:47:05 +02:00
$info_bits |= 0x01 ;
2017-09-26 14:13:11 +02:00
// Define vat_rate
2017-10-16 08:47:05 +02:00
$vat_rate = str_replace ( '*' , '' , $vat_rate );
$localtax1_rate = get_localtax ( $vat_rate , 1 , $mysoc , $object -> thirdparty );
$localtax2_rate = get_localtax ( $vat_rate , 2 , $mysoc , $object -> thirdparty );
2017-09-26 14:13:11 +02:00
2017-10-16 08:47:05 +02:00
if ( GETPOST ( 'price_ht' ) != '' )
{
2017-09-26 14:13:11 +02:00
$price_base_type = 'HT' ;
$ht = price2num ( GETPOST ( 'price_ht' ));
2017-10-16 08:47:05 +02:00
}
else
{
2017-09-26 14:13:11 +02:00
$vatratecleaned = $vat_rate ;
if ( preg_match ( '/^(.*)\s*\((.*)\)$/' , $vat_rate , $reg )) // If vat is "xx (yy)"
{
$vatratecleaned = trim ( $reg [ 1 ]);
$vatratecode = $reg [ 2 ];
}
2004-11-29 17:48:53 +01:00
2017-09-26 14:13:11 +02:00
$ttc = price2num ( GETPOST ( 'price_ttc' ));
$ht = $ttc / ( 1 + ( $vatratecleaned / 100 ));
$price_base_type = 'HT' ;
2017-10-16 08:47:05 +02:00
}
2017-09-26 14:13:11 +02:00
2017-10-16 08:47:05 +02:00
$pu_ht_devise = GETPOST ( 'multicurrency_subprice' );
2017-09-26 14:13:11 +02:00
// Extrafields Lines
$extrafieldsline = new ExtraFields ( $db );
$extralabelsline = $extrafieldsline -> fetch_name_optionals_label ( $object -> table_element_line );
$array_options = $extrafieldsline -> getOptionalsFromPost ( $extralabelsline );
// Unset extrafield POST Data
if ( is_array ( $extralabelsline )) {
foreach ( $extralabelsline as $key => $value ) {
unset ( $_POST [ " options_ " . $key ]);
}
}
2017-09-24 23:28:48 +02:00
2017-10-16 08:47:05 +02:00
$result = $object -> updateline (
2017-11-12 16:06:08 +01:00
$lineid ,
$_POST [ 'product_desc' ],
$ht ,
$_POST [ 'qty' ],
$_POST [ 'remise_percent' ],
$vat_rate ,
$localtax1_rate ,
$localtax2_rate ,
$price_base_type ,
0 ,
isset ( $_POST [ " type " ]) ? $_POST [ " type " ] : $line -> product_type ,
false ,
$date_start ,
$date_end ,
$array_options ,
2017-10-16 08:47:05 +02:00
$_POST [ 'units' ],
2017-11-12 16:06:08 +01:00
$pu_ht_devise ,
GETPOST ( 'fourn_ref' , 'alpha' )
2017-10-16 08:47:05 +02:00
);
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
unset ( $_POST [ 'idprodfournprice' ]);
unset ( $_POST [ 'remmise_percent' ]);
unset ( $_POST [ 'dp_desc' ]);
unset ( $_POST [ 'np_desc' ]);
unset ( $_POST [ 'pu' ]);
2017-11-12 16:06:08 +01:00
unset ( $_POST [ 'fourn_ref' ]);
2017-10-16 08:47:05 +02:00
unset ( $_POST [ 'tva_tx' ]);
unset ( $_POST [ 'date_start' ]);
unset ( $_POST [ 'date_end' ]);
2017-09-26 14:13:11 +02:00
unset ( $_POST [ 'units' ]);
2017-10-16 08:47:05 +02:00
unset ( $localtax1_tx );
unset ( $localtax2_tx );
2017-09-26 14:13:11 +02:00
unset ( $_POST [ 'date_starthour' ]);
unset ( $_POST [ 'date_startmin' ]);
unset ( $_POST [ 'date_startsec' ]);
unset ( $_POST [ 'date_startday' ]);
unset ( $_POST [ 'date_startmonth' ]);
unset ( $_POST [ 'date_startyear' ]);
unset ( $_POST [ 'date_endhour' ]);
unset ( $_POST [ 'date_endmin' ]);
unset ( $_POST [ 'date_endsec' ]);
unset ( $_POST [ 'date_endday' ]);
unset ( $_POST [ 'date_endmonth' ]);
unset ( $_POST [ 'date_endyear' ]);
2017-10-16 08:47:05 +02:00
if ( $result >= 0 )
{
2017-09-26 14:13:11 +02:00
// Define output language
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' )) $newlang = GETPOST ( 'lang_id' , 'aZ09' );
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> thirdparty -> default_lang ;
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$model = $object -> modelpdf ;
$ret = $object -> fetch ( $id ); // Reload to get new records
2004-11-29 17:48:53 +01:00
2017-09-26 14:13:11 +02:00
$result = $object -> generateDocument ( $model , $outputlangs , $hidedetails , $hidedesc , $hideref );
if ( $result < 0 ) dol_print_error ( $db , $result );
2012-12-01 15:45:05 +01:00
}
2017-10-16 08:47:05 +02:00
}
else
{
2017-09-26 14:13:11 +02:00
dol_print_error ( $db , $object -> error );
exit ;
2017-10-16 08:47:05 +02:00
}
2017-10-03 14:50:52 +02:00
2014-06-23 11:47:07 +02:00
}
2015-02-28 04:59:27 +01:00
// Remove a product line
if ( $action == 'confirm_deleteline' && $confirm == 'yes' && $user -> rights -> fournisseur -> commande -> creer )
2012-12-01 15:45:05 +01:00
{
2015-02-28 04:59:27 +01:00
$result = $object -> deleteline ( $lineid );
if ( $result > 0 )
2012-12-01 15:45:05 +01:00
{
2015-02-28 04:59:27 +01:00
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
2017-06-27 17:27:01 +02:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' ))
$newlang = GETPOST ( 'lang_id' , 'aZ09' );
2015-02-28 04:59:27 +01:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ))
$newlang = $object -> thirdparty -> default_lang ;
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
2012-12-01 15:45:05 +01:00
}
2015-02-28 04:59:27 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
$ret = $object -> fetch ( $object -> id ); // Reload to get new records
$object -> generateDocument ( $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-12-01 15:45:05 +01:00
}
2011-10-14 16:44:22 +02:00
2015-02-28 04:59:27 +01:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id );
exit ;
}
else
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
/* Fix bug 1485 : Reset action to avoid asking again confirmation on failure */
$action = '' ;
2012-12-01 15:45:05 +01:00
}
}
2005-04-05 11:58:15 +02:00
2015-04-01 21:00:51 +02:00
// Validate
2015-02-28 03:11:15 +01:00
if ( $action == 'confirm_valid' && $confirm == 'yes' &&
2017-10-16 08:47:05 +02:00
(( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> fournisseur -> commande -> creer ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> fournisseur -> supplier_order_advance -> validate )))
2015-02-28 03:11:15 +01:00
)
2014-06-23 11:47:07 +02:00
{
2017-10-16 08:47:05 +02:00
$object -> date_commande = dol_now ();
$result = $object -> valid ( $user );
if ( $result >= 0 )
{
// Define output language
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' )) $newlang = GETPOST ( 'lang_id' , 'aZ09' );
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> thirdparty -> default_lang ;
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$model = $object -> modelpdf ;
$ret = $object -> fetch ( $id ); // Reload to get new records
$result = $object -> generateDocument ( $model , $outputlangs , $hidedetails , $hidedesc , $hideref );
if ( $result < 0 ) dol_print_error ( $db , $result );
}
}
else
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
// If we have permission, and if we don't need to provide the idwarehouse, we go directly on approved step
if ( empty ( $conf -> global -> SUPPLIER_ORDER_NO_DIRECT_APPROVE ) && $user -> rights -> fournisseur -> commande -> approuver && ! ( ! empty ( $conf -> global -> STOCK_CALCULATE_ON_SUPPLIER_VALIDATE_ORDER ) && $object -> hasProductsOrServices ( 1 )))
{
$action = 'confirm_approve' ; // can make standard or first level approval also if permission is set
}
2014-06-23 11:47:07 +02:00
}
2011-10-14 16:44:22 +02:00
2015-04-01 21:00:51 +02:00
if (( $action == 'confirm_approve' || $action == 'confirm_approve2' ) && $confirm == 'yes' && $user -> rights -> fournisseur -> commande -> approuver )
2015-02-28 03:11:15 +01:00
{
2017-10-16 08:47:05 +02:00
$idwarehouse = GETPOST ( 'idwarehouse' , 'int' );
2011-10-14 16:44:22 +02:00
2017-10-16 08:47:05 +02:00
$qualified_for_stock_change = 0 ;
2015-02-28 03:11:15 +01:00
if ( empty ( $conf -> global -> STOCK_SUPPORTS_SERVICES ))
{
$qualified_for_stock_change = $object -> hasProductsOrServices ( 2 );
}
else
{
$qualified_for_stock_change = $object -> hasProductsOrServices ( 1 );
}
2006-02-17 17:29:58 +01:00
2017-10-16 08:47:05 +02:00
// Check parameters
if ( ! empty ( $conf -> stock -> enabled ) && ! empty ( $conf -> global -> STOCK_CALCULATE_ON_SUPPLIER_VALIDATE_ORDER ) && $qualified_for_stock_change ) // warning name of option should be STOCK_CALCULATE_ON_SUPPLIER_APPROVE_ORDER
{
if ( ! $idwarehouse || $idwarehouse == - 1 )
2015-04-02 18:44:02 +02:00
{
2017-10-16 08:47:05 +02:00
$error ++ ;
setEventMessages ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( " Warehouse " )), null , 'errors' );
$action = '' ;
}
}
if ( ! $error )
{
$result = $object -> approve ( $user , $idwarehouse , ( $action == 'confirm_approve2' ? 1 : 0 ));
if ( $result > 0 )
{
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' )) $newlang = GETPOST ( 'lang_id' , 'aZ09' );
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> thirdparty -> default_lang ;
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$object -> generateDocument ( $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
}
header ( " Location: " . $_SERVER [ " PHP_SELF " ] . " ?id= " . $object -> id );
exit ;
}
else
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
}
2015-02-28 03:11:15 +01:00
}
2013-11-17 23:25:25 +01:00
2015-02-28 03:11:15 +01:00
if ( $action == 'confirm_refuse' && $confirm == 'yes' && $user -> rights -> fournisseur -> commande -> approuver )
{
2017-10-16 08:47:05 +02:00
$result = $object -> refuse ( $user );
if ( $result > 0 )
{
header ( " Location: " . $_SERVER [ " PHP_SELF " ] . " ?id= " . $object -> id );
exit ;
}
else
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
2015-02-28 03:11:15 +01:00
}
2005-08-31 23:56:05 +02:00
2015-02-28 03:11:15 +01:00
if ( $action == 'confirm_commande' && $confirm == 'yes' && $user -> rights -> fournisseur -> commande -> commander )
{
2017-10-16 08:47:05 +02:00
$result = $object -> commande ( $user , $_REQUEST [ " datecommande " ], $_REQUEST [ " methode " ], $_REQUEST [ 'comment' ]);
if ( $result > 0 )
{
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' )) $newlang = GETPOST ( 'lang_id' , 'aZ09' );
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> thirdparty -> default_lang ;
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$object -> generateDocument ( $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
}
$action = '' ;
2018-04-10 17:10:48 +02:00
header ( " Location: " . $_SERVER [ " PHP_SELF " ] . " ?id= " . $object -> id );
exit ;
2017-10-16 08:47:05 +02:00
}
else
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
2015-02-28 03:11:15 +01:00
}
2006-03-16 02:25:19 +01:00
2013-12-19 21:03:15 +01:00
2015-02-28 03:11:15 +01:00
if ( $action == 'confirm_delete' && $confirm == 'yes' && $user -> rights -> fournisseur -> commande -> supprimer )
2013-12-19 21:03:15 +01:00
{
2017-10-16 08:47:05 +02:00
$result = $object -> delete ( $user );
if ( $result > 0 )
{
2018-02-26 21:16:40 +01:00
header ( " Location: " . DOL_URL_ROOT . '/fourn/commande/list.php?restore_lastsearch_values=1' );
2017-10-16 08:47:05 +02:00
exit ;
}
else
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
2012-12-01 15:45:05 +01:00
}
2013-12-19 21:03:15 +01:00
2015-02-28 03:11:15 +01:00
// Action clone object
if ( $action == 'confirm_clone' && $confirm == 'yes' && $user -> rights -> fournisseur -> commande -> creer )
2012-12-01 15:45:05 +01:00
{
2015-02-28 03:11:15 +01:00
if ( 1 == 0 && ! GETPOST ( 'clone_content' ) && ! GETPOST ( 'clone_receivers' ))
2012-12-01 15:45:05 +01:00
{
2015-12-08 11:35:08 +01:00
setEventMessages ( $langs -> trans ( " NoCloneOptionsSpecified " ), null , 'errors' );
2015-02-28 03:11:15 +01:00
}
else
2013-12-17 16:15:48 +01:00
{
2015-02-28 03:11:15 +01:00
if ( $object -> id > 0 )
2013-12-17 16:15:48 +01:00
{
2015-02-28 03:11:15 +01:00
$result = $object -> createFromClone ();
if ( $result > 0 )
2013-12-17 16:15:48 +01:00
{
2015-02-28 03:11:15 +01:00
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . '?id=' . $result );
exit ;
}
else
{
2017-10-16 08:47:05 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-02-28 03:11:15 +01:00
$action = '' ;
2013-12-17 16:15:48 +01:00
}
}
}
}
2011-10-14 16:44:22 +02:00
2015-03-08 02:08:26 +01:00
// Set status of reception (complete, partial, ...)
2015-02-28 03:11:15 +01:00
if ( $action == 'livraison' && $user -> rights -> fournisseur -> commande -> receptionner )
{
2017-10-16 08:47:05 +02:00
if ( GETPOST ( " type " ) != '' )
{
$date_liv = dol_mktime ( GETPOST ( 'rehour' ), GETPOST ( 'remin' ), GETPOST ( 'resec' ), GETPOST ( " remonth " ), GETPOST ( " reday " ), GETPOST ( " reyear " ));
$result = $object -> Livraison ( $user , $date_liv , GETPOST ( " type " ), GETPOST ( " comment " )); // GETPOST("type") is 'tot', 'par', 'nev', 'can'
if ( $result > 0 )
{
$langs -> load ( " deliveries " );
setEventMessages ( $langs -> trans ( " DeliveryStateSaved " ), null );
$action = '' ;
}
else if ( $result == - 3 )
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
else
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
}
else
{
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentities ( " Delivery " )), null , 'errors' );
}
2015-02-28 03:11:15 +01:00
}
2011-10-14 16:44:22 +02:00
2015-02-28 03:11:15 +01:00
if ( $action == 'confirm_cancel' && $confirm == 'yes' && $user -> rights -> fournisseur -> commande -> commander )
2013-12-17 16:15:48 +01:00
{
2017-10-16 08:47:05 +02:00
$result = $object -> cancel ( $user );
if ( $result > 0 )
{
header ( " Location: " . $_SERVER [ " PHP_SELF " ] . " ?id= " . $object -> id );
exit ;
}
else
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
2013-12-17 16:15:48 +01:00
}
2017-09-17 15:38:50 +02:00
// Actions when printing a doc from card
include DOL_DOCUMENT_ROOT . '/core/actions_printing.inc.php' ;
// Actions to send emails
$trigger_name = 'ORDER_SUPPLIER_SENTBYMAIL' ;
$autocopy = 'MAIN_MAIL_AUTOCOPY_SUPPLIER_ORDER_TO' ;
$trackid = 'sor' . $object -> id ;
include DOL_DOCUMENT_ROOT . '/core/actions_sendmails.inc.php' ;
2017-03-19 15:37:07 +01:00
// Actions to build doc
2017-07-07 20:14:47 +02:00
$upload_dir = $conf -> fournisseur -> commande -> dir_output ;
2017-03-19 15:37:07 +01:00
$permissioncreate = $user -> rights -> fournisseur -> commande -> creer ;
include DOL_DOCUMENT_ROOT . '/core/actions_builddoc.inc.php' ;
2016-08-10 09:47:25 +02:00
2017-09-17 15:38:50 +02:00
2015-02-28 03:11:15 +01:00
if ( $action == 'update_extras' )
{
2018-02-23 16:11:00 +01:00
$object -> oldcopy = dol_clone ( $object );
2013-12-17 16:15:48 +01:00
// Fill array 'array_options' with data from add form
2015-02-28 03:11:15 +01:00
$extralabels = $extrafields -> fetch_name_optionals_label ( $object -> table_element );
2018-02-23 16:11:00 +01:00
$ret = $extrafields -> setOptionalsFromPost ( $extralabels , $object , GETPOST ( 'attribute' , 'none' ));
2015-02-28 03:11:15 +01:00
if ( $ret < 0 ) $error ++ ;
2013-03-24 21:06:45 +01:00
2015-02-28 03:11:15 +01:00
if ( ! $error )
2013-03-12 15:06:38 +01:00
{
2018-04-10 12:03:01 +02:00
// Actions on extra fields
if ( empty ( $conf -> global -> MAIN_EXTRAFIELDS_DISABLED )) // For avoid conflicts if trigger used
2015-02-28 03:11:15 +01:00
{
2018-04-10 12:03:01 +02:00
$result = $object -> insertExtraFields ( 'ORDER_SUPPLIER_MODIFY' );
if ( $result < 0 )
2013-12-17 16:15:48 +01:00
{
2018-04-10 12:03:01 +02:00
$error ++ ;
2018-06-13 23:07:30 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-02-28 03:11:15 +01:00
}
2013-12-17 16:15:48 +01:00
}
2015-02-28 03:11:15 +01:00
}
2018-04-10 12:03:01 +02:00
if ( $error )
2015-02-28 03:11:15 +01:00
$action = 'edit_extras' ;
2013-12-17 16:15:48 +01:00
}
2010-05-12 13:29:21 +02:00
2015-02-28 03:11:15 +01:00
/*
* Create an order
*/
if ( $action == 'add' && $user -> rights -> fournisseur -> commande -> creer )
{
$error = 0 ;
2011-10-14 16:44:22 +02:00
2017-10-16 08:47:05 +02:00
if ( $socid < 1 )
{
setEventMessages ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentities ( 'Supplier' )), null , 'errors' );
$action = 'create' ;
$error ++ ;
}
2011-10-14 16:44:22 +02:00
2017-10-16 08:47:05 +02:00
if ( ! $error )
{
$db -> begin ();
2015-02-28 03:11:15 +01:00
2017-10-16 08:47:05 +02:00
// Creation commande
$object -> ref_supplier = GETPOST ( 'refsupplier' );
$object -> socid = $socid ;
2015-02-28 03:11:15 +01:00
$object -> cond_reglement_id = GETPOST ( 'cond_reglement_id' );
2017-10-16 08:47:05 +02:00
$object -> mode_reglement_id = GETPOST ( 'mode_reglement_id' );
$object -> fk_account = GETPOST ( 'fk_account' , 'int' );
$object -> note_private = GETPOST ( 'note_private' , 'none' );
$object -> note_public = GETPOST ( 'note_public' , 'none' );
2015-02-28 03:11:15 +01:00
$object -> date_livraison = $datelivraison ;
2015-03-04 23:03:29 +01:00
$object -> fk_incoterms = GETPOST ( 'incoterm_id' , 'int' );
$object -> location_incoterms = GETPOST ( 'location_incoterms' , 'alpha' );
2016-02-16 23:58:21 +01:00
$object -> multicurrency_code = GETPOST ( 'multicurrency_code' , 'alpha' );
$object -> multicurrency_tx = GETPOST ( 'originmulticurrency_tx' , 'int' );
2016-08-03 01:42:05 +02:00
$object -> fk_project = GETPOST ( 'projectid' );
2015-02-28 03:11:15 +01:00
// Fill array 'array_options' with data from add form
2017-10-16 08:47:05 +02:00
if ( ! $error )
{
2015-02-28 03:11:15 +01:00
$ret = $extrafields -> setOptionalsFromPost ( $extralabels , $object );
if ( $ret < 0 ) $error ++ ;
2017-10-16 08:47:05 +02:00
}
2015-02-28 03:11:15 +01:00
2017-10-16 08:47:05 +02:00
if ( ! $error )
{
// If creation from another object of another module (Example: origin=propal, originid=1)
2015-03-04 17:54:43 +01:00
if ( ! empty ( $origin ) && ! empty ( $originid ))
2015-01-30 16:52:14 +01:00
{
2016-05-05 20:19:56 +02:00
if ( $origin == 'order' || $origin == 'commande' )
{
2017-10-16 08:47:05 +02:00
$element = $subelement = 'commande' ;
}
else
{
2016-02-14 00:20:25 +01:00
$element = 'supplier_proposal' ;
$subelement = 'supplier_proposal' ;
2016-05-05 20:19:56 +02:00
}
2016-08-10 09:47:25 +02:00
2015-03-04 17:54:43 +01:00
$object -> origin = $origin ;
$object -> origin_id = $originid ;
2011-10-14 16:44:22 +02:00
2015-03-04 17:54:43 +01:00
// Possibility to add external linked objects with hooks
$object -> linked_objects [ $object -> origin ] = $object -> origin_id ;
$other_linked_objects = GETPOST ( 'other_linked_objects' , 'array' );
if ( ! empty ( $other_linked_objects )) {
$object -> linked_objects = array_merge ( $object -> linked_objects , $other_linked_objects );
}
2011-10-14 16:44:22 +02:00
2016-01-25 12:33:38 +01:00
$id = $object -> create ( $user );
if ( $id > 0 )
2015-01-30 16:52:14 +01:00
{
2015-03-04 17:54:43 +01:00
dol_include_once ( '/' . $element . '/class/' . $subelement . '.class.php' );
2016-01-25 12:33:38 +01:00
$classname = 'SupplierProposal' ;
2015-03-04 17:54:43 +01:00
$srcobject = new $classname ( $db );
2015-01-30 16:52:14 +01:00
2015-03-04 17:54:43 +01:00
dol_syslog ( " Try to find source object origin= " . $object -> origin . " originid= " . $object -> origin_id . " to add lines " );
$result = $srcobject -> fetch ( $object -> origin_id );
if ( $result > 0 )
2015-01-30 16:52:14 +01:00
{
2015-04-03 11:00:52 +02:00
$object -> set_date_livraison ( $user , $srcobject -> date_livraison );
$object -> set_id_projet ( $user , $srcobject -> fk_project );
2015-03-04 17:54:43 +01:00
$lines = $srcobject -> lines ;
if ( empty ( $lines ) && method_exists ( $srcobject , 'fetch_lines' ))
{
$srcobject -> fetch_lines ();
$lines = $srcobject -> lines ;
2015-01-30 16:52:14 +01:00
}
2015-03-04 17:54:43 +01:00
$fk_parent_line = 0 ;
$num = count ( $lines );
for ( $i = 0 ; $i < $num ; $i ++ )
2015-01-30 16:52:14 +01:00
{
2015-03-04 17:54:43 +01:00
if ( empty ( $lines [ $i ] -> subprice ) || $lines [ $i ] -> qty <= 0 )
continue ;
2015-04-08 11:50:40 +02:00
$label = ( ! empty ( $lines [ $i ] -> label ) ? $lines [ $i ] -> label : '' );
2018-03-05 17:18:03 +01:00
$desc = ( ! empty ( $lines [ $i ] -> desc ) ? $lines [ $i ] -> desc : $lines [ $i ] -> product_desc );
2015-04-08 11:50:40 +02:00
$product_type = ( ! empty ( $lines [ $i ] -> product_type ) ? $lines [ $i ] -> product_type : 0 );
2016-08-10 09:47:25 +02:00
2015-03-04 17:54:43 +01:00
// Reset fk_parent_line for no child products and special product
2015-04-08 11:50:40 +02:00
if (( $lines [ $i ] -> product_type != 9 && empty ( $lines [ $i ] -> fk_parent_line )) || $lines [ $i ] -> product_type == 9 ) {
2015-03-04 17:54:43 +01:00
$fk_parent_line = 0 ;
}
2016-08-10 09:47:25 +02:00
2015-03-04 17:54:43 +01:00
// Extrafields
2015-04-08 11:50:40 +02:00
if ( empty ( $conf -> global -> MAIN_EXTRAFIELDS_DISABLED ) && method_exists ( $lines [ $i ], 'fetch_optionals' )) // For avoid conflicts if
2017-10-16 08:47:05 +02:00
// trigger used
2015-03-04 17:54:43 +01:00
{
2015-04-08 11:50:40 +02:00
$lines [ $i ] -> fetch_optionals ( $lines [ $i ] -> rowid );
$array_option = $lines [ $i ] -> array_options ;
2015-03-04 17:54:43 +01:00
}
2018-04-27 12:42:18 +02:00
$ref_supplier = '' ;
$product_fourn_price_id = 0 ;
if ( $origin == " commande " )
2016-05-05 20:19:56 +02:00
{
2018-04-27 12:42:18 +02:00
$productsupplier = new ProductFournisseur ( $db );
$result = $productsupplier -> find_min_price_product_fournisseur ( $lines [ $i ] -> fk_product , $lines [ $i ] -> qty , $srcobject -> socid );
if ( $result > 0 )
2017-10-16 08:47:05 +02:00
{
2018-04-27 12:42:18 +02:00
$ref_supplier = $productsupplier -> ref_supplier ;
2018-04-29 20:14:57 +02:00
$product_fourn_price_id = $productsupplier -> product_fourn_price_id ;
2017-10-16 08:47:05 +02:00
}
2018-04-27 12:42:18 +02:00
}
else
{
$ref_supplier = $lines [ $i ] -> ref_fourn ;
$product_fourn_price_id = 0 ;
}
2018-03-05 16:58:35 +01:00
$tva_tx = $lines [ $i ] -> tva_tx ;
2016-08-10 09:47:25 +02:00
2018-03-05 16:58:35 +01:00
if ( $origin == " commande " )
2016-05-05 20:19:56 +02:00
{
2018-03-05 16:58:35 +01:00
$soc = new societe ( $db );
$soc -> fetch ( $socid );
2018-04-27 12:42:18 +02:00
$tva_tx = get_default_tva ( $soc , $mysoc , $lines [ $i ] -> fk_product , $product_fourn_price_id );
2016-02-26 22:48:01 +01:00
}
2016-08-10 09:47:25 +02:00
2018-03-05 16:58:35 +01:00
$result = $object -> addline (
$desc ,
$lines [ $i ] -> subprice ,
$lines [ $i ] -> qty ,
$tva_tx ,
$lines [ $i ] -> localtax1_tx ,
$lines [ $i ] -> localtax2_tx ,
$lines [ $i ] -> fk_product > 0 ? $lines [ $i ] -> fk_product : 0 ,
2018-04-27 12:42:18 +02:00
$product_fourn_price_id ,
$ref_supplier ,
2018-03-05 16:58:35 +01:00
$lines [ $i ] -> remise_percent ,
'HT' ,
0 ,
$lines [ $i ] -> product_type ,
'' ,
'' ,
null ,
null ,
array (),
$lines [ $i ] -> fk_unit ,
0 ,
$element ,
2018-04-27 12:42:18 +02:00
! empty ( $lines [ $i ] -> id ) ? $lines [ $i ] -> id : $lines [ $i ] -> rowid
2018-03-05 16:58:35 +01:00
);
2018-04-27 12:42:18 +02:00
2015-03-04 17:54:43 +01:00
if ( $result < 0 ) {
2016-01-25 12:33:38 +01:00
$error ++ ;
2015-03-04 17:54:43 +01:00
break ;
}
// Defined the new fk_parent_line
2015-04-08 11:50:40 +02:00
if ( $result > 0 && $lines [ $i ] -> product_type == 9 ) {
2015-03-04 17:54:43 +01:00
$fk_parent_line = $result ;
}
2015-01-30 16:52:14 +01:00
}
2016-01-25 12:33:38 +01:00
// Add link between elements
2016-08-10 09:47:25 +02:00
2015-03-04 17:54:43 +01:00
// Hooks
$parameters = array ( 'objFrom' => $srcobject );
$reshook = $hookmanager -> executeHooks ( 'createFrom' , $parameters , $object , $action ); // Note that $action and $object may have been
2016-01-25 12:33:38 +01:00
2015-03-04 17:54:43 +01:00
if ( $reshook < 0 )
$error ++ ;
} else {
2017-10-16 08:47:05 +02:00
setEventMessages ( $srcobject -> error , $srcobject -> errors , 'errors' );
2015-01-30 16:52:14 +01:00
$error ++ ;
2015-03-04 17:54:43 +01:00
}
2015-01-30 16:52:14 +01:00
} else {
2017-10-16 08:47:05 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-30 16:52:14 +01:00
$error ++ ;
}
}
2015-03-04 17:54:43 +01:00
else
{
2017-10-16 08:47:05 +02:00
$id = $object -> create ( $user );
if ( $id < 0 )
{
$error ++ ;
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
2015-01-30 16:52:14 +01:00
}
2017-10-16 08:47:05 +02:00
}
if ( $error )
{
$langs -> load ( " errors " );
$db -> rollback ();
$action = 'create' ;
$_GET [ 'socid' ] = $_POST [ 'socid' ];
}
else
2015-02-28 03:11:15 +01:00
{
2017-10-16 08:47:05 +02:00
$db -> commit ();
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $id );
exit ;
}
}
2015-02-28 03:11:15 +01:00
}
2011-10-14 16:44:22 +02:00
2017-09-15 10:50:50 +02:00
if ( $action == 'webservice' && GETPOST ( 'mode' , 'alpha' ) == " send " && ! GETPOST ( 'cancel' , 'alpha' ))
2012-04-10 17:21:28 +02:00
{
2017-10-16 08:47:05 +02:00
$ws_url = $object -> thirdparty -> webservices_url ;
$ws_key = $object -> thirdparty -> webservices_key ;
$ws_user = GETPOST ( 'ws_user' , 'alpha' );
$ws_password = GETPOST ( 'ws_password' , 'alpha' );
$ws_entity = GETPOST ( 'ws_entity' , 'int' );
$ws_thirdparty = GETPOST ( 'ws_thirdparty' , 'int' );
// NS and Authentication parameters
$ws_ns = 'http://www.dolibarr.org/ns/' ;
$ws_authentication = array (
'dolibarrkey' => $ws_key ,
'sourceapplication' => 'DolibarrWebServiceClient' ,
'login' => $ws_user ,
'password' => $ws_password ,
'entity' => $ws_entity
);
//Is sync supplier web services module activated? and everything filled?
if ( empty ( $conf -> syncsupplierwebservices -> enabled )) {
setEventMessages ( $langs -> trans ( " WarningModuleNotActive " , $langs -> transnoentities ( " Module2650Name " )), null , 'mesgs' );
} else if ( empty ( $ws_url ) || empty ( $ws_key )) {
setEventMessages ( $langs -> trans ( " ErrorWebServicesFieldsRequired " ), null , 'errors' );
} else if ( empty ( $ws_user ) || empty ( $ws_password ) || empty ( $ws_thirdparty )) {
setEventMessages ( $langs -> trans ( " ErrorFieldsRequired " ), null , 'errors' );
}
else
{
//Create SOAP client and connect it to order
$soapclient_order = new nusoap_client ( $ws_url . " /webservices/server_order.php " );
$soapclient_order -> soap_defencoding = 'UTF-8' ;
$soapclient_order -> decodeUTF8 ( false );
//Create SOAP client and connect it to product/service
$soapclient_product = new nusoap_client ( $ws_url . " /webservices/server_productorservice.php " );
$soapclient_product -> soap_defencoding = 'UTF-8' ;
$soapclient_product -> decodeUTF8 ( false );
//Prepare the order lines from order
$order_lines = array ();
foreach ( $object -> lines as $line )
{
$ws_parameters = array ( 'authentication' => $ws_authentication , 'id' => '' , 'ref' => $line -> ref_supplier );
$result_product = $soapclient_product -> call ( " getProductOrService " , $ws_parameters , $ws_ns , '' );
if ( $result_product [ " result " ][ " result_code " ] == " OK " )
{
$order_lines [] = array (
'desc' => $line -> product_desc ,
'type' => $line -> product_type ,
'product_id' => $result_product [ " product " ][ " id " ],
'vat_rate' => $line -> tva_tx ,
'qty' => $line -> qty ,
'price' => $line -> price ,
'unitprice' => $line -> subprice ,
'total_net' => $line -> total_ht ,
'total_vat' => $line -> total_tva ,
'total' => $line -> total_ttc ,
'date_start' => $line -> date_start ,
'date_end' => $line -> date_end ,
);
}
}
//Prepare the order header
$order = array (
'thirdparty_id' => $ws_thirdparty ,
'date' => dol_print_date ( dol_now (), 'dayrfc' ),
'total_net' => $object -> total_ht ,
'total_var' => $object -> total_tva ,
'total' => $object -> total_ttc ,
'lines' => $order_lines
);
$ws_parameters = array ( 'authentication' => $ws_authentication , 'order' => $order );
$result_order = $soapclient_order -> call ( " createOrder " , $ws_parameters , $ws_ns , '' );
if ( empty ( $result_order [ " result " ][ " result_code " ])) //No result, check error str
{
setEventMessages ( $langs -> trans ( " SOAPError " ) . " ' " . $soapclient_order -> error_str . " ' " , null , 'errors' );
}
else if ( $result_order [ " result " ][ " result_code " ] != " OK " ) //Something went wrong
{
setEventMessages ( $langs -> trans ( " SOAPError " ) . " ' " . $result_order [ " result " ][ " result_code " ] . " ' - ' " . $result_order [ " result " ][ " result_label " ] . " ' " , null , 'errors' );
}
else
{
setEventMessages ( $langs -> trans ( " RemoteOrderRef " ) . " " . $result_order [ " ref " ], null , 'mesgs' );
}
}
2015-02-28 03:11:15 +01:00
}
2012-04-10 17:21:28 +02:00
2015-02-28 03:11:15 +01:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_CONTACTS_TAB ) && $user -> rights -> fournisseur -> commande -> creer )
2012-04-10 17:21:28 +02:00
{
2015-02-28 03:11:15 +01:00
if ( $action == 'addcontact' )
2012-04-10 17:21:28 +02:00
{
2015-02-28 03:11:15 +01:00
if ( $object -> id > 0 )
2012-04-10 17:21:28 +02:00
{
2015-02-28 03:11:15 +01:00
$contactid = ( GETPOST ( 'userid' ) ? GETPOST ( 'userid' ) : GETPOST ( 'contactid' ));
$result = $object -> add_contact ( $contactid , $_POST [ " type " ], $_POST [ " source " ]);
}
2012-04-10 17:21:28 +02:00
2015-02-28 03:11:15 +01:00
if ( $result >= 0 )
2012-04-10 17:21:28 +02:00
{
2015-02-28 03:11:15 +01:00
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id );
exit ;
2012-04-10 17:21:28 +02:00
}
else
{
2015-02-28 03:11:15 +01:00
if ( $object -> error == 'DB_ERROR_RECORD_ALREADY_EXISTS' )
{
$langs -> load ( " errors " );
2015-12-08 11:35:08 +01:00
setEventMessages ( $langs -> trans ( " ErrorThisContactIsAlreadyDefinedAsThisType " ), null , 'errors' );
2015-02-28 03:11:15 +01:00
}
else
{
2015-12-08 11:35:08 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-02-28 03:11:15 +01:00
}
2012-04-10 17:21:28 +02:00
}
}
2015-02-28 03:11:15 +01:00
// bascule du statut d'un contact
else if ( $action == 'swapstatut' && $object -> id > 0 )
2012-03-18 14:06:55 +01:00
{
2015-02-28 03:11:15 +01:00
$result = $object -> swapContactStatus ( GETPOST ( 'ligne' ));
2012-04-10 17:21:28 +02:00
}
2015-02-28 03:11:15 +01:00
// Efface un contact
else if ( $action == 'deletecontact' && $object -> id > 0 )
{
$result = $object -> delete_contact ( $_GET [ " lineid " ]);
if ( $result >= 0 )
{
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id );
exit ;
}
else {
dol_print_error ( $db );
}
2012-04-10 17:21:28 +02:00
}
2012-03-18 11:13:01 +01:00
}
}
2006-05-06 17:30:34 +02:00
2008-07-04 19:36:18 +02:00
/*
* View
*/
2006-05-06 17:30:34 +02:00
2011-11-08 10:18:45 +01:00
$form = new Form ( $db );
2008-01-20 14:53:02 +01:00
$formfile = new FormFile ( $db );
2008-11-16 02:54:33 +01:00
$formorder = new FormOrder ( $db );
2010-05-12 13:29:21 +02:00
$productstatic = new Product ( $db );
2016-09-19 13:57:50 +02:00
if ( ! empty ( $conf -> projet -> enabled )) { $formproject = new FormProjets ( $db ); }
2010-05-12 13:29:21 +02:00
2016-09-26 00:10:29 +02:00
$help_url = 'EN:Module_Suppliers_Orders|FR:CommandeFournisseur|ES:Módulo_Pedidos_a_proveedores' ;
llxHeader ( '' , $langs -> trans ( " Order " ), $help_url );
2006-05-06 17:30:34 +02:00
2008-05-09 11:08:41 +02:00
2010-05-12 13:29:21 +02:00
$now = dol_now ();
2015-01-30 16:52:14 +01:00
if ( $action == 'create' )
2013-03-12 15:06:38 +01:00
{
2015-09-24 18:33:48 +02:00
print load_fiche_titre ( $langs -> trans ( 'NewOrder' ));
2013-03-24 21:06:45 +01:00
2014-06-24 10:53:18 +02:00
dol_htmloutput_events ();
2013-03-24 21:06:45 +01:00
2018-04-10 14:14:16 +02:00
$currency_code = $conf -> currency ;
2013-03-12 15:06:38 +01:00
$societe = '' ;
if ( $socid > 0 )
{
$societe = new Societe ( $db );
$societe -> fetch ( $socid );
}
2013-11-17 23:25:25 +01:00
2015-03-04 17:54:43 +01:00
if ( ! empty ( $origin ) && ! empty ( $originid ))
{
2015-01-30 16:52:14 +01:00
// Parse element/subelement (ex: project_task)
$element = $subelement = $origin ;
if ( preg_match ( '/^([^_]+)_([^_]+)/i' , $origin , $regs )) {
$element = $regs [ 1 ];
$subelement = $regs [ 2 ];
}
2015-03-04 17:54:43 +01:00
2015-11-15 18:23:42 +01:00
$element = 'supplier_proposal' ;
$subelement = 'supplier_proposal' ;
2015-03-04 17:54:43 +01:00
2015-01-30 16:52:14 +01:00
dol_include_once ( '/' . $element . '/class/' . $subelement . '.class.php' );
2016-01-25 12:33:38 +01:00
$classname = 'SupplierProposal' ;
2015-01-30 16:52:14 +01:00
$objectsrc = new $classname ( $db );
$objectsrc -> fetch ( $originid );
if ( empty ( $objectsrc -> lines ) && method_exists ( $objectsrc , 'fetch_lines' ))
$objectsrc -> fetch_lines ();
$objectsrc -> fetch_thirdparty ();
// Replicate extrafields
$objectsrc -> fetch_optionals ( $originid );
$object -> array_options = $objectsrc -> array_options ;
$projectid = ( ! empty ( $objectsrc -> fk_project ) ? $objectsrc -> fk_project : '' );
$ref_client = ( ! empty ( $objectsrc -> ref_client ) ? $objectsrc -> ref_client : '' );
$soc = $objectsrc -> client ;
2016-11-15 10:43:03 +01:00
$cond_reglement_id = ( ! empty ( $objectsrc -> cond_reglement_id ) ? $objectsrc -> cond_reglement_id : ( ! empty ( $soc -> cond_reglement_id ) ? $soc -> cond_reglement_id : 0 ));
2015-01-30 16:52:14 +01:00
$mode_reglement_id = ( ! empty ( $objectsrc -> mode_reglement_id ) ? $objectsrc -> mode_reglement_id : ( ! empty ( $soc -> mode_reglement_id ) ? $soc -> mode_reglement_id : 0 ));
2017-10-16 08:47:05 +02:00
$fk_account = ( ! empty ( $objectsrc -> fk_account ) ? $objectsrc -> fk_account : ( ! empty ( $soc -> fk_account ) ? $soc -> fk_account : 0 ));
2015-01-30 16:52:14 +01:00
$availability_id = ( ! empty ( $objectsrc -> availability_id ) ? $objectsrc -> availability_id : ( ! empty ( $soc -> availability_id ) ? $soc -> availability_id : 0 ));
2017-10-16 08:47:05 +02:00
$shipping_method_id = ( ! empty ( $objectsrc -> shipping_method_id ) ? $objectsrc -> shipping_method_id : ( ! empty ( $soc -> shipping_method_id ) ? $soc -> shipping_method_id : 0 ));
2015-01-30 16:52:14 +01:00
$demand_reason_id = ( ! empty ( $objectsrc -> demand_reason_id ) ? $objectsrc -> demand_reason_id : ( ! empty ( $soc -> demand_reason_id ) ? $soc -> demand_reason_id : 0 ));
2018-02-27 16:30:39 +01:00
$remise_percent = ( ! empty ( $objectsrc -> remise_percent ) ? $objectsrc -> remise_percent : ( ! empty ( $soc -> remise_supplier_percent ) ? $soc -> remise_supplier_percent : 0 ));
2015-01-30 16:52:14 +01:00
$remise_absolue = ( ! empty ( $objectsrc -> remise_absolue ) ? $objectsrc -> remise_absolue : ( ! empty ( $soc -> remise_absolue ) ? $soc -> remise_absolue : 0 ));
$dateinvoice = empty ( $conf -> global -> MAIN_AUTOFILL_DATE ) ? - 1 : '' ;
$datedelivery = ( ! empty ( $objectsrc -> date_livraison ) ? $objectsrc -> date_livraison : '' );
2016-02-16 23:58:21 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled ))
{
if ( ! empty ( $objectsrc -> multicurrency_code )) $currency_code = $objectsrc -> multicurrency_code ;
2016-08-10 09:47:25 +02:00
if ( ! empty ( $conf -> global -> MULTICURRENCY_USE_ORIGIN_TX ) && ! empty ( $objectsrc -> multicurrency_tx )) $currency_tx = $objectsrc -> multicurrency_tx ;
2016-02-16 23:58:21 +01:00
}
2016-08-10 09:47:25 +02:00
2015-09-22 13:26:46 +02:00
$note_private = $object -> getDefaultCreateValueFor ( 'note_private' , ( ! empty ( $objectsrc -> note_private ) ? $objectsrc -> note_private : null ));
$note_public = $object -> getDefaultCreateValueFor ( 'note_public' , ( ! empty ( $objectsrc -> note_public ) ? $objectsrc -> note_public : null ));
2015-01-30 16:52:14 +01:00
// Object source contacts list
$srccontactslist = $objectsrc -> liste_contact ( - 1 , 'external' , 1 );
2015-03-04 17:54:43 +01:00
2015-01-30 16:52:14 +01:00
}
else
{
$cond_reglement_id = $societe -> cond_reglement_supplier_id ;
$mode_reglement_id = $societe -> mode_reglement_supplier_id ;
2016-08-10 09:47:25 +02:00
2016-12-10 23:57:26 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled ) && ! empty ( $societe -> multicurrency_code )) $currency_code = $societe -> multicurrency_code ;
2016-08-10 09:47:25 +02:00
2015-09-22 13:26:46 +02:00
$note_private = $object -> getDefaultCreateValueFor ( 'note_private' );
$note_public = $object -> getDefaultCreateValueFor ( 'note_public' );
2015-01-30 16:52:14 +01:00
}
2013-03-24 21:06:45 +01:00
2016-11-15 10:43:03 +01:00
// If not defined, set default value from constant
if ( empty ( $cond_reglement_id ) && ! empty ( $conf -> global -> SUPPLIER_ORDER_DEFAULT_PAYMENT_TERM_ID )) $cond_reglement_id = $conf -> global -> SUPPLIER_ORDER_DEFAULT_PAYMENT_TERM_ID ;
2017-01-17 11:53:08 +01:00
if ( empty ( $mode_reglement_id ) && ! empty ( $conf -> global -> SUPPLIER_ORDER_DEFAULT_PAYMENT_MODE_ID )) $mode_reglement_id = $conf -> global -> SUPPLIER_ORDER_DEFAULT_PAYMENT_MODE_ID ;
2016-11-15 10:43:03 +01:00
2013-03-12 15:06:38 +01:00
print '<form name="add" action="' . $_SERVER [ " PHP_SELF " ] . '" method="post">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="add">' ;
2015-01-30 16:52:14 +01:00
print '<input type="hidden" name="socid" value="' . $soc -> id . '">' . " \n " ;
2018-02-27 16:30:39 +01:00
print '<input type="hidden" name="remise_percent" value="' . $soc -> remise_supplier_percent . '">' ;
2015-01-30 16:52:14 +01:00
print '<input type="hidden" name="origin" value="' . $origin . '">' ;
print '<input type="hidden" name="originid" value="' . $originid . '">' ;
2016-02-16 23:58:21 +01:00
if ( ! empty ( $currency_tx )) print '<input type="hidden" name="originmulticurrency_tx" value="' . $currency_tx . '">' ;
2016-08-10 09:47:25 +02:00
2015-05-13 17:53:25 +02:00
dol_fiche_head ( '' );
2015-05-19 00:01:30 +02:00
2013-03-12 15:06:38 +01:00
print '<table class="border" width="100%">' ;
2013-03-24 21:06:45 +01:00
2013-03-12 15:06:38 +01:00
// Ref
2016-04-01 16:15:07 +02:00
print '<tr><td class="titlefieldcreate">' . $langs -> trans ( 'Ref' ) . '</td><td>' . $langs -> trans ( 'Draft' ) . '</td></tr>' ;
2013-03-24 21:06:45 +01:00
2013-03-12 15:06:38 +01:00
// Third party
print '<tr><td class="fieldrequired">' . $langs -> trans ( 'Supplier' ) . '</td>' ;
print '<td>' ;
2013-03-24 21:06:45 +01:00
2013-03-12 15:06:38 +01:00
if ( $socid > 0 )
{
print $societe -> getNomUrl ( 1 );
print '<input type="hidden" name="socid" value="' . $socid . '">' ;
}
else
{
2017-06-21 11:37:34 +02:00
print $form -> select_company (( empty ( $socid ) ? '' : $socid ), 'socid' , 's.fournisseur = 1' , 'SelectThirdParty' , 0 , 0 , null , 0 , 'minwidth300' );
2017-10-16 08:47:05 +02:00
// reload page to retrieve customer informations
if ( ! empty ( $conf -> global -> RELOAD_PAGE_ON_SUPPLIER_CHANGE ))
{
print ' < script type = " text/javascript " >
2017-01-31 10:15:04 +01:00
$ ( document ) . ready ( function () {
$ ( " #socid " ) . change ( function () {
var socid = $ ( this ) . val ();
// reload page
window . location . href = " '. $_SERVER["PHP_SELF"] .'?action=create&socid= " + socid ;
});
});
</ script > ' ;
2017-10-16 08:47:05 +02:00
}
print ' <a href="' . DOL_URL_ROOT . '/societe/card.php?action=create&client=0&fournisseur=1&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . '?action=create' ) . '">' . $langs -> trans ( " AddThirdParty " ) . '</a>' ;
2013-03-12 15:06:38 +01:00
}
print '</td>' ;
2013-03-24 21:06:45 +01:00
2018-03-05 10:58:19 +01:00
if ( $societe -> id > 0 )
2018-02-16 11:23:59 +01:00
{
// Discounts for third party
print '<tr><td>' . $langs -> trans ( 'Discounts' ) . '</td><td>' ;
2018-02-27 16:30:39 +01:00
2018-02-16 11:23:59 +01:00
$absolute_discount = $societe -> getAvailableDiscounts ( '' , '' , 0 , 1 );
2018-03-02 16:48:25 +01:00
$thirdparty = $societe ;
$discount_type = 1 ;
$backtopage = urlencode ( $_SERVER [ " PHP_SELF " ] . '?socid=' . $thirdparty -> id . '&action=' . $action . '&origin=' . GETPOST ( 'origin' ) . '&originid=' . GETPOST ( 'originid' ));
include DOL_DOCUMENT_ROOT . '/core/tpl/object_discounts.tpl.php' ;
2018-02-16 11:23:59 +01:00
print '</td></tr>' ;
}
2013-03-12 15:06:38 +01:00
// Ref supplier
print '<tr><td>' . $langs -> trans ( 'RefSupplier' ) . '</td><td><input name="refsupplier" type="text"></td>' ;
print '</tr>' ;
2013-03-24 21:06:45 +01:00
2013-03-12 15:06:38 +01:00
print '</td></tr>' ;
2013-11-17 23:25:25 +01:00
2013-07-30 16:21:39 +02:00
// Payment term
print '<tr><td class="nowrap">' . $langs -> trans ( 'PaymentConditionsShort' ) . '</td><td colspan="2">' ;
$form -> select_conditions_paiements ( isset ( $_POST [ 'cond_reglement_id' ]) ? $_POST [ 'cond_reglement_id' ] : $cond_reglement_id , 'cond_reglement_id' );
print '</td></tr>' ;
// Payment mode
print '<tr><td>' . $langs -> trans ( 'PaymentMode' ) . '</td><td colspan="2">' ;
$form -> select_types_paiements ( isset ( $_POST [ 'mode_reglement_id' ]) ? $_POST [ 'mode_reglement_id' ] : $mode_reglement_id , 'mode_reglement_id' );
print '</td></tr>' ;
2015-02-22 17:41:02 +01:00
// Planned delivery date
print '<tr><td>' ;
print $langs -> trans ( 'DateDeliveryPlanned' );
print '</td>' ;
print '<td>' ;
$usehourmin = 0 ;
if ( ! empty ( $conf -> global -> SUPPLIER_ORDER_USE_HOUR_FOR_DELIVERY_DATE )) $usehourmin = 1 ;
2016-03-25 15:53:44 +01:00
$form -> select_date ( $datelivraison ? $datelivraison :- 1 , 'liv_' , $usehourmin , $usehourmin , '' , " set " );
2015-02-22 17:41:02 +01:00
print '</td></tr>' ;
2013-04-16 01:13:20 +02:00
2017-10-16 08:47:05 +02:00
// Bank Account
if ( ! empty ( $conf -> global -> BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_ORDER ) && ! empty ( $conf -> banque -> enabled ))
{
$langs -> load ( " bank " );
print '<tr><td>' . $langs -> trans ( 'BankAccount' ) . '</td><td colspan="2">' ;
$form -> select_comptes ( $fk_account , 'fk_account' , 0 , '' , 1 );
print '</td></tr>' ;
}
2015-01-25 00:59:46 +01:00
2016-04-01 16:29:47 +02:00
// Project
if ( ! empty ( $conf -> projet -> enabled ))
{
$formproject = new FormProjets ( $db );
$langs -> load ( 'projects' );
print '<tr><td>' . $langs -> trans ( 'Project' ) . '</td><td colspan="2">' ;
$formproject -> select_projects (( empty ( $conf -> global -> PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS ) ? $societe -> id :- 1 ), $projectid , 'projectid' , 0 , 0 , 1 , 1 );
2017-12-12 10:37:51 +01:00
print ' <a href="' . DOL_URL_ROOT . '/projet/card.php?socid=' . $soc -> id . '&action=create&status=1&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . '?action=create&socid=' . $societe -> id ) . '">' . $langs -> trans ( " AddProject " ) . '</a>' ;
2016-04-01 16:29:47 +02:00
print '</td></tr>' ;
}
2017-10-16 08:47:05 +02:00
// Incoterms
2015-02-23 09:16:14 +01:00
if ( ! empty ( $conf -> incoterm -> enabled ))
{
print '<tr>' ;
2016-03-25 15:24:57 +01:00
print '<td><label for="incoterm_id">' . $form -> textwithpicto ( $langs -> trans ( " IncotermLabel " ), $object -> libelle_incoterms , 1 ) . '</label></td>' ;
2017-10-16 08:47:05 +02:00
print '<td colspan="3" class="maxwidthonsmartphone">' ;
print $form -> select_incoterms (( ! empty ( $object -> fk_incoterms ) ? $object -> fk_incoterms : '' ), ( ! empty ( $object -> location_incoterms ) ? $object -> location_incoterms : '' ));
2015-02-23 09:16:14 +01:00
print '</td></tr>' ;
}
2016-02-16 23:58:21 +01:00
// Multicurrency
if ( ! empty ( $conf -> multicurrency -> enabled ))
{
print '<tr>' ;
print '<td>' . fieldLabel ( 'Currency' , 'multicurrency_code' ) . '</td>' ;
2017-10-16 08:47:05 +02:00
print '<td colspan="3" class="maxwidthonsmartphone">' ;
print $form -> selectMultiCurrency ( $currency_code , 'multicurrency_code' );
2016-02-16 23:58:21 +01:00
print '</td></tr>' ;
}
2016-08-10 09:47:25 +02:00
2013-04-09 17:18:07 +02:00
print '<tr><td>' . $langs -> trans ( 'NotePublic' ) . '</td>' ;
print '<td>' ;
2017-09-25 00:16:52 +02:00
$doleditor = new DolEditor ( 'note_public' , isset ( $note_public ) ? $note_public : GETPOST ( 'note_public' , 'none' ), '' , 80 , 'dolibarr_notes' , 'In' , 0 , false , true , ROWS_3 , '90%' );
2013-04-09 17:18:07 +02:00
print $doleditor -> Create ( 1 );
print '</td>' ;
//print '<textarea name="note_public" wrap="soft" cols="60" rows="'.ROWS_5.'"></textarea>';
2013-03-12 15:06:38 +01:00
print '</tr>' ;
2013-03-24 21:06:45 +01:00
2013-04-09 17:18:07 +02:00
print '<tr><td>' . $langs -> trans ( 'NotePrivate' ) . '</td>' ;
print '<td>' ;
2017-09-25 00:16:52 +02:00
$doleditor = new DolEditor ( 'note_private' , isset ( $note_private ) ? $note_private : GETPOST ( 'note_private' , 'none' ), '' , 80 , 'dolibarr_notes' , 'In' , 0 , false , true , ROWS_3 , '90%' );
2013-04-09 17:18:07 +02:00
print $doleditor -> Create ( 1 );
print '</td>' ;
//print '<td><textarea name="note_private" wrap="soft" cols="60" rows="'.ROWS_5.'"></textarea></td>';
2013-03-12 15:06:38 +01:00
print '</tr>' ;
2013-03-24 21:06:45 +01:00
2015-01-30 16:52:14 +01:00
if ( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc )) {
print " \n <!-- " . $classname . " info --> " ;
print " \n " ;
print '<input type="hidden" name="amount" value="' . $objectsrc -> total_ht . '">' . " \n " ;
print '<input type="hidden" name="total" value="' . $objectsrc -> total_ttc . '">' . " \n " ;
print '<input type="hidden" name="tva" value="' . $objectsrc -> total_tva . '">' . " \n " ;
print '<input type="hidden" name="origin" value="' . $objectsrc -> element . '">' ;
print '<input type="hidden" name="originid" value="' . $objectsrc -> id . '">' ;
$newclassname = $classname ;
print '<tr><td>' . $langs -> trans ( $newclassname ) . '</td><td colspan="2">' . $objectsrc -> getNomUrl ( 1 ) . '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( 'TotalHT' ) . '</td><td colspan="2">' . price ( $objectsrc -> total_ht ) . '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( 'TotalVAT' ) . '</td><td colspan="2">' . price ( $objectsrc -> total_tva ) . " </td></tr> " ;
if ( $mysoc -> localtax1_assuj == " 1 " || $objectsrc -> total_localtax1 != 0 ) // Localtax1 RE
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> country_code ) . '</td><td colspan="2">' . price ( $objectsrc -> total_localtax1 ) . " </td></tr> " ;
}
2013-04-16 01:13:20 +02:00
2015-01-30 16:52:14 +01:00
if ( $mysoc -> localtax2_assuj == " 1 " || $objectsrc -> total_localtax2 != 0 ) // Localtax2 IRPF
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> country_code ) . '</td><td colspan="2">' . price ( $objectsrc -> total_localtax2 ) . " </td></tr> " ;
}
2013-04-16 01:13:20 +02:00
2015-01-30 16:52:14 +01:00
print '<tr><td>' . $langs -> trans ( 'TotalTTC' ) . '</td><td colspan="2">' . price ( $objectsrc -> total_ttc ) . " </td></tr> " ;
2016-08-10 09:47:25 +02:00
2016-02-16 23:58:21 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled ))
{
print '<tr><td>' . $langs -> trans ( 'MulticurrencyTotalHT' ) . '</td><td colspan="2">' . price ( $objectsrc -> multicurrency_total_ht ) . '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( 'MulticurrencyTotalVAT' ) . '</td><td colspan="2">' . price ( $objectsrc -> multicurrency_total_tva ) . '</td></tr>' ;
2016-08-10 09:47:25 +02:00
print '<tr><td>' . $langs -> trans ( 'MulticurrencyTotalTTC' ) . '</td><td colspan="2">' . price ( $objectsrc -> multicurrency_total_ttc ) . '</td></tr>' ;
2016-02-16 23:58:21 +01:00
}
2015-01-30 16:52:14 +01:00
}
2013-04-09 17:18:07 +02:00
2013-03-12 15:06:38 +01:00
// Other options
2017-10-16 08:47:05 +02:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'formObjectOptions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
print $hookmanager -> resPrint ;
2013-12-19 21:03:15 +01:00
2018-04-13 13:28:48 +02:00
if ( empty ( $reshook ))
2017-10-16 08:47:05 +02:00
{
2013-12-17 16:15:48 +01:00
print $object -> showOptionals ( $extrafields , 'edit' );
2017-10-16 08:47:05 +02:00
}
2013-12-19 21:03:15 +01:00
2013-03-12 15:06:38 +01:00
// Bouton "Create Draft"
2017-10-16 08:47:05 +02:00
print " </table> \n " ;
2013-03-24 21:06:45 +01:00
2017-10-16 08:47:05 +02:00
dol_fiche_end ();
2015-05-19 00:01:30 +02:00
2016-04-01 16:15:07 +02:00
print '<div class="center">' ;
print '<input type="submit" class="button" name="bouton" value="' . $langs -> trans ( 'CreateDraft' ) . '">' ;
print ' ' ;
print '<input type="button" class="button" value="' . $langs -> trans ( " Cancel " ) . '" onClick="javascript:history.go(-1)">' ;
print '</div>' ;
2013-03-24 21:06:45 +01:00
2013-03-12 15:06:38 +01:00
print " </form> \n " ;
2015-03-04 17:54:43 +01:00
2015-01-30 16:52:14 +01:00
// Show origin lines
2016-08-10 09:47:25 +02:00
if ( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc ))
2015-08-15 02:44:05 +02:00
{
2015-01-30 16:52:14 +01:00
$title = $langs -> trans ( 'ProductsAndServices' );
2016-02-16 23:58:21 +01:00
print load_fiche_titre ( $title );
2015-01-30 16:52:14 +01:00
print '<table class="noborder" width="100%">' ;
$objectsrc -> printOriginLinesList ();
print '</table>' ;
}
2013-03-12 15:06:38 +01:00
}
elseif ( ! empty ( $object -> id ))
2006-12-05 01:47:40 +01:00
{
2016-12-11 02:50:21 +01:00
$result = $object -> fetch ( $id , $ref );
2016-12-24 21:39:40 +01:00
2017-10-16 08:47:05 +02:00
$societe = new Fournisseur ( $db );
$result = $societe -> fetch ( $object -> socid );
if ( $result < 0 ) dol_print_error ( $db );
2014-05-13 13:55:08 +02:00
2014-09-26 13:23:54 +02:00
$author = new User ( $db );
$author -> fetch ( $object -> user_author_id );
2018-02-21 14:48:25 +01:00
$res = $object -> fetch_optionals ();
2014-09-26 13:23:54 +02:00
2017-06-07 16:44:04 +02:00
2012-12-01 15:45:05 +01:00
$head = ordersupplier_prepare_head ( $object );
2011-10-14 16:44:22 +02:00
2012-12-01 15:45:05 +01:00
$title = $langs -> trans ( " SupplierOrder " );
2017-03-19 15:37:07 +01:00
dol_fiche_head ( $head , 'card' , $title , - 1 , 'order' );
2013-12-19 21:03:15 +01:00
2015-02-28 04:59:27 +01:00
$formconfirm = '' ;
2016-10-04 12:53:18 +02:00
// Confirmation de la suppression de la commande
2012-12-01 15:45:05 +01:00
if ( $action == 'delete' )
{
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'DeleteOrder' ), $langs -> trans ( 'ConfirmDeleteOrder' ), 'confirm_delete' , '' , 0 , 2 );
2013-11-17 23:25:25 +01:00
2012-12-01 15:45:05 +01:00
}
2011-11-09 22:10:58 +01:00
2012-12-01 15:45:05 +01:00
// Clone confirmation
if ( $action == 'clone' )
{
// Create an array for form
$formquestion = array (
//array('type' => 'checkbox', 'name' => 'update_prices', 'label' => $langs->trans("PuttingPricesUpToDate"), 'value' => 1)
);
// Paiement incomplet. On demande si motif = escompte ou autre
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'CloneOrder' ), $langs -> trans ( 'ConfirmCloneOrder' , $object -> ref ), 'confirm_clone' , $formquestion , 'yes' , 1 );
2013-11-17 23:25:25 +01:00
2012-12-01 15:45:05 +01:00
}
2011-10-14 16:44:22 +02:00
2016-10-04 12:53:18 +02:00
// Confirmation de la validation
2012-12-01 15:45:05 +01:00
if ( $action == 'valid' )
{
$object -> date_commande = dol_now ();
2011-10-14 16:44:22 +02:00
2012-12-01 15:45:05 +01:00
// We check if number is temporary number
2016-08-10 09:47:25 +02:00
if ( preg_match ( '/^[\(]?PROV/i' , $object -> ref ) || empty ( $object -> ref )) // empty should not happened, but when it occurs, the test save life
2015-10-06 16:38:27 +02:00
{
2017-10-16 08:47:05 +02:00
$newref = $object -> getNextNumRef ( $object -> thirdparty );
2015-10-06 16:38:27 +02:00
}
2012-12-01 15:45:05 +01:00
else $newref = $object -> ref ;
2011-10-14 16:44:22 +02:00
2015-01-25 00:59:46 +01:00
if ( $newref < 0 )
2012-12-01 15:45:05 +01:00
{
2015-01-25 00:59:46 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
$action = '' ;
2012-12-01 15:45:05 +01:00
}
2015-01-25 00:59:46 +01:00
else
{
$text = $langs -> trans ( 'ConfirmValidateOrder' , $newref );
if ( ! empty ( $conf -> notification -> enabled ))
{
require_once DOL_DOCUMENT_ROOT . '/core/class/notify.class.php' ;
$notify = new Notify ( $db );
$text .= '<br>' ;
2015-03-23 15:16:37 +01:00
$text .= $notify -> confirmMessage ( 'ORDER_SUPPLIER_VALIDATE' , $object -> socid , $object );
2015-01-25 00:59:46 +01:00
}
2011-10-14 16:44:22 +02:00
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'ValidateOrder' ), $text , 'confirm_valid' , '' , 0 , 1 );
2015-01-25 00:59:46 +01:00
}
2012-12-01 15:45:05 +01:00
}
2011-10-14 16:44:22 +02:00
2016-10-04 12:53:18 +02:00
// Confirm approval
2015-04-01 21:00:51 +02:00
if ( $action == 'approve' || $action == 'approve2' )
2012-12-01 15:45:05 +01:00
{
2017-10-16 08:47:05 +02:00
$qualified_for_stock_change = 0 ;
if ( empty ( $conf -> global -> STOCK_SUPPORTS_SERVICES ))
{
$qualified_for_stock_change = $object -> hasProductsOrServices ( 2 );
}
else
{
$qualified_for_stock_change = $object -> hasProductsOrServices ( 1 );
}
2014-06-23 11:47:07 +02:00
2012-12-01 15:45:05 +01:00
$formquestion = array ();
2014-06-23 11:47:07 +02:00
if ( ! empty ( $conf -> stock -> enabled ) && ! empty ( $conf -> global -> STOCK_CALCULATE_ON_SUPPLIER_VALIDATE_ORDER ) && $qualified_for_stock_change )
2012-12-01 15:45:05 +01:00
{
$langs -> load ( " stocks " );
require_once DOL_DOCUMENT_ROOT . '/product/class/html.formproduct.class.php' ;
$formproduct = new FormProduct ( $db );
2018-06-28 11:53:52 +02:00
$forcecombo = 0 ;
if ( $conf -> browser -> name == 'ie' ) $forcecombo = 1 ; // There is a bug in IE10 that make combo inside popup crazy
2012-12-01 15:45:05 +01:00
$formquestion = array (
2018-06-28 12:05:02 +02:00
//'text' => $langs->trans("ConfirmClone"),
//array('type' => 'checkbox', 'name' => 'clone_content', 'label' => $langs->trans("CloneMainAttributes"), 'value' => 1),
//array('type' => 'checkbox', 'name' => 'update_prices', 'label' => $langs->trans("PuttingPricesUpToDate"), 'value' => 1),
2018-06-28 11:53:52 +02:00
array ( 'type' => 'other' , 'name' => 'idwarehouse' , 'label' => $langs -> trans ( " SelectWarehouseForStockIncrease " ), 'value' => $formproduct -> selectWarehouses ( GETPOST ( 'idwarehouse' , 'int' ), 'idwarehouse' , '' , 1 , 0 , 0 , '' , 0 , $forcecombo ))
2012-12-01 15:45:05 +01:00
);
}
2015-03-23 14:52:47 +01:00
$text = $langs -> trans ( " ConfirmApproveThisOrder " , $object -> ref );
if ( ! empty ( $conf -> notification -> enabled ))
{
require_once DOL_DOCUMENT_ROOT . '/core/class/notify.class.php' ;
$notify = new Notify ( $db );
$text .= '<br>' ;
$text .= $notify -> confirmMessage ( 'ORDER_SUPPLIER_APPROVE' , $object -> socid , $object );
}
2011-10-14 16:44:22 +02:00
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id , $langs -> trans ( " ApproveThisOrder " ), $text , " confirm_ " . $action , $formquestion , 1 , 1 , 240 );
2012-12-01 15:45:05 +01:00
}
2011-10-14 16:44:22 +02:00
2016-10-04 12:53:18 +02:00
// Confirmation de la desapprobation
2012-12-01 15:45:05 +01:00
if ( $action == 'refuse' )
{
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ 'PHP_SELF' ] . " ?id= $object->id " , $langs -> trans ( " DenyingThisOrder " ), $langs -> trans ( " ConfirmDenyingThisOrder " , $object -> ref ), " confirm_refuse " , '' , 0 , 1 );
2013-11-17 23:25:25 +01:00
2012-12-01 15:45:05 +01:00
}
2012-04-10 17:21:28 +02:00
2016-10-04 12:53:18 +02:00
// Confirmation de l'annulation
2012-12-01 15:45:05 +01:00
if ( $action == 'cancel' )
{
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ 'PHP_SELF' ] . " ?id= $object->id " , $langs -> trans ( " Cancel " ), $langs -> trans ( " ConfirmCancelThisOrder " , $object -> ref ), " confirm_cancel " , '' , 0 , 1 );
2013-11-17 23:25:25 +01:00
2012-12-01 15:45:05 +01:00
}
2011-10-14 16:44:22 +02:00
2016-10-04 12:53:18 +02:00
// Confirmation de l'envoi de la commande
2012-12-01 15:45:05 +01:00
if ( $action == 'commande' )
{
2015-06-30 10:49:15 +02:00
$date_com = dol_mktime ( GETPOST ( 'rehour' ), GETPOST ( 'remin' ), GETPOST ( 'resec' ), GETPOST ( " remonth " ), GETPOST ( " reday " ), GETPOST ( " reyear " ));
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> 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 " , '' , 0 , 2 );
2013-11-17 23:25:25 +01:00
2012-12-01 15:45:05 +01:00
}
Add: hooks and triggers for a lot of core modules (action/calendrier, deplacement, dons, tva, contact/tiers, contrat, product lines, expedition, fournisseur commandes et factures, fiche intervention, projet et taches)
Signed-off-by: Stephen L. <lrq3000@gmail.com>
2012-08-14 15:50:45 +02:00
2015-02-28 04:59:27 +01:00
// Confirmation to delete line
if ( $action == 'ask_deleteline' )
2012-12-01 15:45:05 +01:00
{
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&lineid=' . $lineid , $langs -> trans ( 'DeleteProductLine' ), $langs -> trans ( 'ConfirmDeleteProductLine' ), 'confirm_deleteline' , '' , 0 , 1 );
2015-02-28 04:59:27 +01:00
}
2013-11-17 23:25:25 +01:00
2015-03-23 15:16:37 +01:00
if ( ! $formconfirm )
{
2015-02-28 04:59:27 +01:00
$parameters = array ( 'lineid' => $lineid );
2015-03-18 14:31:37 +01:00
$reshook = $hookmanager -> executeHooks ( 'formConfirm' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
if ( empty ( $reshook )) $formconfirm .= $hookmanager -> resPrint ;
elseif ( $reshook > 0 ) $formconfirm = $hookmanager -> resPrint ;
2012-12-01 15:45:05 +01:00
}
2011-10-14 16:44:22 +02:00
2015-02-28 04:59:27 +01:00
// Print form confirm
print $formconfirm ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
// Supplier order card
2012-12-01 15:45:05 +01:00
2017-10-03 14:50:52 +02:00
$linkback = '<a href="' . DOL_URL_ROOT . '/fourn/commande/list.php?restore_lastsearch_values=1' . ( ! empty ( $socid ) ? '&socid=' . $socid : '' ) . '">' . $langs -> trans ( " BackToList " ) . '</a>' ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
$morehtmlref = '<div class="refidno">' ;
2012-12-01 15:45:05 +01:00
// Ref supplier
2016-09-19 13:57:50 +02:00
$morehtmlref .= $form -> editfieldkey ( " RefSupplier " , 'ref_supplier' , $object -> ref_supplier , $object , $user -> rights -> fournisseur -> commande -> creer , 'string' , '' , 0 , 1 );
$morehtmlref .= $form -> editfieldval ( " RefSupplier " , 'ref_supplier' , $object -> ref_supplier , $object , $user -> rights -> fournisseur -> commande -> creer , 'string' , '' , null , null , '' , 1 );
// Thirdparty
$morehtmlref .= '<br>' . $langs -> trans ( 'ThirdParty' ) . ' : ' . $object -> thirdparty -> getNomUrl ( 1 );
2018-09-16 12:27:56 +02:00
if ( empty ( $conf -> global -> MAIN_DISABLE_OTHER_LINK ) && $object -> thirdparty -> id > 0 ) $morehtmlref .= ' (<a href="' . DOL_URL_ROOT . '/fourn/commande/list.php?socid=' . $object -> thirdparty -> id . '&search_company=' . urlencode ( $object -> thirdparty -> name ) . '">' . $langs -> trans ( " OtherOrders " ) . '</a>)' ;
2016-09-19 13:57:50 +02:00
// Project
if ( ! empty ( $conf -> projet -> enabled ))
{
2017-10-16 08:47:05 +02:00
$langs -> load ( " projects " );
$morehtmlref .= '<br>' . $langs -> trans ( 'Project' ) . ' ' ;
if ( $user -> rights -> fournisseur -> commande -> creer )
{
if ( $action != 'classify' )
$morehtmlref .= '<a href="' . $_SERVER [ 'PHP_SELF' ] . '?action=classify&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetProject' )) . '</a> : ' ;
if ( $action == 'classify' ) {
//$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
$morehtmlref .= '<form method="post" action="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '">' ;
$morehtmlref .= '<input type="hidden" name="action" value="classin">' ;
$morehtmlref .= '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
$morehtmlref .= $formproject -> select_projects (( empty ( $conf -> global -> PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS ) ? $object -> socid :- 1 ), $object -> fk_project , 'projectid' , $maxlength , 0 , 1 , 0 , 1 , 0 , 0 , '' , 1 );
$morehtmlref .= '<input type="submit" class="button valignmiddle" value="' . $langs -> trans ( " Modify " ) . '">' ;
$morehtmlref .= '</form>' ;
} else {
$morehtmlref .= $form -> form_project ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> socid , $object -> fk_project , 'none' , 0 , 0 , 0 , 1 );
}
} else {
if ( ! empty ( $object -> fk_project )) {
$proj = new Project ( $db );
$proj -> fetch ( $object -> fk_project );
$morehtmlref .= '<a href="' . DOL_URL_ROOT . '/projet/card.php?id=' . $object -> fk_project . '" title="' . $langs -> trans ( 'ShowProject' ) . '">' ;
$morehtmlref .= $proj -> ref ;
$morehtmlref .= '</a>' ;
} else {
$morehtmlref .= '' ;
}
}
2016-09-19 13:57:50 +02:00
}
$morehtmlref .= '</div>' ;
2017-06-07 16:44:04 +02:00
dol_banner_tab ( $object , 'ref' , $linkback , 1 , 'ref' , 'ref' , $morehtmlref );
2012-12-01 15:45:05 +01:00
2016-09-19 13:57:50 +02:00
print '<div class="fichecenter">' ;
print '<div class="fichehalfleft">' ;
print '<div class="underbanner clearboth"></div>' ;
2017-06-07 16:44:04 +02:00
2012-12-01 15:45:05 +01:00
print '<table class="border" width="100%">' ;
// Date
if ( $object -> methode_commande_id > 0 )
{
2016-09-19 13:57:50 +02:00
print '<tr><td class="titlefield">' . $langs -> trans ( " Date " ) . '</td><td>' ;
2012-12-01 15:45:05 +01:00
if ( $object -> date_commande )
{
print dol_print_date ( $object -> date_commande , " dayhourtext " ) . " \n " ;
}
print " </td></tr> " ;
2012-03-22 23:52:02 +01:00
2012-12-01 15:45:05 +01:00
if ( $object -> methode_commande )
{
2016-09-19 13:57:50 +02:00
print '<tr><td>' . $langs -> trans ( " Method " ) . '</td><td>' . $object -> getInputMethod () . '</td></tr>' ;
2012-12-01 15:45:05 +01:00
}
}
2012-04-10 17:21:28 +02:00
2012-12-01 15:45:05 +01:00
// Author
2016-09-19 13:57:50 +02:00
print '<tr><td class="titlefield">' . $langs -> trans ( " AuthorRequest " ) . '</td>' ;
2016-12-09 11:16:04 +01:00
print '<td>' . $author -> getNomUrl ( 1 , '' , 0 , 0 , 0 ) . '</td>' ;
2012-12-01 15:45:05 +01:00
print '</tr>' ;
2018-03-05 10:58:19 +01:00
// Relative and absolute discounts
if ( ! empty ( $conf -> global -> FACTURE_DEPOSITS_ARE_JUST_PAYMENTS )) {
$filterabsolutediscount = " fk_invoice_supplier_source IS NULL " ; // If we want deposit to be substracted to payments only and not to total of final invoice
$filtercreditnote = " fk_invoice_supplier_source IS NOT NULL " ; // If we want deposit to be substracted to payments only and not to total of final invoice
} else {
$filterabsolutediscount = " fk_invoice_supplier_source IS NULL OR (description LIKE '(DEPOSIT)%' AND description NOT LIKE '(EXCESS PAID)%') " ;
$filtercreditnote = " fk_invoice_supplier_source IS NOT NULL AND (description NOT LIKE '(DEPOSIT)%' OR description LIKE '(EXCESS PAID)%') " ;
}
2018-02-27 16:30:39 +01:00
2018-03-05 10:58:19 +01:00
$absolute_discount = $societe -> getAvailableDiscounts ( '' , $filterabsolutediscount , 0 , 1 );
$absolute_creditnote = $societe -> getAvailableDiscounts ( '' , $filtercreditnote , 0 , 1 );
$absolute_discount = price2num ( $absolute_discount , 'MT' );
$absolute_creditnote = price2num ( $absolute_creditnote , 'MT' );
2018-03-02 16:48:25 +01:00
2018-03-05 10:58:19 +01:00
print '<tr><td class="titlefield">' . $langs -> trans ( 'Discounts' ) . '</td><td>' ;
2018-03-02 16:48:25 +01:00
2018-03-05 10:58:19 +01:00
$thirdparty = $societe ;
$discount_type = 1 ;
$backtopage = urlencode ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id );
include DOL_DOCUMENT_ROOT . '/core/tpl/object_discounts.tpl.php' ;
2018-03-02 16:48:25 +01:00
2018-03-05 10:58:19 +01:00
print '</td></tr>' ;
2018-02-16 11:23:59 +01:00
2012-12-01 15:45:05 +01:00
// Conditions de reglement par defaut
$langs -> load ( 'bills' );
2013-07-19 14:23:42 +02:00
print '<tr><td class="nowrap">' ;
print '<table width="100%" class="nobordernopadding"><tr><td class="nowrap">' ;
2012-12-01 15:45:05 +01:00
print $langs -> trans ( 'PaymentConditions' );
print '<td>' ;
if ( $action != 'editconditions' ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editconditions&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetConditions' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
2016-09-19 13:57:50 +02:00
print '</td><td>' ;
2012-12-01 15:45:05 +01:00
if ( $action == 'editconditions' )
{
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'cond_reglement_id' );
}
else
{
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'none' );
}
print " </td> " ;
print '</tr>' ;
// Mode of payment
$langs -> load ( 'bills' );
2013-07-19 14:23:42 +02:00
print '<tr><td class="nowrap">' ;
print '<table width="100%" class="nobordernopadding"><tr><td class="nowrap">' ;
2012-12-01 15:45:05 +01:00
print $langs -> trans ( 'PaymentMode' );
print '</td>' ;
if ( $action != 'editmode' ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editmode&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetMode' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
2016-09-19 13:57:50 +02:00
print '</td><td>' ;
2012-12-01 15:45:05 +01:00
if ( $action == 'editmode' )
{
$form -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> mode_reglement_id , 'mode_reglement_id' );
}
else
{
$form -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> mode_reglement_id , 'none' );
}
print '</td></tr>' ;
2016-08-10 09:47:25 +02:00
2016-02-16 23:58:21 +01:00
// Multicurrency
if ( ! empty ( $conf -> multicurrency -> enabled ))
{
// Multicurrency code
print '<tr>' ;
2016-09-19 13:57:50 +02:00
print '<td>' ;
2016-02-16 23:58:21 +01:00
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print fieldLabel ( 'Currency' , 'multicurrency_code' );
print '</td>' ;
if ( $action != 'editmulticurrencycode' && ! empty ( $object -> brouillon ))
print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editmulticurrencycode&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetMultiCurrencyCode' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
2016-09-19 13:57:50 +02:00
print '</td><td>' ;
2016-02-16 23:58:21 +01:00
if ( $action == 'editmulticurrencycode' ) {
$form -> form_multicurrency_code ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_code , 'multicurrency_code' );
} else {
$form -> form_multicurrency_code ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_code , 'none' );
}
print '</td></tr>' ;
2016-08-10 09:47:25 +02:00
2016-02-16 23:58:21 +01:00
// Multicurrency rate
print '<tr>' ;
2016-09-19 13:57:50 +02:00
print '<td>' ;
2016-02-16 23:58:21 +01:00
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
2016-07-30 16:41:10 +02:00
print fieldLabel ( 'CurrencyRate' , 'multicurrency_tx' );
2016-02-16 23:58:21 +01:00
print '</td>' ;
2017-03-23 12:23:32 +01:00
if ( $action != 'editmulticurrencyrate' && ! empty ( $object -> brouillon ) && $object -> multicurrency_code && $object -> multicurrency_code != $conf -> currency )
2016-02-16 23:58:21 +01:00
print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editmulticurrencyrate&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetMultiCurrencyCode' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
2016-09-19 13:57:50 +02:00
print '</td><td>' ;
2016-12-11 02:50:21 +01:00
if ( $action == 'editmulticurrencyrate' || $action == 'actualizemulticurrencyrate' ) {
if ( $action == 'actualizemulticurrencyrate' ) {
list ( $object -> fk_multicurrency , $object -> multicurrency_tx ) = MultiCurrency :: getIdAndTxFromCode ( $object -> db , $object -> multicurrency_code );
}
2016-04-12 14:10:27 +02:00
$form -> form_multicurrency_rate ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_tx , 'multicurrency_tx' , $object -> multicurrency_code );
2016-02-16 23:58:21 +01:00
} else {
2016-04-12 14:10:27 +02:00
$form -> form_multicurrency_rate ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_tx , 'none' , $object -> multicurrency_code );
2017-03-23 12:23:32 +01:00
if ( $object -> statut == $object :: STATUS_DRAFT && $object -> multicurrency_code && $object -> multicurrency_code != $conf -> currency ) {
2016-12-11 02:50:21 +01:00
print '<div class="inline-block"> ' ;
print '<a href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=actualizemulticurrencyrate">' . $langs -> trans ( " ActualizeCurrency " ) . '</a>' ;
print '</div>' ;
}
2016-02-16 23:58:21 +01:00
}
print '</td></tr>' ;
}
2012-12-01 15:45:05 +01:00
2017-10-16 08:47:05 +02:00
// Bank Account
2014-11-30 15:24:39 +01:00
if ( ! empty ( $conf -> global -> BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_ORDER ) && ! empty ( $conf -> banque -> enabled ))
2014-11-28 00:34:03 +01:00
{
2017-10-16 08:47:05 +02:00
print '<tr><td class="nowrap">' ;
print '<table width="100%" class="nobordernopadding"><tr><td class="nowrap">' ;
print $langs -> trans ( 'BankAccount' );
print '<td>' ;
if ( $action != 'editbankaccount' && $user -> rights -> fournisseur -> commande -> creer )
print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editbankaccount&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetBankAccount' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td>' ;
if ( $action == 'editbankaccount' ) {
$form -> formSelectAccount ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> fk_account , 'fk_account' , 1 );
} else {
$form -> formSelectAccount ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> fk_account , 'none' );
}
print '</td>' ;
print '</tr>' ;
2014-11-28 00:34:03 +01:00
}
2015-01-25 00:59:46 +01:00
2012-12-01 15:45:05 +01:00
// Delivery date planed
2014-09-24 18:15:20 +02:00
print '<tr><td>' ;
2012-12-01 15:45:05 +01:00
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'DateDeliveryPlanned' );
print '</td>' ;
if ( $action != 'editdate_livraison' ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editdate_livraison&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetDeliveryDate' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
2016-09-19 13:57:50 +02:00
print '</td><td>' ;
2012-12-01 15:45:05 +01:00
if ( $action == 'editdate_livraison' )
{
print '<form name="setdate_livraison" action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '" method="post">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="setdate_livraison">' ;
2015-02-17 17:21:41 +01:00
$usehourmin = 0 ;
if ( ! empty ( $conf -> global -> SUPPLIER_ORDER_USE_HOUR_FOR_DELIVERY_DATE )) $usehourmin = 1 ;
2016-03-25 15:53:44 +01:00
$form -> select_date ( $object -> date_livraison ? $object -> date_livraison :- 1 , 'liv_' , $usehourmin , $usehourmin , '' , " setdate_livraison " );
2012-12-01 15:45:05 +01:00
print '<input type="submit" class="button" value="' . $langs -> trans ( 'Modify' ) . '">' ;
print '</form>' ;
}
else
{
2015-02-17 17:21:41 +01:00
$usehourmin = 'day' ;
if ( ! empty ( $conf -> global -> SUPPLIER_ORDER_USE_HOUR_FOR_DELIVERY_DATE )) $usehourmin = 'dayhour' ;
print $object -> date_livraison ? dol_print_date ( $object -> date_livraison , $usehourmin ) : ' ' ;
2016-05-24 18:40:47 +02:00
if ( $object -> hasDelay () && ! empty ( $object -> date_livraison )) {
2017-10-16 08:47:05 +02:00
print ' ' . img_picto ( $langs -> trans ( " Late " ) . ' : ' . $object -> showDelay (), " warning " );
2016-05-24 18:40:47 +02:00
}
2012-12-01 15:45:05 +01:00
}
2014-09-24 18:15:20 +02:00
print '</td></tr>' ;
2011-10-14 16:44:22 +02:00
2015-04-08 13:00:03 +02:00
// Delivery delay (in days)
2015-02-06 16:07:22 +01:00
print '<tr>' ;
print '<td>' . $langs -> trans ( 'NbDaysToDelivery' ) . ' ' . img_picto ( $langs -> trans ( 'DescNbDaysToDelivery' ), 'info' , 'style="cursor:help"' ) . '</td>' ;
2015-02-06 16:39:54 +01:00
print '<td>' . $object -> getMaxDeliveryTimeDay ( $langs ) . '</td>' ;
2015-02-06 16:07:22 +01:00
print '</tr>' ;
2015-02-17 19:49:17 +01:00
2015-02-23 09:16:14 +01:00
// Incoterms
if ( ! empty ( $conf -> incoterm -> enabled ))
2015-03-04 23:03:29 +01:00
{
2015-02-23 09:16:14 +01:00
print '<tr><td>' ;
2017-10-16 08:47:05 +02:00
print '<table width="100%" class="nobordernopadding"><tr><td>' ;
print $langs -> trans ( 'IncotermLabel' );
print '<td><td align="right">' ;
if ( $user -> rights -> fournisseur -> commande -> creer ) print '<a href="' . DOL_URL_ROOT . '/fourn/commande/card.php?id=' . $object -> id . '&action=editincoterm">' . img_edit () . '</a>' ;
else print ' ' ;
print '</td></tr></table>' ;
print '</td>' ;
print '<td>' ;
2015-02-23 09:16:14 +01:00
if ( $action != 'editincoterm' )
{
2016-03-25 15:24:57 +01:00
print $form -> textwithpicto ( $object -> display_incoterms (), $object -> libelle_incoterms , 1 );
2015-02-23 09:16:14 +01:00
}
2015-03-04 23:03:29 +01:00
else
2015-02-23 09:16:14 +01:00
{
print $form -> select_incoterms (( ! empty ( $object -> fk_incoterms ) ? $object -> fk_incoterms : '' ), ( ! empty ( $object -> location_incoterms ) ? $object -> location_incoterms : '' ), $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id );
}
2017-10-16 08:47:05 +02:00
print '</td></tr>' ;
2015-02-23 09:16:14 +01:00
}
2015-03-04 23:03:29 +01:00
2014-10-14 17:00:06 +02:00
// Other attributes
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php' ;
2013-12-19 21:03:15 +01:00
2016-09-19 13:57:50 +02:00
print '</table>' ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
print '</div>' ;
print '<div class="fichehalfright">' ;
print '<div class="ficheaddleft">' ;
print '<div class="underbanner clearboth"></div>' ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
print '<table class="border centpercent">' ;
2017-03-19 15:37:07 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled ))
{
2017-10-16 08:47:05 +02:00
// Multicurrency Amount HT
print '<tr><td class="titlefieldmiddle">' . fieldLabel ( 'MulticurrencyAmountHT' , 'multicurrency_total_ht' ) . '</td>' ;
print '<td class="nowrap">' . price ( $object -> multicurrency_total_ht , '' , $langs , 0 , - 1 , - 1 , ( ! empty ( $object -> multicurrency_code ) ? $object -> multicurrency_code : $conf -> currency )) . '</td>' ;
print '</tr>' ;
2017-06-07 16:44:04 +02:00
2017-10-16 08:47:05 +02:00
// Multicurrency Amount VAT
print '<tr><td>' . fieldLabel ( 'MulticurrencyAmountVAT' , 'multicurrency_total_tva' ) . '</td>' ;
print '<td class="nowrap">' . price ( $object -> multicurrency_total_tva , '' , $langs , 0 , - 1 , - 1 , ( ! empty ( $object -> multicurrency_code ) ? $object -> multicurrency_code : $conf -> currency )) . '</td>' ;
print '</tr>' ;
2017-06-07 16:44:04 +02:00
2017-10-16 08:47:05 +02:00
// Multicurrency Amount TTC
print '<tr><td>' . fieldLabel ( 'MulticurrencyAmountTTC' , 'multicurrency_total_ttc' ) . '</td>' ;
print '<td class="nowrap">' . price ( $object -> multicurrency_total_ttc , '' , $langs , 0 , - 1 , - 1 , ( ! empty ( $object -> multicurrency_code ) ? $object -> multicurrency_code : $conf -> currency )) . '</td>' ;
print '</tr>' ;
2017-03-19 15:37:07 +01:00
}
2017-06-07 16:44:04 +02:00
2015-04-03 00:28:35 +02:00
// Total
2018-01-20 20:11:30 +01:00
$alert = '' ;
2018-09-06 17:37:02 +02:00
if ( ! empty ( $conf -> global -> ORDER_MANAGE_MIN_AMOUNT ) && $object -> total_ht < $object -> thirdparty -> supplier_order_min_amount ) {
2018-01-20 20:11:30 +01:00
$alert = ' ' . img_warning ( $langs -> trans ( 'OrderMinAmount' ) . ': ' . price ( $object -> thirdparty -> supplier_order_min_amount ));
}
2017-03-19 15:37:07 +01:00
print '<tr><td class="titlefieldmiddle">' . $langs -> trans ( " AmountHT " ) . '</td>' ;
2018-01-20 20:11:30 +01:00
print '<td>' . price ( $object -> total_ht , '' , $langs , 1 , - 1 , - 1 , $conf -> currency ) . $alert . '</td>' ;
2015-03-10 19:31:04 +01:00
print '</tr>' ;
2011-10-14 16:44:22 +02:00
2015-04-03 00:28:35 +02:00
// Total VAT
2016-09-19 13:57:50 +02:00
print '<tr><td>' . $langs -> trans ( " AmountVAT " ) . '</td><td>' . price ( $object -> total_tva , '' , $langs , 1 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2015-03-10 19:31:04 +01:00
print '</tr>' ;
2011-10-14 16:44:22 +02:00
2012-12-01 15:45:05 +01:00
// Amount Local Taxes
2014-07-04 16:48:42 +02:00
if ( $mysoc -> localtax1_assuj == " 1 " || $object -> total_localtax1 != 0 ) //Localtax1
2012-12-01 15:45:05 +01:00
{
2014-07-04 10:25:05 +02:00
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> country_code ) . '</td>' ;
2016-09-19 13:57:50 +02:00
print '<td>' . price ( $object -> total_localtax1 , '' , $langs , 1 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2015-03-10 19:31:04 +01:00
print '</tr>' ;
2013-01-05 09:43:40 +01:00
}
2014-07-04 16:48:42 +02:00
if ( $mysoc -> localtax2_assuj == " 1 " || $object -> total_localtax2 != 0 ) //Localtax2
2013-01-05 09:43:40 +01:00
{
2014-07-04 10:25:05 +02:00
print '<tr><td>' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> country_code ) . '</td>' ;
2016-09-19 13:57:50 +02:00
print '<td>' . price ( $object -> total_localtax2 , '' , $langs , 1 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2015-03-10 19:31:04 +01:00
print '</tr>' ;
2012-12-01 15:45:05 +01:00
}
2014-07-04 14:14:40 +02:00
2015-04-03 00:28:35 +02:00
// Total TTC
2016-09-19 13:57:50 +02:00
print '<tr><td>' . $langs -> trans ( " AmountTTC " ) . '</td><td>' . price ( $object -> total_ttc , '' , $langs , 1 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2015-03-10 19:31:04 +01:00
print '</tr>' ;
2011-10-14 16:44:22 +02:00
2016-09-19 13:57:50 +02:00
print '</table>' ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
// Margin Infos
/* if ( ! empty ( $conf -> margin -> enabled )) {
$formmargin -> displayMarginInfos ( $object );
} */
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
print '</div>' ;
print '</div>' ;
print '</div>' ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
print '<div class="clearboth"></div><br>' ;
2017-06-07 16:44:04 +02:00
2012-12-01 15:45:05 +01:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_CONTACTS_TAB ))
{
$blocname = 'contacts' ;
$title = $langs -> trans ( 'ContactsAddresses' );
include DOL_DOCUMENT_ROOT . '/core/tpl/bloc_showhide.tpl.php' ;
}
2011-10-14 16:44:22 +02:00
2012-12-01 15:45:05 +01:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_NOTES_TAB ))
{
$blocname = 'notes' ;
$title = $langs -> trans ( 'Notes' );
include DOL_DOCUMENT_ROOT . '/core/tpl/bloc_showhide.tpl.php' ;
}
2011-10-14 16:44:22 +02:00
2012-12-01 15:45:05 +01:00
/*
* Lines
2013-11-17 23:25:25 +01:00
*/
2015-02-27 18:05:12 +01:00
//$result = $object->getLinesArray();
2013-11-17 23:25:25 +01:00
2017-10-19 14:10:58 +02:00
print ' <form name="addproduct" id="addproduct" action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . (( $action != 'editline' ) ? '#addline' : '#line_' . GETPOST ( 'lineid' )) . ' " method= " POST " >
2013-11-17 23:25:25 +01:00
< input type = " hidden " name = " token " value = " '. $_SESSION['newtoken'] .' " >
2015-02-27 18:05:12 +01:00
< input type = " hidden " name = " action " value = " ' . (( $action != 'editline') ? 'addline' : 'updateline') . ' " >
2013-11-17 23:25:25 +01:00
< input type = " hidden " name = " mode " value = " " >
< input type = " hidden " name = " id " value = " '. $object->id .' " >
< input type = " hidden " name = " socid " value = " '. $societe->id .' " >
' ;
2015-02-27 18:05:12 +01:00
if ( ! empty ( $conf -> use_javascript_ajax ) && $object -> statut == 0 ) {
include DOL_DOCUMENT_ROOT . '/core/tpl/ajaxrow.tpl.php' ;
}
2013-11-17 23:25:25 +01:00
2017-10-16 08:47:05 +02:00
print '<div class="div-table-responsive-no-min">' ;
2013-11-17 23:25:25 +01:00
print '<table id="tablelines" class="noborder noshadow" width="100%">' ;
2011-10-14 16:44:22 +02:00
2015-02-28 04:59:27 +01:00
// Add free products/services form
global $forceall , $senderissupplier , $dateSelector ;
2018-04-24 12:57:31 +02:00
$forceall = 1 ; $dateSelector = 0 ;
$senderissupplier = 2 ; // $senderissupplier=2 is same than 1 but disable test on minimum qty and disable autofill qty with minimum.
//if (! empty($conf->global->SUPPLIER_ORDER_WITH_NOPRICEDEFINED)) $senderissupplier=2;
if ( ! empty ( $conf -> global -> SUPPLIER_ORDER_WITH_PREDEFINED_PRICES_ONLY )) $senderissupplier = 1 ;
2015-02-28 04:59:27 +01:00
2015-02-27 18:05:12 +01:00
// Show object lines
2015-02-28 18:10:31 +01:00
$inputalsopricewithtax = 0 ;
2015-02-27 18:05:12 +01:00
if ( ! empty ( $object -> lines ))
2015-04-13 13:34:13 +02:00
$ret = $object -> printObjectLines ( $action , $societe , $mysoc , $lineid , 1 );
2015-02-27 18:05:12 +01:00
2012-12-01 15:45:05 +01:00
$num = count ( $object -> lines );
2011-10-14 16:44:22 +02:00
2014-05-05 17:59:43 +02:00
// Form to add new line
2018-04-24 12:57:31 +02:00
if ( $object -> statut == CommandeFournisseur :: STATUS_DRAFT && $user -> rights -> fournisseur -> commande -> creer )
2012-12-01 15:45:05 +01:00
{
2015-02-28 04:59:27 +01:00
if ( $action != 'editline' )
{
// Add free products/services
$object -> formAddObjectLine ( 1 , $societe , $mysoc );
2014-05-05 17:59:43 +02:00
2015-02-28 04:59:27 +01:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'formAddObjectLine' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
}
2012-12-01 15:45:05 +01:00
}
print '</table>' ;
2017-10-16 08:47:05 +02:00
print '</div>' ;
2013-11-17 23:25:25 +01:00
print '</form>' ;
dol_fiche_end ();
2011-10-14 16:44:22 +02:00
2012-12-01 15:45:05 +01:00
/**
* Boutons actions
*/
2016-08-10 09:47:25 +02:00
2016-05-05 21:38:29 +02:00
if ( $user -> societe_id == 0 && $action != 'editline' && $action != 'delete' )
2012-12-01 15:45:05 +01:00
{
2016-05-05 21:38:29 +02:00
print '<div class="tabsAction">' ;
2014-10-27 19:37:30 +01:00
2016-05-05 21:38:29 +02:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'addMoreActionsButtons' , $parameters , $object , $action ); // Note that $action and $object may have been
// modified by hook
if ( empty ( $reshook ))
{
2018-04-16 11:12:27 +02:00
$object -> fetchObjectLinked (); // Links are used to show or not button, so we load them now.
2016-08-10 09:47:25 +02:00
2014-09-25 09:26:32 +02:00
// Validate
if ( $object -> statut == 0 && $num > 0 )
2012-12-01 15:45:05 +01:00
{
2017-10-16 08:47:05 +02:00
if (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> fournisseur -> commande -> creer ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> fournisseur -> supplier_order_advance -> validate )))
2014-09-25 09:26:32 +02:00
{
2015-02-17 19:49:17 +01:00
$tmpbuttonlabel = $langs -> trans ( 'Validate' );
2015-03-23 15:25:21 +01:00
if ( $user -> rights -> fournisseur -> commande -> approuver && empty ( $conf -> global -> SUPPLIER_ORDER_NO_DIRECT_APPROVE )) $tmpbuttonlabel = $langs -> trans ( " ValidateAndApprove " );
2015-02-17 19:49:17 +01:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=valid">' ;
print $tmpbuttonlabel ;
print '</a>' ;
2014-09-25 09:26:32 +02:00
}
2012-12-01 15:45:05 +01:00
}
2016-03-04 10:38:33 +01:00
// Create event
2017-12-07 00:28:43 +01:00
/* if ( $conf -> agenda -> enabled && ! empty ( $conf -> global -> MAIN_ADD_EVENT_ON_ELEMENT_CARD )) // Add hidden condition because this is not a "workflow" action so should appears somewhere else on page.
2016-03-04 10:38:33 +01:00
{
print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/comm/action/card.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( " AddAction " ) . '</a></div>' ;
2017-12-07 00:28:43 +01:00
} */
2014-10-27 19:37:30 +01:00
2014-09-25 09:26:32 +02:00
// Modify
if ( $object -> statut == 1 )
2012-12-01 15:45:05 +01:00
{
2014-09-25 09:26:32 +02:00
if ( $user -> rights -> fournisseur -> commande -> commander )
{
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=reopen">' . $langs -> trans ( " Modify " ) . '</a>' ;
}
2012-12-01 15:45:05 +01:00
}
2014-10-27 19:37:30 +01:00
2014-09-25 09:26:32 +02:00
// Approve
if ( $object -> statut == 1 )
2012-12-01 15:45:05 +01:00
{
2014-09-25 09:26:32 +02:00
if ( $user -> rights -> fournisseur -> commande -> approuver )
{
2016-08-04 15:46:31 +02:00
if ( ! empty ( $conf -> global -> SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED ) && $conf -> global -> MAIN_FEATURES_LEVEL > 0 && $object -> total_ht >= $conf -> global -> SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED && ! empty ( $object -> user_approve_id ))
2015-04-01 21:00:51 +02:00
{
print '<a class="butActionRefused" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " FirstApprovalAlreadyDone " )) . '">' . $langs -> trans ( " ApproveOrder " ) . '</a>' ;
}
else
{
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=approve">' . $langs -> trans ( " ApproveOrder " ) . '</a>' ;
}
}
else
{
print '<a class="butActionRefused" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " NotAllowed " )) . '">' . $langs -> trans ( " ApproveOrder " ) . '</a>' ;
}
}
2016-08-04 15:46:31 +02:00
// Second approval (if option SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED is set)
if ( ! empty ( $conf -> global -> SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED ) && $conf -> global -> MAIN_FEATURES_LEVEL > 0 && $object -> total_ht >= $conf -> global -> SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED )
2015-04-01 21:00:51 +02:00
{
2015-07-29 15:39:34 +02:00
if ( $object -> statut == 1 )
2015-04-01 21:00:51 +02:00
{
2015-07-29 15:39:34 +02:00
if ( $user -> rights -> fournisseur -> commande -> approve2 )
2015-04-01 21:00:51 +02:00
{
2015-07-29 15:39:34 +02:00
if ( ! empty ( $object -> user_approve_id2 ))
{
print '<a class="butActionRefused" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " SecondApprovalAlreadyDone " )) . '">' . $langs -> trans ( " Approve2Order " ) . '</a>' ;
}
else
{
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=approve2">' . $langs -> trans ( " Approve2Order " ) . '</a>' ;
}
2015-04-01 21:00:51 +02:00
}
else
{
2015-07-29 15:39:34 +02:00
print '<a class="butActionRefused" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " NotAllowed " )) . '">' . $langs -> trans ( " Approve2Order " ) . '</a>' ;
2015-04-01 21:00:51 +02:00
}
}
}
// Refuse
if ( $object -> statut == 1 )
{
if ( $user -> rights -> fournisseur -> commande -> approuver || $user -> rights -> fournisseur -> commande -> approve2 )
{
2014-09-25 09:26:32 +02:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=refuse">' . $langs -> trans ( " RefuseOrder " ) . '</a>' ;
}
else
{
2015-04-01 21:00:51 +02:00
print '<a class="butActionRefused" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " NotAllowed " )) . '">' . $langs -> trans ( " RefuseOrder " ) . '</a>' ;
2014-09-25 09:26:32 +02:00
}
2012-12-01 15:45:05 +01:00
}
2014-10-27 19:37:30 +01:00
2014-09-25 09:26:32 +02:00
// Send
if ( in_array ( $object -> statut , array ( 2 , 3 , 4 , 5 )))
2012-12-01 15:45:05 +01:00
{
2014-09-25 09:26:32 +02:00
if ( $user -> rights -> fournisseur -> commande -> commander )
{
2018-03-11 21:34:38 +01:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=presend&mode=init#formmailbeforetitle">' . $langs -> trans ( 'SendMail' ) . '</a>' ;
2014-09-25 09:26:32 +02:00
}
2012-12-01 15:45:05 +01:00
}
2014-10-27 19:37:30 +01:00
2014-09-25 09:26:32 +02:00
// Reopen
2015-03-08 02:08:26 +01:00
if ( in_array ( $object -> statut , array ( 2 )))
{
2017-10-16 08:47:05 +02:00
$buttonshown = 0 ;
if ( ! $buttonshown && $user -> rights -> fournisseur -> commande -> approuver )
{
if ( empty ( $conf -> global -> SUPPLIER_ORDER_REOPEN_BY_APPROVER_ONLY )
|| ( ! empty ( $conf -> global -> SUPPLIER_ORDER_REOPEN_BY_APPROVER_ONLY ) && $user -> id == $object -> user_approve_id ))
{
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=reopen">' . $langs -> trans ( " Disapprove " ) . '</a>' ;
$buttonshown ++ ;
}
}
if ( ! $buttonshown && $user -> rights -> fournisseur -> commande -> approve2 && ! empty ( $conf -> global -> SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED ))
{
if ( empty ( $conf -> global -> SUPPLIER_ORDER_REOPEN_BY_APPROVER2_ONLY )
|| ( ! empty ( $conf -> global -> SUPPLIER_ORDER_REOPEN_BY_APPROVER2_ONLY ) && $user -> id == $object -> user_approve_id2 ))
{
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=reopen">' . $langs -> trans ( " Disapprove " ) . '</a>' ;
}
}
2015-03-08 02:08:26 +01:00
}
2016-04-09 18:50:22 +02:00
if ( in_array ( $object -> statut , array ( 3 , 4 , 5 , 6 , 7 , 9 )))
2012-12-01 15:45:05 +01:00
{
2014-09-25 09:26:32 +02:00
if ( $user -> rights -> fournisseur -> commande -> commander )
{
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=reopen">' . $langs -> trans ( " ReOpen " ) . '</a>' ;
}
2012-12-01 15:45:05 +01:00
}
2014-10-27 19:37:30 +01:00
2016-02-18 00:27:35 +01:00
// Ship
if ( ! empty ( $conf -> stock -> enabled ) && ! empty ( $conf -> global -> STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER ))
{
2018-04-16 11:12:27 +02:00
if ( in_array ( $object -> statut , array ( 3 , 4 , 5 ))) {
2016-02-18 00:27:35 +01:00
if ( $conf -> fournisseur -> enabled && $user -> rights -> fournisseur -> commande -> receptionner ) {
2018-04-16 11:12:56 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/fourn/commande/dispatch.php?id=' . $object -> id . '">' . $langs -> trans ( 'ReceiveProducts' ) . '</a></div>' ;
2016-02-18 00:27:35 +01:00
} else {
2018-04-16 11:12:56 +02:00
print '<div class="inline-block divButAction"><a class="butActionRefused" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " NotAllowed " )) . '">' . $langs -> trans ( 'ReceiveProducts' ) . '</a></div>' ;
2016-02-18 00:27:35 +01:00
}
}
}
2017-02-01 14:59:51 +01:00
if ( $object -> statut == 2 )
{
2017-10-16 08:47:05 +02:00
if ( $user -> rights -> fournisseur -> commande -> commander )
{
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=makeorder#makeorder">' . $langs -> trans ( " MakeOrder " ) . '</a></div>' ;
}
else
{
print '<div class="inline-block divButAction"><a class="butActionRefused" href="#">' . $langs -> trans ( " MakeOrder " ) . '</a></div>' ;
}
2017-02-01 14:59:51 +01:00
}
2017-02-02 20:07:41 +01:00
2014-09-25 09:26:32 +02:00
// Create bill
2015-04-13 13:22:12 +02:00
if ( ! empty ( $conf -> facture -> enabled ))
2012-12-01 15:45:05 +01:00
{
2017-06-14 10:28:02 +02:00
if ( ! empty ( $conf -> fournisseur -> enabled ) && ( $object -> statut >= 2 && $object -> statut != 7 && $object -> billed != 1 )) // statut 2 means approved, 7 means canceled
2014-09-25 09:26:32 +02:00
{
2015-04-13 13:22:12 +02:00
if ( $user -> rights -> fournisseur -> facture -> creer )
{
print '<a class="butAction" href="' . DOL_URL_ROOT . '/fourn/facture/card.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( " CreateBill " ) . '</a>' ;
}
2017-06-14 10:13:33 +02:00
}
}
2016-08-10 09:47:25 +02:00
2017-06-14 10:13:33 +02:00
// Classify billed manually (need one invoice if module invoice is on, no condition on invoice if not)
2017-06-14 10:28:02 +02:00
if ( $user -> rights -> fournisseur -> commande -> creer && $object -> statut >= 2 && $object -> statut != 7 && $object -> billed != 1 ) // statut 2 means approved
2017-06-14 10:13:33 +02:00
{
2017-10-16 08:47:05 +02:00
if ( empty ( $conf -> facture -> enabled ))
{
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=classifybilled">' . $langs -> trans ( " ClassifyBilled " ) . '</a>' ;
}
else if ( ! empty ( $object -> linkedObjectsIds [ 'invoice_supplier' ]))
{
2017-06-14 10:13:33 +02:00
if ( $user -> rights -> fournisseur -> facture -> creer )
2015-11-16 14:55:46 +01:00
{
2017-10-16 08:47:05 +02:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=classifybilled">' . $langs -> trans ( " ClassifyBilled " ) . '</a>' ;
2015-11-16 14:55:46 +01:00
}
2017-10-16 08:47:05 +02:00
}
2012-12-01 15:45:05 +01:00
}
2014-10-27 19:37:30 +01:00
2014-10-31 04:59:57 +01:00
// Create a remote order using WebService only if module is activated
if ( ! empty ( $conf -> syncsupplierwebservices -> enabled ) && $object -> statut >= 2 ) // 2 means accepted
2014-10-29 05:13:15 +01:00
{
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=webservice&mode=init">' . $langs -> trans ( 'CreateRemoteOrder' ) . '</a>' ;
}
2015-04-01 21:00:51 +02:00
// Clone
if ( $user -> rights -> fournisseur -> commande -> creer )
{
print '<a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '&socid=' . $object -> socid . '&action=clone&object=order">' . $langs -> trans ( " ToClone " ) . '</a>' ;
}
2014-09-25 09:26:32 +02:00
// Cancel
if ( $object -> statut == 2 )
2012-12-01 15:45:05 +01:00
{
2014-09-25 09:26:32 +02:00
if ( $user -> rights -> fournisseur -> commande -> commander )
{
print '<a class="butActionDelete" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=cancel">' . $langs -> trans ( " CancelOrder " ) . '</a>' ;
}
2012-12-01 15:45:05 +01:00
}
2014-10-27 19:37:30 +01:00
2014-09-25 09:26:32 +02:00
// Delete
if ( $user -> rights -> fournisseur -> commande -> supprimer )
{
print '<a class="butActionDelete" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=delete">' . $langs -> trans ( " Delete " ) . '</a>' ;
}
2014-10-27 19:37:30 +01:00
2012-12-01 15:45:05 +01:00
}
2016-08-10 09:47:25 +02:00
2016-05-05 21:38:29 +02:00
print " </div> " ;
2017-09-17 15:38:50 +02:00
2016-05-05 21:38:29 +02:00
2010-12-13 14:16:02 +01:00
2017-02-01 14:59:51 +01:00
if ( $user -> rights -> fournisseur -> commande -> commander && $object -> statut == 2 && $action == 'makeorder' )
2012-12-01 15:45:05 +01:00
{
2017-10-16 08:47:05 +02:00
// Set status to ordered (action=commande)
print '<!-- form to record supplier order -->' . " \n " ;
print '<form name="commande" id="makeorder" action="card.php?id=' . $object -> id . '&action=commande" method="post">' ;
2016-12-24 21:39:40 +01:00
2017-10-16 08:47:05 +02:00
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="commande">' ;
print load_fiche_titre ( $langs -> trans ( " ToOrder " ), '' , '' );
print '<table class="noborder" width="100%">' ;
//print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("ToOrder").'</td></tr>';
print '<tr><td>' . $langs -> trans ( " OrderDate " ) . '</td><td>' ;
2018-06-16 15:24:31 +02:00
$date_com = dol_mktime ( GETPOST ( 'rehour' , 'int' ), GETPOST ( 'remin' , 'int' ), GETPOST ( 'resec' , 'int' ), GETPOST ( 'remonth' , 'int' ), GETPOST ( 'reday' , 'int' ), GETPOST ( 'reyear' , 'int' ));
if ( empty ( $date_com )) $date_com = dol_now ();
2017-10-16 08:47:05 +02:00
print $form -> select_date ( $date_com , '' , 1 , 1 , '' , " commande " , 1 , 1 , 1 );
print '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( " OrderMode " ) . '</td><td>' ;
$formorder -> selectInputMethod ( GETPOST ( 'methodecommande' ), " methodecommande " , 1 );
print '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( " Comment " ) . '</td><td><input size="40" type="text" name="comment" value="' . GETPOST ( 'comment' ) . '"></td></tr>' ;
print '<tr><td align="center" colspan="2">' ;
print '<input type="submit" name="makeorder" class="button" value="' . $langs -> trans ( " ToOrder " ) . '">' ;
print ' ' ;
print '<input type="submit" name="cancel" class="button" value="' . $langs -> trans ( " Cancel " ) . '">' ;
print '</td></tr>' ;
print '</table>' ;
2017-10-18 19:51:29 +02:00
2017-10-16 08:47:05 +02:00
print '</form>' ;
print " <br> " ;
2012-12-01 15:45:05 +01:00
}
2017-09-13 14:18:36 +02:00
if ( $action != 'makeorder' )
2012-12-01 15:45:05 +01:00
{
2017-10-16 08:47:05 +02:00
print '<div class="fichecenter"><div class="fichehalfleft">' ;
2017-02-02 20:07:41 +01:00
2017-10-16 08:47:05 +02:00
/*
2017-02-01 14:59:51 +01:00
* Documents generes
*/
2017-10-16 08:47:05 +02:00
$comfournref = dol_sanitizeFileName ( $object -> ref );
$file = $conf -> fournisseur -> dir_output . '/commande/' . $comfournref . '/' . $comfournref . '.pdf' ;
$relativepath = $comfournref . '/' . $comfournref . '.pdf' ;
$filedir = $conf -> fournisseur -> dir_output . '/commande/' . $comfournref ;
$urlsource = $_SERVER [ " PHP_SELF " ] . " ?id= " . $object -> id ;
2017-10-18 19:51:29 +02:00
$genallowed = $user -> rights -> fournisseur -> commande -> lire ;
$delallowed = $user -> rights -> fournisseur -> commande -> creer ;
2017-02-02 20:07:41 +01:00
2017-10-16 08:47:05 +02:00
print $formfile -> showdocuments ( 'commande_fournisseur' , $comfournref , $filedir , $urlsource , $genallowed , $delallowed , $object -> modelpdf , 1 , 0 , 0 , 0 , 0 , '' , '' , '' , $object -> thirdparty -> default_lang );
$somethingshown = $formfile -> numoffiles ;
2017-02-02 20:07:41 +01:00
2017-10-16 08:47:05 +02:00
// Show links to link elements
$linktoelem = $form -> showLinkToObjectBlock ( $object , null , array ( 'supplier_order' , 'order_supplier' ));
$somethingshown = $form -> showLinkedObjectBlock ( $object , $linktoelem );
2017-02-02 20:07:41 +01:00
2017-10-16 08:47:05 +02:00
print '</div><div class="fichehalfright"><div class="ficheaddleft">' ;
2017-09-17 15:38:50 +02:00
if ( $user -> rights -> fournisseur -> commande -> receptionner && ( $object -> statut == 3 || $object -> statut == 4 ))
{
// Set status to received (action=livraison)
print '<!-- form to record supplier order received -->' . " \n " ;
print '<form action="card.php?id=' . $object -> id . '" method="post">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="livraison">' ;
print load_fiche_titre ( $langs -> trans ( " Receive " ), '' , '' );
print '<table class="noborder" width="100%">' ;
//print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("Receive").'</td></tr>';
print '<tr><td>' . $langs -> trans ( " DeliveryDate " ) . '</td><td>' ;
2018-06-16 17:18:17 +02:00
$datepreselected = dol_now ();
print $form -> select_date ( $datepreselected , '' , 1 , 1 , '' , " commande " , 1 , 1 , 1 );
2017-09-17 15:38:50 +02:00
print " </td></tr> \n " ;
2018-03-09 23:49:40 +01:00
print " <tr><td class= \" fieldrequired \" > " . $langs -> trans ( " Delivery " ) . " </td><td> \n " ;
2017-09-17 15:38:50 +02:00
$liv = array ();
$liv [ '' ] = ' ' ;
$liv [ 'tot' ] = $langs -> trans ( " CompleteOrNoMoreReceptionExpected " );
$liv [ 'par' ] = $langs -> trans ( " PartialWoman " );
$liv [ 'nev' ] = $langs -> trans ( " NeverReceived " );
$liv [ 'can' ] = $langs -> trans ( " Canceled " );
print $form -> selectarray ( " type " , $liv );
print '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( " Comment " ) . '</td><td><input size="40" type="text" name="comment"></td></tr>' ;
print '<tr><td align="center" colspan="2"><input type="submit" class="button" value="' . $langs -> trans ( " Receive " ) . '"></td></tr>' ;
print " </table> \n " ;
print " </form> \n " ;
print " <br> " ;
}
2017-10-16 08:47:05 +02:00
// List of actions on element
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php' ;
$formactions = new FormActions ( $db );
$somethingshown = $formactions -> showactions ( $object , 'order_supplier' , $socid , 1 , 'listaction' . ( $genallowed ? 'largetitle' : '' ));
2017-09-17 15:38:50 +02:00
print '</div></div></div>' ;
2012-12-01 15:45:05 +01:00
}
2011-10-14 16:44:22 +02:00
2017-09-17 15:38:50 +02:00
/*
* Action webservice
*/
if ( $action == 'webservice' && GETPOST ( 'mode' , 'alpha' ) != " send " && ! GETPOST ( 'cancel' , 'alpha' ))
{
$mode = GETPOST ( 'mode' , 'alpha' );
$ws_url = $object -> thirdparty -> webservices_url ;
$ws_key = $object -> thirdparty -> webservices_key ;
$ws_user = GETPOST ( 'ws_user' , 'alpha' );
$ws_password = GETPOST ( 'ws_password' , 'alpha' );
// NS and Authentication parameters
$ws_ns = 'http://www.dolibarr.org/ns/' ;
$ws_authentication = array (
'dolibarrkey' => $ws_key ,
'sourceapplication' => 'DolibarrWebServiceClient' ,
'login' => $ws_user ,
'password' => $ws_password ,
'entity' => ''
);
print load_fiche_titre ( $langs -> trans ( 'CreateRemoteOrder' ), '' );
//Is everything filled?
if ( empty ( $ws_url ) || empty ( $ws_key )) {
setEventMessages ( $langs -> trans ( " ErrorWebServicesFieldsRequired " ), null , 'errors' );
$mode = " init " ;
$error_occurred = true ; //Don't allow to set the user/pass if thirdparty fields are not filled
} else if ( $mode != " init " && ( empty ( $ws_user ) || empty ( $ws_password ))) {
setEventMessages ( $langs -> trans ( " ErrorFieldsRequired " ), null , 'errors' );
$mode = " init " ;
}
if ( $mode == " init " )
{
//Table/form header
print '<table class="border" width="100%">' ;
print '<form action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '" method="post">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="webservice">' ;
print '<input type="hidden" name="mode" value="check">' ;
if ( $error_occurred )
{
print " <br> " . $langs -> trans ( " ErrorOccurredReviseAndRetry " ) . " <br> " ;
print '<input class="button" type="submit" id="cancel" name="cancel" value="' . $langs -> trans ( " Cancel " ) . '">' ;
}
else
{
$textinput_size = " 50 " ;
// Webservice url
print '<tr><td>' . $langs -> trans ( " WebServiceURL " ) . '</td><td colspan="3">' . dol_print_url ( $ws_url ) . '</td></tr>' ;
//Remote User
print '<tr><td>' . $langs -> trans ( " User " ) . '</td><td><input size="' . $textinput_size . '" type="text" name="ws_user"></td></tr>' ;
//Remote Password
print '<tr><td>' . $langs -> trans ( " Password " ) . '</td><td><input size="' . $textinput_size . '" type="text" name="ws_password"></td></tr>' ;
//Submit button
print '<tr><td align="center" colspan="2">' ;
print '<input class="button" type="submit" id="ws_submit" name="ws_submit" value="' . $langs -> trans ( " CreateRemoteOrder " ) . '">' ;
print ' ' ;
//Cancel button
print '<input class="button" type="submit" id="cancel" name="cancel" value="' . $langs -> trans ( " Cancel " ) . '">' ;
print '</td></tr>' ;
}
//End table/form
print '</form>' ;
print '</table>' ;
}
elseif ( $mode == " check " )
{
$ws_entity = '' ;
$ws_thirdparty = '' ;
$error_occurred = false ;
2015-04-01 21:00:51 +02:00
2017-09-17 15:38:50 +02:00
//Create SOAP client and connect it to user
$soapclient_user = new nusoap_client ( $ws_url . " /webservices/server_user.php " );
$soapclient_user -> soap_defencoding = 'UTF-8' ;
$soapclient_user -> decodeUTF8 ( false );
2015-04-01 21:00:51 +02:00
2017-09-17 15:38:50 +02:00
//Get the thirdparty associated to user
$ws_parameters = array ( 'authentication' => $ws_authentication , 'id' => '' , 'ref' => $ws_user );
$result_user = $soapclient_user -> call ( " getUser " , $ws_parameters , $ws_ns , '' );
$user_status_code = $result_user [ " result " ][ " result_code " ];
2011-10-14 16:44:22 +02:00
2017-09-17 15:38:50 +02:00
if ( $user_status_code == " OK " )
{
//Fill the variables
$ws_entity = $result_user [ " user " ][ " entity " ];
$ws_authentication [ 'entity' ] = $ws_entity ;
$ws_thirdparty = $result_user [ " user " ][ " fk_thirdparty " ];
if ( empty ( $ws_thirdparty ))
{
setEventMessages ( $langs -> trans ( " RemoteUserMissingAssociatedSoc " ), null , 'errors' );
$error_occurred = true ;
}
else
{
//Create SOAP client and connect it to product/service
$soapclient_product = new nusoap_client ( $ws_url . " /webservices/server_productorservice.php " );
$soapclient_product -> soap_defencoding = 'UTF-8' ;
$soapclient_product -> decodeUTF8 ( false );
// Iterate each line and get the reference that uses the supplier of that product/service
$i = 0 ;
foreach ( $object -> lines as $line ) {
$i = $i + 1 ;
$ref_supplier = $line -> ref_supplier ;
$line_id = $i . " º) " . $line -> product_ref . " : " ;
if ( empty ( $ref_supplier )) {
continue ;
}
$ws_parameters = array ( 'authentication' => $ws_authentication , 'id' => '' , 'ref' => $ref_supplier );
$result_product = $soapclient_product -> call ( " getProductOrService " , $ws_parameters , $ws_ns , '' );
if ( ! $result_product )
{
setEventMessages ( $line_id . $langs -> trans ( " SOAPError " ) . " " . $soapclient_product -> error_str . " - " . $soapclient_product -> response , null , 'errors' );
$error_occurred = true ;
break ;
}
2017-02-02 20:07:41 +01:00
2017-09-17 15:38:50 +02:00
// Check the result code
$status_code = $result_product [ " result " ][ " result_code " ];
if ( empty ( $status_code )) //No result, check error str
{
setEventMessages ( $langs -> trans ( " SOAPError " ) . " ' " . $soapclient_order -> error_str . " ' " , null , 'errors' );
}
else if ( $status_code != " OK " ) //Something went wrong
{
if ( $status_code == " NOT_FOUND " )
{
setEventMessages ( $line_id . $langs -> trans ( " SupplierMissingRef " ) . " ' " . $ref_supplier . " ' " , null , 'warnings' );
}
else
{
setEventMessages ( $line_id . $langs -> trans ( " ResponseNonOK " ) . " ' " . $status_code . " ' - ' " . $result_product [ " result " ][ " result_label " ] . " ' " , null , 'errors' );
$error_occurred = true ;
break ;
}
}
// Ensure that price is equal and warn user if it's not
$supplier_price = price ( $result_product [ " product " ][ " price_net " ]); //Price of client tab in supplier dolibarr
2018-04-22 20:57:43 +02:00
$local_price = null ; //Price of supplier as stated in product suppliers tab on this dolibarr, NULL if not found
2017-09-17 15:38:50 +02:00
$product_fourn = new ProductFournisseur ( $db );
$product_fourn_list = $product_fourn -> list_product_fournisseur_price ( $line -> fk_product );
if ( count ( $product_fourn_list ) > 0 )
{
foreach ( $product_fourn_list as $product_fourn_line )
{
//Only accept the line where the supplier is the same at this order and has the same ref
if ( $product_fourn_line -> fourn_id == $object -> socid && $product_fourn_line -> fourn_ref == $ref_supplier ) {
$local_price = price ( $product_fourn_line -> fourn_price );
}
}
}
2018-04-22 20:57:43 +02:00
if ( $local_price != null && $local_price != $supplier_price ) {
2017-09-17 15:38:50 +02:00
setEventMessages ( $line_id . $langs -> trans ( " RemotePriceMismatch " ) . " " . $supplier_price . " - " . $local_price , null , 'warnings' );
}
// Check if is in sale
if ( empty ( $result_product [ " product " ][ " status_tosell " ])) {
setEventMessages ( $line_id . $langs -> trans ( " ProductStatusNotOnSellShort " ) . " ' " . $ref_supplier . " ' " , null , 'warnings' );
}
}
}
}
elseif ( $user_status_code == " PERMISSION_DENIED " )
{
setEventMessages ( $langs -> trans ( " RemoteUserNotPermission " ), null , 'errors' );
$error_occurred = true ;
}
elseif ( $user_status_code == " BAD_CREDENTIALS " )
{
setEventMessages ( $langs -> trans ( " RemoteUserBadCredentials " ), null , 'errors' );
$error_occurred = true ;
}
else
{
setEventMessages ( $langs -> trans ( " ResponseNonOK " ) . " ' " . $user_status_code . " ' " , null , 'errors' );
$error_occurred = true ;
}
//Form
print '<form action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '" method="post">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="webservice">' ;
print '<input type="hidden" name="mode" value="send">' ;
print '<input type="hidden" name="ws_user" value="' . $ws_user . '">' ;
print '<input type="hidden" name="ws_password" value="' . $ws_password . '">' ;
print '<input type="hidden" name="ws_entity" value="' . $ws_entity . '">' ;
print '<input type="hidden" name="ws_thirdparty" value="' . $ws_thirdparty . '">' ;
if ( $error_occurred )
{
print " <br> " . $langs -> trans ( " ErrorOccurredReviseAndRetry " ) . " <br> " ;
}
else
{
print '<input class="button" type="submit" id="ws_submit" name="ws_submit" value="' . $langs -> trans ( " Confirm " ) . '">' ;
print ' ' ;
}
print '<input class="button" type="submit" id="cancel" name="cancel" value="' . $langs -> trans ( " Cancel " ) . '">' ;
print '</form>' ;
}
}
// Select mail models is same action as presend
if ( GETPOST ( 'modelselected' )) {
$action = 'presend' ;
}
2012-03-16 00:34:41 +01:00
2017-09-17 15:38:50 +02:00
// Presend form
2018-03-08 20:49:37 +01:00
$modelmail = 'order_supplier_send' ;
2017-09-17 15:38:50 +02:00
$defaulttopic = 'SendOrderRef' ;
$diroutput = $conf -> fournisseur -> commande -> dir_output ;
$trackid = 'sor' . $object -> id ;
include DOL_DOCUMENT_ROOT . '/core/tpl/card_presend.tpl.php' ;
}
2006-12-05 01:47:40 +01:00
}
2004-11-29 17:48:53 +01:00
2012-03-15 09:19:38 +01:00
// End of page
2011-08-27 16:24:16 +02:00
llxFooter ();
2012-04-13 14:02:53 +02:00
2012-03-15 09:19:38 +01:00
$db -> close ();