2008-08-12 20:20:18 +02:00
< ? php
/* Copyright ( C ) 2002 - 2006 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
* Copyright ( C ) 2004 Eric Seigne < eric . seigne @ ryxeo . com >
2012-04-07 02:24:32 +02:00
* Copyright ( C ) 2004 - 2012 Laurent Destailleur < eldy @ users . sourceforge . net >
2008-08-12 20:20:18 +02:00
* Copyright ( C ) 2005 Marc Barilley / Ocebo < marc @ ocebo . com >
2012-02-21 18:16:24 +01:00
* Copyright ( C ) 2005 - 2012 Regis Houssin < regis @ dolibarr . fr >
2008-08-12 20:20:18 +02:00
* Copyright ( C ) 2006 Andre Cianfarani < acianfa @ free . fr >
2012-05-21 17:12:57 +02:00
* Copyright ( C ) 2010 - 2012 Juanjo Menent < jmenent @ 2 byte . es >
2012-01-16 10:35:36 +01:00
* Copyright ( C ) 2012 Christophe Battarel < christophe . battarel @ altairis . fr >
2012-05-05 20:07:34 +02:00
*
2008-08-12 20:20:18 +02:00
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
2011-08-03 02:45:22 +02:00
* along with this program . If not , see < http :// www . gnu . org / licenses />.
2008-08-12 20:20:18 +02:00
*/
/**
* \file htdocs / compta / facture . php
* \ingroup facture
2010-08-09 19:16:26 +02:00
* \brief Page to create / see an invoice
2008-08-12 20:20:18 +02:00
*/
2012-08-16 19:18:24 +02:00
require '../main.inc.php' ;
require DOL_DOCUMENT_ROOT . '/compta/facture/class/facture.class.php' ;
require DOL_DOCUMENT_ROOT . '/compta/paiement/class/paiement.class.php' ;
require DOL_DOCUMENT_ROOT . '/core/modules/facture/modules_facture.php' ;
require DOL_DOCUMENT_ROOT . '/core/class/discount.class.php' ;
require DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php' ;
require DOL_DOCUMENT_ROOT . '/core/class/html.formother.class.php' ;
require DOL_DOCUMENT_ROOT . '/core/lib/invoice.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php' ;
if ( ! empty ( $conf -> commande -> enabled )) {
require DOL_DOCUMENT_ROOT . '/commande/class/commande.class.php' ;
}
if ( ! empty ( $conf -> projet -> enabled )) {
require DOL_DOCUMENT_ROOT . '/projet/class/project.class.php' ;
require DOL_DOCUMENT_ROOT . '/core/lib/project.lib.php' ;
2012-03-15 22:38:55 +01:00
}
2008-08-12 20:20:18 +02:00
$langs -> load ( 'bills' );
$langs -> load ( 'companies' );
$langs -> load ( 'products' );
$langs -> load ( 'main' );
2012-07-20 09:57:50 +02:00
if ( ! empty ( $conf -> margin -> enabled ))
$langs -> load ( 'margins' );
2008-08-12 20:20:18 +02:00
2011-11-19 19:05:33 +01:00
$sall = trim ( GETPOST ( 'sall' ));
2011-11-25 17:12:39 +01:00
$projectid = ( GETPOST ( 'projectid' ) ? GETPOST ( 'projectid' , 'int' ) : 0 );
2008-08-12 20:20:18 +02:00
2012-02-27 22:26:22 +01:00
$id = ( GETPOST ( 'id' , 'int' ) ? GETPOST ( 'id' , 'int' ) : GETPOST ( 'facid' , 'int' )); // For backward compatibility
2011-11-25 17:12:39 +01:00
$ref = GETPOST ( 'ref' , 'alpha' );
$socid = GETPOST ( 'socid' , 'int' );
$action = GETPOST ( 'action' , 'alpha' );
$confirm = GETPOST ( 'confirm' , 'alpha' );
$lineid = GETPOST ( 'lineid' , 'int' );
$userid = GETPOST ( 'userid' , 'int' );
2011-11-25 16:47:57 +01:00
$search_ref = GETPOST ( 'sf_ref' ) ? GETPOST ( 'sf_ref' , 'alpha' ) : GETPOST ( 'search_ref' , 'alpha' );
$search_societe = GETPOST ( 'search_societe' , 'alpha' );
$search_montant_ht = GETPOST ( 'search_montant_ht' , 'alpha' );
2011-11-25 17:35:01 +01:00
$search_montant_ttc = GETPOST ( 'search_montant_ttc' , 'alpha' );
2012-08-25 15:21:34 +02:00
$origin = GETPOST ( 'origin' , 'alpha' );
2012-08-25 03:28:30 +02:00
$originid = ( GETPOST ( 'originid' , 'int' ) ? GETPOST ( 'originid' , 'int' ) : GETPOST ( 'origin_id' , 'int' )); // For backward compatibility
2011-04-18 17:06:23 +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
2008-08-12 20:20:18 +02:00
// Security check
2011-11-25 17:12:39 +01:00
$fieldid = ( ! empty ( $ref ) ? 'facnumber' : 'rowid' );
2008-08-12 20:20:18 +02:00
if ( $user -> societe_id ) $socid = $user -> societe_id ;
2011-04-18 17:06:23 +02:00
$result = restrictedArea ( $user , 'facture' , $id , '' , '' , 'fk_soc' , $fieldid );
2008-08-12 20:20:18 +02:00
2009-11-28 13:06:11 +01:00
// Nombre de ligne pour choix de produit/service predefinis
2008-08-12 20:20:18 +02:00
$NBLINES = 4 ;
2012-07-10 18:57:27 +02:00
$usehm = ( ! empty ( $conf -> global -> MAIN_USE_HOURMIN_IN_DATE_RANGE ) ? $conf -> global -> MAIN_USE_HOURMIN_IN_DATE_RANGE : 0 );
2008-10-02 00:24:31 +02:00
2010-09-09 18:02:55 +02:00
$object = new Facture ( $db );
2008-08-12 20:20:18 +02:00
2012-07-02 19:30:37 +02:00
// Load object
if ( $id > 0 || ! empty ( $ref ))
{
$ret = $object -> fetch ( $id , $ref );
2012-05-10 19:26:44 +02:00
}
2011-08-10 19:56:02 +02:00
// Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/hookmanager.class.php' ;
2011-08-10 19:56:02 +02:00
$hookmanager = new HookManager ( $db );
2012-03-02 14:51:16 +01:00
$hookmanager -> initHooks ( array ( 'invoicecard' ));
2010-09-12 20:01:29 +02:00
2011-10-01 21:55:40 +02:00
/*
* Actions
*/
2008-08-12 20:20:18 +02:00
2011-08-11 00:47:33 +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
2010-09-09 18:02:55 +02:00
2012-05-04 18:30:35 +02:00
2008-11-20 22:30:23 +01:00
// Action clone object
2012-03-16 10:55:29 +01:00
if ( $action == 'confirm_clone' && $confirm == 'yes' && $user -> rights -> facture -> creer )
2008-11-20 22:30:23 +01:00
{
2011-05-05 09:25:31 +02:00
if ( 1 == 0 && empty ( $_REQUEST [ " clone_content " ]) && empty ( $_REQUEST [ " clone_receivers " ]))
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( " NoCloneOptionsSpecified " ) . '</div>' ;
2011-05-05 09:25:31 +02:00
}
else
{
2011-12-12 14:04:03 +01:00
if ( $object -> fetch ( $id ) > 0 )
{
$result = $object -> createFromClone ( $socid , $hookmanager );
if ( $result > 0 )
{
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . '?facid=' . $result );
exit ;
}
else
{
2012-07-23 21:31:10 +02:00
$mesgs [] = $object -> error ;
2011-12-12 14:04:03 +01:00
$action = '' ;
}
}
2011-05-05 09:25:31 +02:00
}
2008-11-20 22:30:23 +01:00
}
2011-09-08 23:50:41 +02:00
// Change status of invoice
2012-03-13 20:21:08 +01:00
else if ( $action == 'reopen' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$result = $object -> fetch ( $id );
if ( $object -> statut == 2
|| ( $object -> statut == 3 && $object -> close_code != 'replaced' ))
{
$result = $object -> set_unpaid ( $user );
if ( $result > 0 )
{
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $id );
exit ;
}
else
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $object -> error . '</div>' ;
2011-05-05 09:25:31 +02:00
}
}
2008-08-12 20:20:18 +02:00
}
2011-09-08 23:50:41 +02:00
// Delete invoice
2012-03-13 20:21:08 +01:00
else if ( $action == 'confirm_delete' && $confirm == 'yes' && $user -> rights -> facture -> supprimer )
2008-08-12 20:20:18 +02:00
{
2012-05-06 02:27:09 +02:00
$result = $object -> fetch ( $id );
2012-05-29 23:00:12 +02:00
$object -> fetch_thirdparty ();
2012-05-06 02:27:09 +02:00
$result = $object -> delete ();
if ( $result > 0 )
{
2012-07-25 15:03:06 +02:00
Header ( 'Location: ' . DOL_URL_ROOT . '/compta/facture/list.php' );
2012-05-06 02:27:09 +02:00
exit ;
}
else
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $object -> error . '</div>' ;
2012-03-16 10:55:29 +01:00
}
2008-08-12 20:20:18 +02:00
}
2011-09-08 23:50:41 +02:00
// Delete line
2012-03-16 10:55:29 +01:00
else if ( $action == 'confirm_deleteline' && $confirm == 'yes' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2012-05-06 02:27:09 +02:00
$object -> fetch ( $id );
$object -> fetch_thirdparty ();
$result = $object -> deleteline ( $_GET [ 'lineid' ], $user );
if ( $result > 0 )
{
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && ! empty ( $_REQUEST [ 'lang_id' ])) $newlang = $_REQUEST [ 'lang_id' ];
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
$ret = $object -> fetch ( $id ); // Reload to get new records
2012-05-21 17:12:57 +02:00
$result = facture_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref , $hookmanager );
2012-05-06 02:27:09 +02:00
}
if ( $result >= 0 )
{
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $id );
exit ;
}
}
else
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div clas="error">' . $object -> error . '</div>' ;
2012-05-06 02:27:09 +02:00
$action = '' ;
2012-03-16 10:55:29 +01:00
}
2008-08-12 20:20:18 +02:00
}
2011-09-08 23:50:41 +02:00
// Delete link of credit note to invoice
2012-03-16 10:55:29 +01:00
else if ( $action == 'unlinkdiscount' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2012-03-16 10:55:29 +01:00
$discount = new DiscountAbsolute ( $db );
$result = $discount -> fetch ( $_GET [ " discountid " ]);
$discount -> unlink_invoice ();
2008-08-12 20:20:18 +02:00
}
// Validation
2012-03-16 10:55:29 +01:00
else if ( $action == 'valid' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
// On verifie signe facture
if ( $object -> type == 2 )
{
// Si avoir, le signe doit etre negatif
if ( $object -> total_ht >= 0 )
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( " ErrorInvoiceAvoirMustBeNegative " ) . '</div>' ;
2011-05-05 09:25:31 +02:00
$action = '' ;
}
}
else
{
// Si non avoir, le signe doit etre positif
2012-03-15 22:38:55 +01:00
if ( empty ( $conf -> global -> FACTURE_ENABLE_NEGATIVE ) && $object -> total_ht < 0 )
2011-05-05 09:25:31 +02:00
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( " ErrorInvoiceOfThisTypeMustBePositive " ) . '</div>' ;
2011-05-05 09:25:31 +02:00
$action = '' ;
}
}
2008-08-12 20:20:18 +02:00
}
2012-03-16 10:55:29 +01:00
else if ( $action == 'set_thirdparty' && $user -> rights -> facture -> creer )
2011-06-29 17:48:02 +02:00
{
2011-11-05 15:43:07 +01:00
$object -> fetch ( $id );
$object -> setValueFrom ( 'fk_soc' , $socid );
2011-06-30 23:53:02 +02:00
2011-09-08 23:50:41 +02:00
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $id );
exit ;
2011-06-29 17:48:02 +02:00
}
2012-03-16 10:55:29 +01:00
else if ( $action == 'classin' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
$object -> setProject ( $_POST [ 'projectid' ]);
2008-08-12 20:20:18 +02:00
}
2012-03-16 10:55:29 +01:00
else if ( $action == 'setmode' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
2012-03-13 20:01:10 +01:00
$result = $object -> setPaymentMethods ( GETPOST ( 'mode_reglement_id' , 'int' ));
2011-10-01 21:55:40 +02:00
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
2008-08-12 20:20:18 +02:00
}
2012-03-16 10:55:29 +01:00
else if ( $action == 'setinvoicedate' && $user -> rights -> facture -> creer )
2008-11-20 22:30:23 +01:00
{
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
$object -> date = dol_mktime ( 12 , 0 , 0 , $_POST [ 'invoicedatemonth' ], $_POST [ 'invoicedateday' ], $_POST [ 'invoicedateyear' ]);
if ( $object -> date_lim_reglement < $object -> date ) $object -> date_lim_reglement = $object -> date ;
$result = $object -> update ( $user );
2011-10-01 21:55:40 +02:00
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
2009-01-02 17:08:15 +01:00
}
2012-05-04 18:30:35 +02:00
else if ( $action == 'setpaymentterm' && $user -> rights -> facture -> creer )
{
$object -> fetch ( $id );
$object -> date_lim_reglement = dol_mktime ( 12 , 0 , 0 , $_POST [ 'paymenttermmonth' ], $_POST [ 'paymenttermday' ], $_POST [ 'paymenttermyear' ]);
if ( $object -> date_lim_reglement < $object -> date ) $object -> date_lim_reglement = $object -> date ;
$result = $object -> update ( $user );
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
}
2012-03-16 10:55:29 +01:00
else if ( $action == 'setconditions' && $user -> rights -> facture -> creer )
2009-01-02 17:08:15 +01:00
{
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
2012-03-13 19:24:11 +01:00
$result = $object -> setPaymentTerms ( GETPOST ( 'cond_reglement_id' , 'int' ));
2011-10-01 21:55:40 +02:00
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
2008-11-20 22:30:23 +01:00
}
2012-03-16 10:55:29 +01:00
else if ( $action == 'setremisepercent' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
$result = $object -> set_remise ( $user , $_POST [ 'remise_percent' ]);
2008-08-12 20:20:18 +02:00
}
2012-03-13 20:21:08 +01:00
else if ( $action == " setabsolutediscount " && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
// POST[remise_id] ou POST[remise_id_for_payment]
if ( ! empty ( $_POST [ " remise_id " ]))
{
$ret = $object -> fetch ( $id );
if ( $ret > 0 )
{
$result = $object -> insert_discount ( $_POST [ " remise_id " ]);
if ( $result < 0 )
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $object -> error . '</div>' ;
2011-05-05 09:25:31 +02:00
}
}
else
{
dol_print_error ( $db , $object -> error );
}
}
if ( ! empty ( $_POST [ " remise_id_for_payment " ]))
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/discount.class.php' ;
2011-05-05 09:25:31 +02:00
$discount = new DiscountAbsolute ( $db );
$discount -> fetch ( $_POST [ " remise_id_for_payment " ]);
$result = $discount -> link_to_invoice ( 0 , $id );
if ( $result < 0 )
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $discount -> error . '</div>' ;
2011-05-05 09:25:31 +02:00
}
}
2008-08-12 20:20:18 +02:00
}
2012-03-16 10:55:29 +01:00
else if ( $action == 'set_ref_client' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
$object -> set_ref_client ( $_POST [ 'ref_client' ]);
2008-08-12 20:20:18 +02:00
}
2012-05-06 02:27:09 +02:00
else if ( $action == 'setnote_public' && $user -> rights -> facture -> creer )
{
$object -> fetch ( $id );
$result = $object -> update_note_public ( dol_html_entity_decode ( GETPOST ( 'note_public' ), ENT_QUOTES ));
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
}
else if ( $action == 'setnote' && $user -> rights -> facture -> creer )
{
$object -> fetch ( $id );
$result = $object -> update_note ( dol_html_entity_decode ( GETPOST ( 'note' ), ENT_QUOTES ));
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
2012-03-16 10:55:29 +01:00
}
2009-03-09 19:40:16 +01:00
// Classify to validated
2012-03-13 20:21:08 +01:00
else if ( $action == 'confirm_valid' && $confirm == 'yes' && $user -> rights -> facture -> valider )
2008-08-12 20:20:18 +02:00
{
2011-11-09 14:31:43 +01:00
$idwarehouse = GETPOST ( 'idwarehouse' );
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
$object -> fetch_thirdparty ();
2011-11-09 14:31:43 +01:00
// Check parameters
2011-11-14 16:23:59 +01:00
if ( $object -> type != 3 && ! empty ( $conf -> global -> STOCK_CALCULATE_ON_BILL ) && $object -> hasProductsOrServices ( 1 ))
2011-05-05 09:25:31 +02:00
{
2011-11-09 14:31:43 +01:00
if ( ! $idwarehouse || $idwarehouse == - 1 )
2011-05-05 09:25:31 +02:00
{
2011-11-09 14:31:43 +01:00
$error ++ ;
2012-07-23 21:45:22 +02:00
$mesgs [] = $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( " Warehouse " ));
2011-11-09 14:31:43 +01:00
$action = '' ;
2011-05-05 09:25:31 +02:00
}
}
2011-11-09 14:31:43 +01:00
if ( ! $error )
2011-05-05 09:25:31 +02:00
{
2011-11-09 14:31:43 +01:00
$result = $object -> validate ( $user , '' , $idwarehouse );
if ( $result >= 0 )
{
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && ! empty ( $_REQUEST [ 'lang_id' ])) $newlang = $_REQUEST [ 'lang_id' ];
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2011-12-02 19:57:20 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
$ret = $object -> fetch ( $id ); // Reload to get new records
2012-05-21 17:12:57 +02:00
facture_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref , $hookmanager );
2011-12-02 19:57:20 +01:00
}
2011-11-09 14:31:43 +01:00
}
else
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $object -> error . '</div>' ;
2011-11-09 14:31:43 +01:00
}
2011-05-05 09:25:31 +02:00
}
2008-08-12 20:20:18 +02:00
}
2011-11-14 16:57:26 +01:00
// Go back to draft status (unvalidate)
2012-03-13 20:21:08 +01:00
else if ( $action == 'confirm_modif' && (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && $user -> rights -> facture -> valider ) || $user -> rights -> facture -> invoice_advance -> unvalidate ))
2008-08-12 20:20:18 +02:00
{
2011-11-14 16:57:26 +01:00
$idwarehouse = GETPOST ( 'idwarehouse' );
2011-11-16 18:58:11 +01:00
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
$object -> fetch_thirdparty ();
2011-11-14 16:57:26 +01:00
// Check parameters
if ( $object -> type != 3 && ! empty ( $conf -> global -> STOCK_CALCULATE_ON_BILL ) && $object -> hasProductsOrServices ( 1 ))
2011-05-05 09:25:31 +02:00
{
2011-11-14 16:57:26 +01:00
if ( ! $idwarehouse || $idwarehouse == - 1 )
2011-05-05 09:25:31 +02:00
{
2011-11-14 16:57:26 +01:00
$error ++ ;
2012-07-23 21:45:22 +02:00
$mesgs [] = $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( " Warehouse " ));
2011-11-14 16:57:26 +01:00
$action = '' ;
2011-05-05 09:25:31 +02:00
}
}
2011-11-14 16:57:26 +01:00
if ( ! $error )
2011-05-05 09:25:31 +02:00
{
2011-11-14 16:57:26 +01:00
// On verifie si la facture a des paiements
$sql = 'SELECT pf.amount' ;
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'paiement_facture as pf' ;
$sql .= ' WHERE pf.fk_facture = ' . $object -> id ;
2011-11-16 18:58:11 +01:00
2011-11-14 16:57:26 +01:00
$result = $db -> query ( $sql );
if ( $result )
{
$i = 0 ;
$num = $db -> num_rows ( $result );
2011-11-16 18:58:11 +01:00
2011-11-14 16:57:26 +01:00
while ( $i < $num )
{
$objp = $db -> fetch_object ( $result );
$totalpaye += $objp -> amount ;
$i ++ ;
}
}
else
{
dol_print_error ( $db , '' );
}
2011-11-16 18:58:11 +01:00
2011-11-14 16:57:26 +01:00
$resteapayer = $object -> total_ttc - $totalpaye ;
2011-11-16 18:58:11 +01:00
2011-11-14 16:57:26 +01:00
// On verifie si les lignes de factures ont ete exportees en compta et/ou ventilees
$ventilExportCompta = $object -> getVentilExportCompta ();
2011-11-16 18:58:11 +01:00
2011-11-14 16:57:26 +01:00
// On verifie si aucun paiement n'a ete effectue
if ( $resteapayer == $object -> total_ttc && $object -> paye == 0 && $ventilExportCompta == 0 )
{
$object -> set_draft ( $user , $idwarehouse );
2011-11-16 18:58:11 +01:00
2011-11-14 16:57:26 +01:00
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && ! empty ( $_REQUEST [ 'lang_id' ])) $newlang = $_REQUEST [ 'lang_id' ];
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2011-12-02 19:57:20 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
$ret = $object -> fetch ( $id ); // Reload to get new records
2012-05-21 17:12:57 +02:00
facture_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref , $hookmanager );
2011-12-02 19:57:20 +01:00
}
2011-11-14 16:57:26 +01:00
}
2011-05-05 09:25:31 +02:00
}
2008-08-12 20:20:18 +02:00
}
2009-08-29 17:09:12 +02:00
// Classify "paid"
2012-03-13 20:21:08 +01:00
else if ( $action == 'confirm_paid' && $confirm == 'yes' && $user -> rights -> facture -> paiement )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
$result = $object -> set_paid ( $user );
2008-08-12 20:20:18 +02:00
}
2009-08-29 17:09:12 +02:00
// Classif "paid partialy"
2012-03-13 20:21:08 +01:00
else if ( $action == 'confirm_paid_partially' && $confirm == 'yes' && $user -> rights -> facture -> paiement )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
$close_code = $_POST [ " close_code " ];
$close_note = $_POST [ " close_note " ];
if ( $close_code )
{
$result = $object -> set_paid ( $user , $close_code , $close_note );
}
else
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( " ErrorFieldRequired " , $langs -> trans ( " Reason " )) . '</div>' ;
2011-05-05 09:25:31 +02:00
}
2008-08-12 20:20:18 +02:00
}
2009-08-29 17:09:12 +02:00
// Classify "abandoned"
2012-03-13 20:21:08 +01:00
else if ( $action == 'confirm_canceled' && $confirm == 'yes' )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
$close_code = $_POST [ " close_code " ];
$close_note = $_POST [ " close_note " ];
if ( $close_code )
{
$result = $object -> set_canceled ( $user , $close_code , $close_note );
}
else
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( " ErrorFieldRequired " , $langs -> trans ( " Reason " )) . '</div>' ;
2011-05-05 09:25:31 +02:00
}
2008-08-12 20:20:18 +02:00
}
// Convertir en reduc
2012-03-13 20:21:08 +01:00
else if ( $action == 'confirm_converttoreduc' && $confirm == 'yes' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$db -> begin ();
$object -> fetch ( $id );
$object -> fetch_thirdparty ();
$object -> fetch_lines ();
if ( ! $object -> paye ) // protection against multiple submit
{
// Boucle sur chaque taux de tva
$i = 0 ;
foreach ( $object -> lines as $line )
{
$amount_ht [ $line -> tva_tx ] += $line -> total_ht ;
$amount_tva [ $line -> tva_tx ] += $line -> total_tva ;
$amount_ttc [ $line -> tva_tx ] += $line -> total_ttc ;
$i ++ ;
}
// Insert one discount by VAT rate category
$discount = new DiscountAbsolute ( $db );
if ( $object -> type == 2 ) $discount -> description = '(CREDIT_NOTE)' ;
elseif ( $object -> type == 3 ) $discount -> description = '(DEPOSIT)' ;
else {
$this -> error = " CantConvertToReducAnInvoiceOfThisType " ;
return - 1 ;
}
$discount -> tva_tx = abs ( $object -> total_ttc );
$discount -> fk_soc = $object -> socid ;
$discount -> fk_facture_source = $object -> id ;
$error = 0 ;
foreach ( $amount_ht as $tva_tx => $xxx )
{
$discount -> amount_ht = abs ( $amount_ht [ $tva_tx ]);
$discount -> amount_tva = abs ( $amount_tva [ $tva_tx ]);
$discount -> amount_ttc = abs ( $amount_ttc [ $tva_tx ]);
$discount -> tva_tx = abs ( $tva_tx );
$result = $discount -> create ( $user );
if ( $result < 0 )
{
$error ++ ;
break ;
}
}
if ( ! $error )
{
// Classe facture
$result = $object -> set_paid ( $user );
if ( $result > 0 )
{
2012-07-23 21:31:10 +02:00
//$mesgs[]='OK'.$discount->id;
2011-05-05 09:25:31 +02:00
$db -> commit ();
}
else
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $object -> error . '</div>' ;
2011-05-05 09:25:31 +02:00
$db -> rollback ();
}
}
else
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $discount -> error . '</div>' ;
2011-05-05 09:25:31 +02:00
$db -> rollback ();
}
}
2008-08-12 20:20:18 +02:00
}
/*
2009-05-27 03:48:31 +02:00
* Insert new invoice in database
2008-08-12 20:20:18 +02:00
*/
2012-03-13 20:21:08 +01:00
else if ( $action == 'add' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2012-02-27 22:26:22 +01:00
$object -> socid = GETPOST ( 'socid' , 'int' );
2011-05-05 09:25:31 +02:00
$db -> begin ();
2011-06-06 21:15:44 +02:00
2011-06-01 08:04:48 +02:00
$error = 0 ;
2011-05-05 09:25:31 +02:00
// Replacement invoice
if ( $_POST [ 'type' ] == 1 )
{
2011-09-20 11:59:08 +02:00
$datefacture = dol_mktime ( 12 , 0 , 0 , $_POST [ 'remonth' ], $_POST [ 'reday' ], $_POST [ 'reyear' ]);
2011-05-05 09:25:31 +02:00
if ( empty ( $datefacture ))
{
2011-06-01 08:04:48 +02:00
$error ++ ;
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( " ErrorFieldRequired " , $langs -> trans ( " Date " )) . '</div>' ;
2011-05-05 09:25:31 +02:00
}
if ( ! ( $_POST [ 'fac_replacement' ] > 0 ))
{
2011-06-01 08:04:48 +02:00
$error ++ ;
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( " ErrorFieldRequired " , $langs -> trans ( " ReplaceInvoice " )) . '</div>' ;
2011-05-05 09:25:31 +02:00
}
if ( ! $error )
{
// This is a replacement invoice
$result = $object -> fetch ( $_POST [ 'fac_replacement' ]);
$object -> fetch_thirdparty ();
2011-05-23 17:41:22 +02:00
$object -> date = $datefacture ;
$object -> note_public = trim ( $_POST [ 'note_public' ]);
$object -> note = trim ( $_POST [ 'note' ]);
$object -> ref_client = $_POST [ 'ref_client' ];
2011-05-24 11:50:51 +02:00
$object -> ref_int = $_POST [ 'ref_int' ];
2011-05-23 17:41:22 +02:00
$object -> modelpdf = $_POST [ 'model' ];
$object -> fk_project = $_POST [ 'projectid' ];
$object -> cond_reglement_id = $_POST [ 'cond_reglement_id' ];
$object -> mode_reglement_id = $_POST [ 'mode_reglement_id' ];
$object -> remise_absolue = $_POST [ 'remise_absolue' ];
$object -> remise_percent = $_POST [ 'remise_percent' ];
2011-05-05 09:25:31 +02:00
// Proprietes particulieres a facture de remplacement
2011-05-23 17:41:22 +02:00
$object -> fk_facture_source = $_POST [ 'fac_replacement' ];
$object -> type = 1 ;
2011-05-05 09:25:31 +02:00
$id = $object -> createFromCurrent ( $user );
2012-07-23 21:31:10 +02:00
if ( $id <= 0 ) $mesgs [] = $object -> error ;
2011-05-05 09:25:31 +02:00
}
}
// Credit note invoice
if ( $_POST [ 'type' ] == 2 )
{
if ( ! $_POST [ 'fac_avoir' ] > 0 )
{
2011-06-01 08:04:48 +02:00
$error ++ ;
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( " ErrorFieldRequired " , $langs -> trans ( " CorrectInvoice " )) . '</div>' ;
2011-05-05 09:25:31 +02:00
}
2011-09-20 11:59:08 +02:00
$datefacture = dol_mktime ( 12 , 0 , 0 , $_POST [ 'remonth' ], $_POST [ 'reday' ], $_POST [ 'reyear' ]);
2011-05-05 09:25:31 +02:00
if ( empty ( $datefacture ))
{
2011-06-01 08:04:48 +02:00
$error ++ ;
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( " ErrorFieldRequired " , $langs -> trans ( " Date " )) . '</div>' ;
2011-05-05 09:25:31 +02:00
}
if ( ! $error )
{
// Si facture avoir
2011-09-20 11:59:08 +02:00
$datefacture = dol_mktime ( 12 , 0 , 0 , $_POST [ 'remonth' ], $_POST [ 'reday' ], $_POST [ 'reyear' ]);
2011-05-05 09:25:31 +02:00
//$result=$object->fetch($_POST['fac_avoir']);
2011-05-23 17:41:22 +02:00
$object -> socid = $_POST [ 'socid' ];
$object -> number = $_POST [ 'facnumber' ];
$object -> date = $datefacture ;
$object -> note_public = trim ( $_POST [ 'note_public' ]);
$object -> note = trim ( $_POST [ 'note' ]);
$object -> ref_client = $_POST [ 'ref_client' ];
2011-05-24 11:50:51 +02:00
$object -> ref_int = $_POST [ 'ref_int' ];
2011-05-23 17:41:22 +02:00
$object -> modelpdf = $_POST [ 'model' ];
$object -> fk_project = $_POST [ 'projectid' ];
$object -> cond_reglement_id = 0 ;
$object -> mode_reglement_id = $_POST [ 'mode_reglement_id' ];
$object -> remise_absolue = $_POST [ 'remise_absolue' ];
$object -> remise_percent = $_POST [ 'remise_percent' ];
2011-05-05 09:25:31 +02:00
// Proprietes particulieres a facture avoir
2011-05-23 17:41:22 +02:00
$object -> fk_facture_source = $_POST [ 'fac_avoir' ];
$object -> type = 2 ;
2011-05-05 09:25:31 +02:00
$id = $object -> create ( $user );
// Add predefined lines
for ( $i = 1 ; $i <= $NBLINES ; $i ++ )
{
if ( $_POST [ 'idprod' . $i ])
{
$product = new Product ( $db );
$product -> fetch ( $_POST [ 'idprod' . $i ]);
2011-09-20 11:59:08 +02:00
$startday = dol_mktime ( 12 , 0 , 0 , $_POST [ 'date_start' . $i . 'month' ], $_POST [ 'date_start' . $i . 'day' ], $_POST [ 'date_start' . $i . 'year' ]);
$endday = dol_mktime ( 12 , 0 , 0 , $_POST [ 'date_end' . $i . 'month' ], $_POST [ 'date_end' . $i . 'day' ], $_POST [ 'date_end' . $i . 'year' ]);
2011-05-05 09:25:31 +02:00
$result = $object -> addline ( $id , $product -> description , $product -> price , $_POST [ 'qty' . $i ], $product -> tva_tx , $product -> localtax1_tx , $product -> localtax2_tx , $_POST [ 'idprod' . $i ], $_POST [ 'remise_percent' . $i ], $startday , $endday , 0 , 0 , '' , $product -> price_base_type , $product -> price_ttc , $product -> type );
}
}
}
}
// Standard invoice or Deposit invoice created from a Predefined invoice
if (( $_POST [ 'type' ] == 0 || $_POST [ 'type' ] == 3 ) && $_POST [ 'fac_rec' ] > 0 )
{
2011-09-20 11:59:08 +02:00
$datefacture = dol_mktime ( 12 , 0 , 0 , $_POST [ 'remonth' ], $_POST [ 'reday' ], $_POST [ 'reyear' ]);
2011-05-05 09:25:31 +02:00
if ( empty ( $datefacture ))
{
2011-06-01 08:04:48 +02:00
$error ++ ;
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( " ErrorFieldRequired " , $langs -> trans ( " Date " )) . '</div>' ;
2011-05-05 09:25:31 +02:00
}
if ( ! $error )
{
2011-05-23 17:41:22 +02:00
$object -> socid = $_POST [ 'socid' ];
2011-05-05 09:25:31 +02:00
$object -> type = $_POST [ 'type' ];
$object -> number = $_POST [ 'facnumber' ];
$object -> date = $datefacture ;
2011-05-23 17:41:22 +02:00
$object -> note_public = trim ( $_POST [ 'note_public' ]);
2011-05-05 09:25:31 +02:00
$object -> note = trim ( $_POST [ 'note' ]);
$object -> ref_client = $_POST [ 'ref_client' ];
2011-05-24 11:50:51 +02:00
$object -> ref_int = $_POST [ 'ref_int' ];
2011-05-05 09:25:31 +02:00
$object -> modelpdf = $_POST [ 'model' ];
// Source facture
$object -> fac_rec = $_POST [ 'fac_rec' ];
$id = $object -> create ( $user );
}
}
// Standard or deposit or proforma invoice
if (( $_POST [ 'type' ] == 0 || $_POST [ 'type' ] == 3 || $_POST [ 'type' ] == 4 ) && $_POST [ 'fac_rec' ] <= 0 )
{
2011-09-20 11:59:08 +02:00
$datefacture = dol_mktime ( 12 , 0 , 0 , $_POST [ 'remonth' ], $_POST [ 'reday' ], $_POST [ 'reyear' ]);
2011-05-05 09:25:31 +02:00
if ( empty ( $datefacture ))
{
2011-06-01 08:04:48 +02:00
$error ++ ;
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( " ErrorFieldRequired " , $langs -> trans ( " Date " )) . '</div>' ;
2011-05-05 09:25:31 +02:00
}
if ( ! $error )
{
// Si facture standard
2011-05-23 17:41:22 +02:00
$object -> socid = $_POST [ 'socid' ];
$object -> type = $_POST [ 'type' ];
$object -> number = $_POST [ 'facnumber' ];
$object -> date = $datefacture ;
$object -> note_public = trim ( $_POST [ 'note_public' ]);
$object -> note = trim ( $_POST [ 'note' ]);
$object -> ref_client = $_POST [ 'ref_client' ];
2011-05-24 11:50:51 +02:00
$object -> ref_int = $_POST [ 'ref_int' ];
2011-05-23 17:41:22 +02:00
$object -> modelpdf = $_POST [ 'model' ];
$object -> fk_project = $_POST [ 'projectid' ];
$object -> cond_reglement_id = ( $_POST [ 'type' ] == 3 ? 1 : $_POST [ 'cond_reglement_id' ]);
$object -> mode_reglement_id = $_POST [ 'mode_reglement_id' ];
$object -> amount = $_POST [ 'amount' ];
$object -> remise_absolue = $_POST [ 'remise_absolue' ];
$object -> remise_percent = $_POST [ 'remise_percent' ];
2011-05-05 09:25:31 +02:00
// If creation from another object of another module (Example: origin=propal, originid=1)
if ( $_POST [ 'origin' ] && $_POST [ 'originid' ])
{
// Parse element/subelement (ex: project_task)
$element = $subelement = $_POST [ 'origin' ];
if ( preg_match ( '/^([^_]+)_([^_]+)/i' , $_POST [ 'origin' ], $regs ))
{
$element = $regs [ 1 ];
$subelement = $regs [ 2 ];
}
// For compatibility
if ( $element == 'order' ) { $element = $subelement = 'commande' ; }
if ( $element == 'propal' ) { $element = 'comm/propal' ; $subelement = 'propal' ; }
if ( $element == 'contract' ) { $element = $subelement = 'contrat' ; }
2011-07-02 19:02:00 +02:00
if ( $element == 'inter' ) { $element = $subelement = 'ficheinter' ; }
2012-03-10 18:55:21 +01:00
if ( $element == 'shipping' ) { $element = $subelement = 'expedition' ; }
2011-05-05 09:25:31 +02:00
$object -> origin = $_POST [ 'origin' ];
$object -> origin_id = $_POST [ 'originid' ];
2012-03-15 22:38:55 +01:00
2012-02-21 18:16:24 +01:00
// Possibility to add external linked objects with hooks
$object -> linked_objects [ $object -> origin ] = $object -> origin_id ;
if ( is_array ( $_POST [ 'other_linked_objects' ]) && ! empty ( $_POST [ 'other_linked_objects' ]))
{
$object -> linked_objects = array_merge ( $object -> linked_objects , $_POST [ 'other_linked_objects' ]);
}
2011-05-05 09:25:31 +02:00
$id = $object -> create ( $user );
if ( $id > 0 )
{
dol_include_once ( '/' . $element . '/class/' . $subelement . '.class.php' );
$classname = ucfirst ( $subelement );
$srcobject = new $classname ( $db );
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 )
{
$lines = $srcobject -> lines ;
if ( empty ( $lines ) && method_exists ( $srcobject , 'fetch_lines' )) $lines = $srcobject -> fetch_lines ();
$fk_parent_line = 0 ;
2011-09-10 19:52:21 +02:00
$num = count ( $lines );
2011-05-05 09:25:31 +02:00
for ( $i = 0 ; $i < $num ; $i ++ )
{
2012-08-25 03:28:30 +02:00
$label = ( ! empty ( $lines [ $i ] -> label ) ? $lines [ $i ] -> label : '' );
$desc = ( ! empty ( $lines [ $i ] -> desc ) ? $lines [ $i ] -> desc : $lines [ $i ] -> libelle );
2011-11-08 00:48:26 +01:00
2011-07-17 21:58:55 +02:00
if ( $lines [ $i ] -> subprice < 0 )
2011-05-05 09:25:31 +02:00
{
2011-07-17 21:58:55 +02:00
// Negative line, we create a discount line
2011-09-10 19:52:21 +02:00
$discount = new DiscountAbsolute ( $db );
$discount -> fk_soc = $object -> socid ;
$discount -> amount_ht = abs ( $lines [ $i ] -> total_ht );
$discount -> amount_tva = abs ( $lines [ $i ] -> total_tva );
$discount -> amount_ttc = abs ( $lines [ $i ] -> total_ttc );
$discount -> tva_tx = $lines [ $i ] -> tva_tx ;
$discount -> fk_user = $user -> id ;
$discount -> description = $desc ;
$discountid = $discount -> create ( $user );
if ( $discountid > 0 )
{
2011-09-11 12:34:08 +02:00
$result = $object -> insert_discount ( $discountid ); // This include link_to_invoice
2011-09-10 19:52:21 +02:00
}
else
{
2012-07-23 21:31:10 +02:00
$mesgs [] = $discount -> error ;
2011-09-10 19:52:21 +02:00
$error ++ ;
break ;
}
2011-05-05 09:25:31 +02:00
}
2011-07-17 21:58:55 +02:00
else
{
// Positive line
$product_type = ( $lines [ $i ] -> product_type ? $lines [ $i ] -> product_type : 0 );
// Date start
$date_start = false ;
if ( $lines [ $i ] -> date_debut_prevue ) $date_start = $lines [ $i ] -> date_debut_prevue ;
if ( $lines [ $i ] -> date_debut_reel ) $date_start = $lines [ $i ] -> date_debut_reel ;
if ( $lines [ $i ] -> date_start ) $date_start = $lines [ $i ] -> date_start ;
//Date end
$date_end = false ;
if ( $lines [ $i ] -> date_fin_prevue ) $date_end = $lines [ $i ] -> date_fin_prevue ;
if ( $lines [ $i ] -> date_fin_reel ) $date_end = $lines [ $i ] -> date_fin_reel ;
if ( $lines [ $i ] -> date_end ) $date_end = $lines [ $i ] -> date_end ;
// Reset fk_parent_line for no child products and special product
if (( $lines [ $i ] -> product_type != 9 && empty ( $lines [ $i ] -> fk_parent_line )) || $lines [ $i ] -> product_type == 9 ) {
$fk_parent_line = 0 ;
}
2011-05-05 09:25:31 +02:00
2011-07-17 21:58:55 +02:00
$result = $object -> addline (
2011-10-14 16:44:22 +02:00
$id ,
$desc ,
$lines [ $i ] -> subprice ,
$lines [ $i ] -> qty ,
$lines [ $i ] -> tva_tx ,
$lines [ $i ] -> localtax1_tx ,
$lines [ $i ] -> localtax2_tx ,
$lines [ $i ] -> fk_product ,
$lines [ $i ] -> remise_percent ,
$date_start ,
$date_end ,
0 ,
$lines [ $i ] -> info_bits ,
$lines [ $i ] -> fk_remise_except ,
2012-04-02 18:29:08 +02:00
'HT' ,
2011-10-14 16:44:22 +02:00
0 ,
$product_type ,
$lines [ $i ] -> rang ,
$lines [ $i ] -> special_code ,
$object -> origin ,
$lines [ $i ] -> rowid ,
2012-07-19 11:07:50 +02:00
$fk_parent_line ,
2012-07-25 12:20:45 +02:00
$lines [ $i ] -> fk_fournprice ,
2012-08-25 03:28:30 +02:00
$lines [ $i ] -> pa_ht ,
$label
2011-07-17 21:58:55 +02:00
);
2011-09-10 19:52:21 +02:00
if ( $result > 0 )
{
$lineid = $result ;
}
else
2011-07-17 21:58:55 +02:00
{
2011-09-10 19:52:21 +02:00
$lineid = 0 ;
2011-07-17 21:58:55 +02:00
$error ++ ;
break ;
}
// Defined the new fk_parent_line
if ( $result > 0 && $lines [ $i ] -> product_type == 9 ) {
$fk_parent_line = $result ;
}
2011-05-05 09:25:31 +02:00
}
}
// Hooks
2011-08-11 17:14:50 +02:00
$parameters = array ( 'objFrom' => $srcobject );
2012-02-06 17:18:19 +01:00
$reshook = $hookmanager -> executeHooks ( 'createFrom' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2011-08-10 19:56:02 +02:00
if ( $reshook < 0 ) $error ++ ;
2011-05-05 09:25:31 +02:00
}
else
{
2012-07-23 21:31:10 +02:00
$mesgs [] = $srcobject -> error ;
2011-05-05 09:25:31 +02:00
$error ++ ;
}
}
else
{
2012-07-23 21:31:10 +02:00
$mesgs [] = $object -> error ;
2011-05-05 09:25:31 +02:00
$error ++ ;
}
}
// If some invoice's lines already known
else
{
$id = $object -> create ( $user );
for ( $i = 1 ; $i <= $NBLINES ; $i ++ )
{
if ( $_POST [ 'idprod' . $i ])
{
$product = new Product ( $db );
$product -> fetch ( $_POST [ 'idprod' . $i ]);
2011-09-20 11:59:08 +02:00
$startday = dol_mktime ( 12 , 0 , 0 , $_POST [ 'date_start' . $i . 'month' ], $_POST [ 'date_start' . $i . 'day' ], $_POST [ 'date_start' . $i . 'year' ]);
$endday = dol_mktime ( 12 , 0 , 0 , $_POST [ 'date_end' . $i . 'month' ], $_POST [ 'date_end' . $i . 'day' ], $_POST [ 'date_end' . $i . 'year' ]);
2011-05-05 09:25:31 +02:00
$result = $object -> addline ( $id , $product -> description , $product -> price , $_POST [ 'qty' . $i ], $product -> tva_tx , $product -> localtax1_tx , $product -> localtax2_tx , $_POST [ 'idprod' . $i ], $_POST [ 'remise_percent' . $i ], $startday , $endday , 0 , 0 , '' , $product -> price_base_type , $product -> price_ttc , $product -> type );
}
}
}
}
}
// End of object creation, we show it
if ( $id > 0 && ! $error )
{
$db -> commit ();
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $id );
exit ;
}
else
{
$db -> rollback ();
2011-06-01 08:04:48 +02:00
$action = 'create' ;
2011-05-05 09:25:31 +02:00
$_GET [ " origin " ] = $_POST [ " origin " ];
$_GET [ " originid " ] = $_POST [ " originid " ];
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $object -> error . '</div>' ;
2011-05-05 09:25:31 +02:00
}
2008-08-12 20:20:18 +02:00
}
2009-08-29 17:09:12 +02:00
// Add a new line
2012-03-13 20:21:08 +01:00
else if (( $action == 'addline' || $action == 'addline_predef' ) && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2012-08-23 07:50:20 +02:00
$langs -> load ( 'errors' );
$error = false ;
2011-05-05 09:25:31 +02:00
2012-08-23 07:50:20 +02:00
$idprod = GETPOST ( 'idprod' , 'int' );
2012-08-27 19:11:44 +02:00
$product_desc = ( GETPOST ( 'product_desc' ) ? GETPOST ( 'product_desc' ) : ( GETPOST ( 'np_desc' ) ? GETPOST ( 'np_desc' ) : ( GETPOST ( 'dp_desc' ) ? GETPOST ( 'dp_desc' ) : '' )));
$price_ht = GETPOST ( 'price_ht' );
$np_price = GETPOST ( 'np_price' );
2012-08-23 07:50:20 +02:00
2012-08-27 19:11:44 +02:00
if ( $conf -> global -> MAIN_FEATURES_LEVEL > 1 && ( empty ( $idprod ) || GETPOST ( 'update_price' )) && ( $price_ht < 0 ) && ( GETPOST ( 'qty' ) < 0 ))
2011-11-22 00:19:57 +01:00
{
2012-08-27 19:11:44 +02:00
setEventMessage ( $langs -> trans ( 'ErrorBothFieldCantBeNegative' , $langs -> transnoentitiesnoconv ( 'UnitPriceHT' ), $langs -> transnoentitiesnoconv ( 'Qty' )), 'errors' );
2012-08-23 07:50:20 +02:00
$error = true ;
2011-11-22 00:19:57 +01:00
}
2012-08-28 15:35:32 +02:00
else if ( $conf -> global -> MAIN_FEATURES_LEVEL < 2 && empty ( $idprod ) && ( $np_price < 0 ) && ( GETPOST ( 'qty' ) < 0 ))
2011-05-05 09:25:31 +02:00
{
2012-08-27 19:11:44 +02:00
setEventMessage ( $langs -> trans ( 'ErrorBothFieldCantBeNegative' , $langs -> transnoentitiesnoconv ( 'UnitPriceHT' ), $langs -> transnoentitiesnoconv ( 'Qty' )), 'errors' );
2012-08-23 07:50:20 +02:00
$error = true ;
2011-05-05 09:25:31 +02:00
}
2012-08-27 19:11:44 +02:00
if ( empty ( $idprod ) && GETPOST ( 'type' ) < 0 )
2011-05-05 09:25:31 +02:00
{
2012-08-27 19:11:44 +02:00
setEventMessage ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( 'Type' )), 'errors' );
2012-08-23 07:50:20 +02:00
$error = true ;
2011-05-05 09:25:31 +02:00
}
2012-08-27 19:11:44 +02:00
if ( $conf -> global -> MAIN_FEATURES_LEVEL > 1 && empty ( $idprod ) && ( ! ( $price_ht >= 0 ) || $price_ht == '' )) // Unit price can be 0 but not ''
{
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " UnitPriceHT " )), 'errors' );
$error ++ ;
}
2012-08-28 15:35:32 +02:00
else if ( $conf -> global -> MAIN_FEATURES_LEVEL < 2 && empty ( $idprod ) && ( ! ( $np_price >= 0 ) || $np_price == '' )) // Unit price can be 0 but not ''
2012-08-27 19:11:44 +02:00
{
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " UnitPriceHT " )), 'errors' );
$error ++ ;
}
2012-08-23 07:50:20 +02:00
if ( ! GETPOST ( 'qty' ) && GETPOST ( 'qty' ) == '' )
2011-05-05 09:25:31 +02:00
{
2012-08-23 07:50:20 +02:00
setEventMessage ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( 'Qty' )), 'errors' );
$error = true ;
2011-05-05 09:25:31 +02:00
}
2012-08-27 19:11:44 +02:00
if ( empty ( $idprod ) && empty ( $product_desc ))
2011-05-05 09:25:31 +02:00
{
2012-08-23 07:50:20 +02:00
setEventMessage ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( 'Description' )), 'errors' );
$error = true ;
2011-05-05 09:25:31 +02:00
}
2012-08-23 07:50:20 +02:00
2012-08-27 19:11:44 +02:00
if ( ! $error && ( GETPOST ( 'qty' ) >= 0 ) && ( ! empty ( $product_desc ) || ! empty ( $idprod )))
2011-05-05 09:25:31 +02:00
{
$ret = $object -> fetch ( $id );
if ( $ret < 0 )
{
dol_print_error ( $db , $object -> error );
exit ;
}
$ret = $object -> fetch_thirdparty ();
2012-08-25 15:21:34 +02:00
// Clean parameters
2012-08-27 19:11:44 +02:00
$predef = (( ! empty ( $idprod ) && $conf -> global -> MAIN_FEATURES_LEVEL < 2 ) ? '_predef' : '' );
$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' ));
2012-08-28 15:35:32 +02:00
$price_base_type = ( GETPOST ( 'price_base_type' , 'alpha' ) ? GETPOST ( 'price_base_type' , 'alpha' ) : 'HT' );
2011-05-05 09:25:31 +02:00
// Ecrase $pu par celui du produit
// Ecrase $desc par celui du produit
// Ecrase $txtva par celui du produit
// Ecrase $base_price_type par celui du produit
2012-08-23 07:50:20 +02:00
if ( ! empty ( $idprod ))
2011-05-05 09:25:31 +02:00
{
2011-09-11 20:35:38 +02:00
$prod = new Product ( $db );
2012-08-23 07:50:20 +02:00
$prod -> fetch ( $idprod );
2011-05-05 09:25:31 +02:00
2012-08-29 17:40:13 +02:00
$label = (( GETPOST ( 'product_label' ) && GETPOST ( 'product_label' ) != $prod -> label ) ? GETPOST ( 'product_label' ) : '' );
2012-08-28 15:35:32 +02:00
// Update if prices fields are defined
2012-08-29 17:40:13 +02:00
if ( $conf -> global -> MAIN_FEATURES_LEVEL > 1 && isset ( $price_ht ))
2011-05-05 09:25:31 +02:00
{
2012-08-29 17:40:13 +02:00
$pu_ht = price2num ( $price_ht , 'MU' );
2012-08-28 15:35:32 +02:00
$pu_ttc = price2num ( GETPOST ( 'price_ttc' ), 'MU' );
$tva_tx = str_replace ( '*' , '' , GETPOST ( 'tva_tx' ));
$tva_npr = preg_match ( '/\*/' , GETPOST ( 'tva_tx' )) ? 1 : 0 ;
2011-05-05 09:25:31 +02:00
}
else
{
2012-08-28 15:35:32 +02:00
$tva_tx = get_default_tva ( $mysoc , $object -> client , $prod -> id );
$tva_npr = get_default_npr ( $mysoc , $object -> client , $prod -> id );
2011-05-05 09:25:31 +02:00
2012-08-28 15:35:32 +02:00
// We define price for product
if ( ! empty ( $conf -> global -> PRODUIT_MULTIPRICES ) && ! empty ( $object -> client -> price_level ))
2012-08-25 15:21:34 +02:00
{
2012-08-28 15:35:32 +02:00
$pu_ht = $prod -> multiprices [ $object -> client -> price_level ];
$pu_ttc = $prod -> multiprices_ttc [ $object -> client -> price_level ];
$price_min = $prod -> multiprices_min [ $object -> client -> price_level ];
$price_base_type = $prod -> multiprices_base_type [ $object -> client -> price_level ];
2012-08-25 15:21:34 +02:00
}
2012-08-28 15:35:32 +02:00
else
2012-08-25 15:21:34 +02:00
{
2012-08-28 15:35:32 +02:00
$pu_ht = $prod -> price ;
$pu_ttc = $prod -> price_ttc ;
$price_min = $prod -> price_min ;
$price_base_type = $prod -> price_base_type ;
2012-08-25 15:21:34 +02:00
}
2012-08-23 07:50:20 +02:00
2012-08-28 15:35:32 +02:00
// On reevalue prix selon taux tva car taux tva transaction peut etre different
// de ceux du produit par defaut (par exemple si pays different entre vendeur et acheteur).
if ( $tva_tx != $prod -> tva_tx )
{
if ( $price_base_type != 'HT' )
{
$pu_ht = price2num ( $pu_ttc / ( 1 + ( $tva_tx / 100 )), 'MU' );
}
else
{
$pu_ttc = price2num ( $pu_ht * ( 1 + ( $tva_tx / 100 )), 'MU' );
}
}
2011-05-05 09:25:31 +02:00
}
2012-01-15 15:16:06 +01:00
2012-08-29 17:40:13 +02:00
if ( $conf -> global -> MAIN_FEATURES_LEVEL > 1 ) {
2012-08-25 15:21:34 +02:00
2012-08-27 19:11:44 +02:00
$desc = $product_desc ;
2012-08-25 15:21:34 +02:00
} else {
// Define output language
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && ! empty ( $conf -> global -> PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE ))
{
$outputlangs = $langs ;
$newlang = '' ;
if ( empty ( $newlang ) && GETPOST ( 'lang_id' )) $newlang = GETPOST ( 'lang_id' );
if ( empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$desc = ( ! empty ( $prod -> multilangs [ $outputlangs -> defaultlang ][ " description " ])) ? $prod -> multilangs [ $outputlangs -> defaultlang ][ " description " ] : $prod -> description ;
}
else
{
$desc = $prod -> description ;
}
2012-08-27 19:11:44 +02:00
$desc .= ( $desc && ! empty ( $product_desc )) ? (( dol_textishtml ( $desc ) || dol_textishtml ( $product_desc )) ? " <br /> \n " : " \n " ) : " " ;
$desc .= $product_desc ;
2012-08-23 07:50:20 +02:00
}
2012-01-13 16:53:28 +01:00
2010-12-02 00:22:25 +01:00
if ( ! empty ( $prod -> customcode ) || ! empty ( $prod -> country_code ))
{
$tmptxt = '(' ;
if ( ! empty ( $prod -> customcode )) $tmptxt .= $langs -> transnoentitiesnoconv ( " CustomCode " ) . ': ' . $prod -> customcode ;
if ( ! empty ( $prod -> customcode ) && ! empty ( $prod -> country_code )) $tmptxt .= ' - ' ;
if ( ! empty ( $prod -> country_code )) $tmptxt .= $langs -> transnoentitiesnoconv ( " CountryOrigin " ) . ': ' . getCountry ( $prod -> country_code , 0 , $db , $langs , 0 );
$tmptxt .= ')' ;
2011-08-31 17:30:56 +02:00
$desc .= ( dol_textishtml ( $desc ) ? " <br> \n " : " \n " ) . $tmptxt ;
2010-12-02 00:22:25 +01:00
}
2012-08-23 07:50:20 +02:00
2011-05-05 09:25:31 +02:00
$type = $prod -> type ;
}
else
{
2012-08-27 19:11:44 +02:00
$pu_ht = ( $price_ht ? $price_ht : $np_price );
2012-08-28 15:35:32 +02:00
$pu_ttc = price2num ( GETPOST ( 'price_ttc' ), 'MU' );
2012-08-27 19:11:44 +02:00
$rate = GETPOST ( 'tva_tx' ) ? GETPOST ( 'tva_tx' ) : GETPOST ( 'np_tva_tx' );
$tva_tx = str_replace ( '*' , '' , $rate );
$tva_npr = preg_match ( '/\*/' , $rate ) ? 1 : 0 ;
2012-08-23 07:50:20 +02:00
$label = ( GETPOST ( 'product_label' ) ? GETPOST ( 'product_label' ) : '' );
2012-08-27 19:11:44 +02:00
$desc = $product_desc ;
2012-08-23 07:50:20 +02:00
$type = GETPOST ( 'type' );
2011-05-05 09:25:31 +02:00
}
2012-08-25 15:21:34 +02:00
// Margin
2012-08-27 19:11:44 +02:00
$fournprice = ( GETPOST ( 'fournprice' ) ? GETPOST ( 'fournprice' ) : ( GETPOST ( 'np_fournprice' ) ? GETPOST ( 'np_fournprice' ) : '' ));
$buyingprice = ( GETPOST ( 'buying_price' ) ? GETPOST ( 'buying_price' ) : ( GETPOST ( 'np_buying_price' ) ? GETPOST ( 'np_buying_price' ) : '' ));
2012-08-25 15:21:34 +02:00
// Local Taxes
$localtax1_tx = get_localtax ( $tva_tx , 1 , $object -> client );
2012-08-23 07:50:20 +02:00
$localtax2_tx = get_localtax ( $tva_tx , 2 , $object -> client );
2012-07-23 21:31:10 +02:00
2011-05-05 09:25:31 +02:00
$info_bits = 0 ;
if ( $tva_npr ) $info_bits |= 0x01 ;
2012-08-25 15:21:34 +02:00
if ( ! empty ( $price_min ) && ( price2num ( $pu_ht ) * ( 1 - price2num ( GETPOST ( 'remise_percent' )) / 100 ) < price2num ( $price_min )))
{
2012-08-23 07:50:20 +02:00
$mesg = $langs -> trans ( " CantBeLessThanMinPrice " , price2num ( $price_min , 'MU' ) . getCurrencySymbol ( $conf -> currency ));
2012-08-25 15:21:34 +02:00
setEventMessage ( $mesg , 'errors' );
}
else
{
// Insert line
$result = $object -> addline (
$id ,
$desc ,
$pu_ht ,
GETPOST ( 'qty' ),
$tva_tx ,
$localtax1_tx ,
$localtax2_tx ,
$idprod ,
GETPOST ( 'remise_percent' ),
$date_start ,
$date_end ,
0 ,
$info_bits ,
'' ,
$price_base_type ,
$pu_ttc ,
$type ,
- 1 ,
0 ,
'' ,
0 ,
GETPOST ( 'fk_parent_line' ),
$fournprice ,
2012-08-23 07:50:20 +02:00
$buyingprice ,
2012-08-25 15:21:34 +02:00
$label
2012-08-23 07:50:20 +02:00
);
2012-08-25 15:21:34 +02:00
if ( $result > 0 )
2012-08-23 07:50:20 +02:00
{
2012-08-25 15:21:34 +02:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
2012-08-23 07:50:20 +02:00
{
2012-08-25 15:21:34 +02:00
// Define output language
$outputlangs = $langs ;
$newlang = GETPOST ( 'lang_id' , 'alpha' );
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $id ); // Reload to get new records
2012-08-23 07:50:20 +02:00
facture_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref , $hookmanager );
}
2012-08-25 15:21:34 +02:00
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
unset ( $_POST [ 'idprod' ]);
unset ( $_POST [ 'remise_percent' ]);
2012-08-23 07:50:20 +02:00
unset ( $_POST [ 'price_ht' ]);
unset ( $_POST [ 'price_ttc' ]);
unset ( $_POST [ 'tva_tx' ]);
unset ( $_POST [ 'product_ref' ]);
unset ( $_POST [ 'product_label' ]);
unset ( $_POST [ 'product_desc' ]);
unset ( $_POST [ 'fournprice' ]);
2012-08-25 15:21:34 +02:00
unset ( $_POST [ 'buying_price' ]);
2012-08-27 19:11:44 +02:00
// old method
unset ( $_POST [ 'np_price' ]);
unset ( $_POST [ 'np_desc' ]);
unset ( $_POST [ 'dp_desc' ]);
unset ( $_POST [ 'np_fournprice' ]);
unset ( $_POST [ 'np_buying_price' ]);
2012-08-25 15:21:34 +02:00
}
else
{
setEventMessage ( $object -> error , 'errors' );
}
$action = '' ;
2011-05-05 09:25:31 +02:00
}
}
2008-08-12 20:20:18 +02:00
}
2012-03-13 20:21:08 +01:00
else if ( $action == 'updateligne' && $user -> rights -> facture -> creer && $_POST [ 'save' ] == $langs -> trans ( 'Save' ))
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
if ( ! $object -> fetch ( $id ) > 0 ) dol_print_error ( $db );
$object -> fetch_thirdparty ();
// Clean parameters
$date_start = '' ;
$date_end = '' ;
2012-08-25 15:21:34 +02:00
$date_start = dol_mktime ( GETPOST ( 'date_starthour' ), GETPOST ( 'date_startmin' ), GETPOST ( 'date_startsec' ), GETPOST ( 'date_startmonth' ), GETPOST ( 'date_startday' ), GETPOST ( 'date_startyear' ));
2012-08-23 13:45:51 +02:00
$date_end = dol_mktime ( GETPOST ( 'date_endhour' ), GETPOST ( 'date_endmin' ), GETPOST ( 'date_endsec' ), GETPOST ( 'date_endmonth' ), GETPOST ( 'date_endday' ), GETPOST ( 'date_endyear' ));
2012-08-25 03:28:30 +02:00
$description = dol_htmlcleanlastbr ( GETPOST ( 'product_desc' ));
$pu_ht = GETPOST ( 'price_ht' );
2009-02-04 23:12:23 +01:00
2011-05-05 09:25:31 +02:00
// Define info_bits
$info_bits = 0 ;
2012-08-25 03:28:30 +02:00
if ( preg_match ( '/\*/' , GETPOST ( 'tva_tx' ))) $info_bits |= 0x01 ;
2011-05-05 09:25:31 +02:00
// Define vat_rate
$vat_rate = $_POST [ 'tva_tx' ];
$vat_rate = str_replace ( '*' , '' , $vat_rate );
$localtax1_rate = get_localtax ( $vat_rate , 1 , $object -> client );
$localtax2_rate = get_localtax ( $vat_rate , 2 , $object -> client );
2012-08-25 03:28:30 +02:00
// Add buying price
$fournprice = ( GETPOST ( 'fournprice' ) ? GETPOST ( 'fournprice' ) : '' );
$buyingprice = ( GETPOST ( 'buying_price' ) ? GETPOST ( 'buying_price' ) : '' );
2012-07-19 11:07:50 +02:00
2011-05-05 09:25:31 +02:00
// Check minimum price
2012-08-25 03:28:30 +02:00
$productid = GETPOST ( 'productid' , 'int' );
if ( ! empty ( $productid ))
2011-05-05 09:25:31 +02:00
{
$product = new Product ( $db );
$product -> fetch ( $productid );
2012-08-25 03:28:30 +02:00
2011-05-05 09:25:31 +02:00
$type = $product -> type ;
2012-08-25 03:28:30 +02:00
2011-05-05 09:25:31 +02:00
$price_min = $product -> price_min ;
2012-08-25 03:28:30 +02:00
if ( ! empty ( $conf -> global -> PRODUIT_MULTIPRICES ) && ! empty ( $object -> client -> price_level ))
$price_min = $product -> multiprices_min [ $object -> client -> price_level ];
$label = (( GETPOST ( 'update_label' ) && GETPOST ( 'product_label' )) ? GETPOST ( 'product_label' ) : '' );
2012-08-25 15:21:34 +02:00
if ( $price_min && ( price2num ( $pu_ht ) * ( 1 - price2num ( GETPOST ( 'remise_percent' )) / 100 ) < price2num ( $price_min )))
{
setEventMessage ( $langs -> trans ( " CantBeLessThanMinPrice " , price2num ( $price_min , 'MU' )) . getCurrencySymbol ( $conf -> currency ), 'errors' );
$error ++ ;
2012-08-25 03:28:30 +02:00
}
2011-05-05 09:25:31 +02:00
}
2012-08-25 15:21:34 +02:00
else
{
$type = GETPOST ( 'type' );
$label = ( GETPOST ( 'product_label' ) ? GETPOST ( 'product_label' ) : '' );
// Check parameters
if ( GETPOST ( 'type' ) < 0 ) {
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Type " )), 'errors' );
$error ++ ;
}
2011-05-05 09:25:31 +02:00
}
2012-08-25 03:28:30 +02:00
// Update line
if ( ! $error )
{
$result = $object -> updateline (
GETPOST ( 'lineid' ),
$description ,
$pu_ht ,
GETPOST ( 'qty' ),
GETPOST ( 'remise_percent' ),
$date_start ,
$date_end ,
$vat_rate ,
$localtax1_rate ,
$localtax2_rate ,
'HT' ,
$info_bits ,
$type ,
GETPOST ( 'fk_parent_line' ),
0 ,
$fournprice ,
$buyingprice ,
$label
);
2012-08-25 15:21:34 +02:00
if ( $result >= 0 )
{
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
2012-08-25 03:28:30 +02:00
{
2012-08-25 15:21:34 +02:00
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' )) $newlang = GETPOST ( 'lang_id' );
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
2012-08-25 03:28:30 +02:00
}
2012-08-25 15:21:34 +02:00
$ret = $object -> fetch ( $id ); // Reload to get new records
2012-08-25 03:28:30 +02:00
facture_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref , $hookmanager );
}
2011-05-05 09:25:31 +02:00
2012-08-25 15:21:34 +02:00
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
unset ( $_POST [ 'productid' ]);
unset ( $_POST [ 'remise_percent' ]);
unset ( $_POST [ 'price_ht' ]);
unset ( $_POST [ 'price_ttc' ]);
unset ( $_POST [ 'tva_tx' ]);
unset ( $_POST [ 'product_ref' ]);
unset ( $_POST [ 'product_label' ]);
unset ( $_POST [ 'product_desc' ]);
unset ( $_POST [ 'fournprice' ]);
2012-08-25 03:28:30 +02:00
unset ( $_POST [ 'buying_price' ]);
2012-08-25 15:21:34 +02:00
}
else
{
setEventMessage ( $object -> error , 'errors' );
2012-08-25 03:28:30 +02:00
}
2011-05-05 09:25:31 +02:00
}
2008-08-12 20:20:18 +02:00
}
2012-03-13 20:21:08 +01:00
else if ( $action == 'updateligne' && $user -> rights -> facture -> creer && $_POST [ 'cancel' ] == $langs -> trans ( 'Cancel' ))
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $id ); // Pour reaffichage de la fiche en cours d'edition
exit ;
2008-08-12 20:20:18 +02:00
}
2011-06-13 15:07:10 +02:00
// Modify line position (up)
2012-03-13 20:21:08 +01:00
else if ( $action == 'up' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
$object -> fetch_thirdparty ();
$object -> line_up ( $_GET [ 'rowid' ]);
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && ! empty ( $_REQUEST [ 'lang_id' ])) $newlang = $_REQUEST [ 'lang_id' ];
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2012-05-21 17:12:57 +02:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) facture_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref , $hookmanager );
2011-05-05 09:25:31 +02:00
2011-09-20 14:56:06 +02:00
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id . '#' . $_GET [ 'rowid' ]);
2011-05-05 09:25:31 +02:00
exit ;
2008-08-12 20:20:18 +02:00
}
2011-06-13 15:07:10 +02:00
// Modify line position (down)
2012-03-13 20:21:08 +01:00
else if ( $action == 'down' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
$object -> fetch_thirdparty ();
$object -> line_down ( $_GET [ 'rowid' ]);
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && ! empty ( $_REQUEST [ 'lang_id' ])) $newlang = $_REQUEST [ 'lang_id' ];
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2012-05-21 17:12:57 +02:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) facture_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref , $hookmanager );
2011-05-05 09:25:31 +02:00
2011-09-20 14:56:06 +02:00
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id . '#' . $_GET [ 'rowid' ]);
2011-05-05 09:25:31 +02:00
exit ;
2008-08-12 20:20:18 +02:00
}
/*
2010-01-13 11:30:33 +01:00
* Add file in email form
2008-08-12 20:20:18 +02:00
*/
2012-07-10 18:57:27 +02:00
if ( GETPOST ( 'addfile' ))
2008-08-12 20:20:18 +02:00
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
2010-05-01 16:28:48 +02:00
2011-06-06 21:15:44 +02:00
// Set tmp user directory
2011-05-05 09:25:31 +02:00
$vardir = $conf -> user -> dir_output . " / " . $user -> id ;
2011-07-10 22:03:38 +02:00
$upload_dir_tmp = $vardir . '/temp' ;
2008-08-12 20:20:18 +02:00
2012-07-29 12:54:19 +02:00
dol_add_file_process ( $upload_dir_tmp , 0 , 0 );
2011-06-01 08:04:48 +02:00
$action = 'presend' ;
2008-08-12 20:20:18 +02:00
}
2010-01-13 11:30:33 +01:00
/*
* Remove file in email form
*/
if ( ! empty ( $_POST [ 'removedfile' ]))
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
2010-05-12 13:29:21 +02:00
2011-05-05 09:25:31 +02:00
// Set tmp user directory
$vardir = $conf -> user -> dir_output . " / " . $user -> id ;
2011-07-10 22:03:38 +02:00
$upload_dir_tmp = $vardir . '/temp' ;
2010-01-13 11:30:33 +01:00
2011-12-22 09:07:02 +01:00
// TODO Delete only files that was uploaded from email form
2012-07-29 12:54:19 +02:00
dol_remove_file_process ( $_POST [ 'removedfile' ], 0 );
2011-06-01 08:04:48 +02:00
$action = 'presend' ;
2010-01-13 11:30:33 +01:00
}
2008-08-12 20:20:18 +02:00
/*
* Send mail
*/
2011-04-18 17:06:23 +02:00
if (( $action == 'send' || $action == 'relance' ) && ! $_POST [ 'addfile' ] && ! $_POST [ 'removedfile' ] && ! $_POST [ 'cancel' ])
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$langs -> load ( 'mails' );
$actiontypecode = '' ; $subject = '' ; $actionmsg = '' ; $actionmsg2 = '' ;
$result = $object -> fetch ( $id );
$result = $object -> fetch_thirdparty ();
if ( $result > 0 )
{
2012-03-16 00:34:41 +01:00
// $ref = dol_sanitizeFileName($object->ref);
// $file = $conf->facture->dir_output . '/' . $ref . '/' . $ref . '.pdf';
2011-05-05 09:25:31 +02:00
2012-03-16 00:34:41 +01:00
// if (is_readable($file))
// {
2011-05-05 09:25:31 +02:00
if ( $_POST [ 'sendto' ])
{
// Le destinataire a ete fourni via le champ libre
$sendto = $_POST [ 'sendto' ];
$sendtoid = 0 ;
}
2011-07-07 23:32:18 +02:00
elseif ( $_POST [ 'receiver' ] != '-1' )
2011-05-05 09:25:31 +02:00
{
2011-07-07 23:32:18 +02:00
// Recipient was provided from combo list
if ( $_POST [ 'receiver' ] == 'thirdparty' ) // Id of third party
2011-05-05 09:25:31 +02:00
{
$sendto = $object -> client -> email ;
$sendtoid = 0 ;
}
else // Id du contact
{
$sendto = $object -> client -> contact_get_property ( $_POST [ 'receiver' ], 'email' );
$sendtoid = $_POST [ 'receiver' ];
}
}
if ( dol_strlen ( $sendto ))
{
$langs -> load ( " commercial " );
$from = $_POST [ 'fromname' ] . ' <' . $_POST [ 'frommail' ] . '>' ;
$replyto = $_POST [ 'replytoname' ] . ' <' . $_POST [ 'replytomail' ] . '>' ;
$message = $_POST [ 'message' ];
$sendtocc = $_POST [ 'sendtocc' ];
$deliveryreceipt = $_POST [ 'deliveryreceipt' ];
if ( $action == 'send' )
{
if ( dol_strlen ( $_POST [ 'subject' ])) $subject = $_POST [ 'subject' ];
else $subject = $langs -> transnoentities ( 'Bill' ) . ' ' . $object -> ref ;
$actiontypecode = 'AC_FAC' ;
$actionmsg = $langs -> transnoentities ( 'MailSentBy' ) . ' ' . $from . ' ' . $langs -> transnoentities ( 'To' ) . ' ' . $sendto . " . \n " ;
if ( $message )
{
$actionmsg .= $langs -> transnoentities ( 'MailTopic' ) . " : " . $subject . " \n " ;
$actionmsg .= $langs -> transnoentities ( 'TextUsedInTheMessageBody' ) . " : \n " ;
$actionmsg .= $message ;
}
//$actionmsg2=$langs->transnoentities('Action'.$actiontypecode);
}
if ( $action == 'relance' )
{
if ( dol_strlen ( $_POST [ 'subject' ])) $subject = $_POST [ 'subject' ];
else $subject = $langs -> transnoentities ( 'Relance facture ' . $object -> ref );
$actiontypecode = 'AC_FAC' ;
$actionmsg = $langs -> transnoentities ( 'MailSentBy' ) . ' ' . $from . ' ' . $langs -> transnoentities ( 'To' ) . ' ' . $sendto . " . \n " ;
if ( $message ) {
$actionmsg .= $langs -> transnoentities ( 'MailTopic' ) . " : " . $subject . " \n " ;
$actionmsg .= $langs -> transnoentities ( 'TextUsedInTheMessageBody' ) . " : \n " ;
$actionmsg .= $message ;
}
//$actionmsg2=$langs->transnoentities('Action'.$actiontypecode);
}
// Create form object
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formmail.class.php' ;
2011-05-05 09:25:31 +02:00
$formmail = new FormMail ( $db );
$attachedfiles = $formmail -> get_attached_files ();
$filepath = $attachedfiles [ 'paths' ];
$filename = $attachedfiles [ 'names' ];
$mimetype = $attachedfiles [ 'mimes' ];
// Send mail
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/CMailFile.class.php' ;
2011-05-05 09:25:31 +02:00
$mailfile = new CMailFile ( $subject , $sendto , $from , $message , $filepath , $mimetype , $filename , $sendtocc , '' , $deliveryreceipt , - 1 );
if ( $mailfile -> error )
{
2012-07-28 22:07:27 +02:00
$mesgs [] = '<div class="error">' . $mailfile -> error . '</div>' ;
2011-05-05 09:25:31 +02:00
}
else
{
$result = $mailfile -> sendfile ();
if ( $result )
{
$error = 0 ;
// Initialisation donnees
2011-06-04 15:12:44 +02:00
$object -> sendtoid = $sendtoid ;
$object -> actiontypecode = $actiontypecode ;
$object -> actionmsg = $actionmsg ; // Long text
$object -> actionmsg2 = $actionmsg2 ; // Short text
$object -> fk_element = $object -> id ;
2011-09-08 23:50:41 +02:00
$object -> elementtype = $object -> element ;
2011-05-05 09:25:31 +02:00
// Appel des triggers
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
2011-05-05 09:25:31 +02:00
$interface = new Interfaces ( $db );
$result = $interface -> run_triggers ( 'BILL_SENTBYMAIL' , $object , $user , $langs , $conf );
if ( $result < 0 ) { $error ++ ; $this -> errors = $interface -> errors ; }
// Fin appel triggers
if ( $error )
{
dol_print_error ( $db );
}
else
{
// Redirect here
// This avoid sending mail twice if going out and then back to page
2012-07-29 08:26:33 +02:00
$mesg = $langs -> trans ( 'MailSuccessfulySent' , $mailfile -> getValidAddress ( $from , 2 ), $mailfile -> getValidAddress ( $sendto , 2 ));
setEventMessage ( $mesg );
2012-07-23 21:31:10 +02:00
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id );
2011-05-05 09:25:31 +02:00
exit ;
}
}
else
{
$langs -> load ( " other " );
$mesg = '<div class="error">' ;
if ( $mailfile -> error )
{
$mesg .= $langs -> trans ( 'ErrorFailedToSendMail' , $from , $sendto );
$mesg .= '<br>' . $mailfile -> error ;
}
else
{
$mesg .= 'No mail sent. Feature is disabled by option MAIN_DISABLE_ALL_MAILS' ;
}
$mesg .= '</div>' ;
2012-07-23 21:31:10 +02:00
$mesgs [] = $mesg ;
2011-05-05 09:25:31 +02:00
}
}
2012-03-16 00:34:41 +01:00
/* }
2011-05-05 09:25:31 +02:00
else
{
$langs -> load ( " other " );
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( 'ErrorMailRecipientIsEmpty' ) . '</div>' ;
2011-05-05 09:25:31 +02:00
dol_syslog ( 'Recipient email is empty' );
2012-03-16 00:34:41 +01:00
} */
2011-05-05 09:25:31 +02:00
}
else
{
2011-10-29 23:52:05 +02:00
$langs -> load ( " errors " );
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( 'ErrorCantReadFile' , $file ) . '</div>' ;
2011-05-05 09:25:31 +02:00
dol_syslog ( 'Failed to read file: ' . $file );
}
}
else
{
$langs -> load ( " other " );
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( 'ErrorFailedToReadEntity' , $langs -> trans ( " Invoice " )) . '</div>' ;
2011-05-05 09:25:31 +02:00
dol_syslog ( 'Impossible de lire les donnees de la facture. Le fichier facture n\'a peut-etre pas ete genere.' );
}
$action = 'presend' ;
2008-08-12 20:20:18 +02:00
}
/*
2010-02-28 23:49:06 +01:00
* Generate document
2008-08-12 20:20:18 +02:00
*/
2012-03-13 20:21:08 +01:00
else if ( $action == 'builddoc' ) // En get ou en post
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$object -> fetch ( $id );
$object -> fetch_thirdparty ();
if ( GETPOST ( 'model' ))
{
$object -> setDocModel ( $user , GETPOST ( 'model' ));
}
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' )) $newlang = GETPOST ( 'lang_id' );
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2012-05-21 17:12:57 +02:00
$result = facture_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref , $hookmanager );
2011-05-05 09:25:31 +02:00
if ( $result <= 0 )
{
dol_print_error ( $db , $result );
exit ;
}
else
{
2011-09-20 14:56:06 +02:00
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id . ( empty ( $conf -> global -> MAIN_JUMP_TAG ) ? '' : '#builddoc' ));
2011-05-05 09:25:31 +02:00
exit ;
}
2008-08-12 20:20:18 +02:00
}
2012-07-02 19:30:37 +02:00
// Remove file in doc form
else if ( $action == 'remove_file' )
{
if ( $object -> fetch ( $id ))
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
2012-07-02 19:30:37 +02:00
$object -> fetch_thirdparty ();
$langs -> load ( " other " );
$upload_dir = $conf -> facture -> dir_output ;
$file = $upload_dir . '/' . GETPOST ( 'file' );
2012-07-29 16:11:52 +02:00
$ret = dol_delete_file ( $file , 0 , 0 , 0 , $object );
if ( $ret ) setEventMessage ( $langs -> trans ( " FileWasRemoved " , GETPOST ( 'urlfile' )));
else setEventMessage ( $langs -> trans ( " ErrorFailToDeleteFile " , GETPOST ( 'urlfile' )), 'errors' );
2012-07-29 15:47:24 +02:00
$action = '' ;
2012-07-02 19:30:37 +02:00
}
2012-06-10 17:09:10 +02:00
}
2012-05-06 02:27:09 +02:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_CONTACTS_TAB ))
2012-03-17 16:05:58 +01:00
{
2012-05-06 02:27:09 +02:00
if ( $action == 'addcontact' && $user -> rights -> facture -> creer )
{
$result = $object -> fetch ( $id );
if ( $result > 0 && $id > 0 )
2012-03-18 14:06:55 +01:00
{
2012-05-06 02:27:09 +02:00
$contactid = ( GETPOST ( 'userid' ) ? GETPOST ( 'userid' ) : GETPOST ( 'contactid' ));
$result = $result = $object -> add_contact ( $contactid , $_POST [ " type " ], $_POST [ " source " ]);
}
if ( $result >= 0 )
{
Header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id );
exit ;
}
else
{
if ( $object -> error == 'DB_ERROR_RECORD_ALREADY_EXISTS' )
{
$langs -> load ( " errors " );
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $langs -> trans ( " ErrorThisContactIsAlreadyDefinedAsThisType " ) . '</div>' ;
2012-05-06 02:27:09 +02:00
}
else
{
2012-07-23 21:31:10 +02:00
$mesgs [] = '<div class="error">' . $object -> error . '</div>' ;
2012-05-06 02:27:09 +02:00
}
}
}
// bascule du statut d'un contact
else if ( $action == 'swapstatut' && $user -> rights -> facture -> creer )
{
if ( $object -> fetch ( $id ))
{
$result = $object -> swapContactStatus ( GETPOST ( 'ligne' ));
}
else
{
dol_print_error ( $db );
}
}
// Efface un contact
else if ( $action == 'deletecontact' && $user -> rights -> facture -> creer )
{
$object -> fetch ( $id );
$result = $object -> delete_contact ( $lineid );
if ( $result >= 0 )
2012-03-18 14:06:55 +01:00
{
2012-05-06 02:27:09 +02:00
Header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id );
exit ;
}
else {
dol_print_error ( $db );
}
2012-03-17 16:05:58 +01:00
}
}
2008-08-12 20:20:18 +02:00
/*
* View
*/
2009-08-02 18:16:15 +02:00
llxHeader ( '' , $langs -> trans ( 'Bill' ), 'EN:Customers_Invoices|FR:Factures_Clients|ES:Facturas_a_clientes' );
2008-08-12 20:20:18 +02:00
2011-11-08 10:18:45 +01:00
$form = new Form ( $db );
2011-05-20 17:59:18 +02:00
$htmlother = new FormOther ( $db );
2008-08-12 20:20:18 +02:00
$formfile = new FormFile ( $db );
2012-05-08 15:43:58 +02:00
$bankaccountstatic = new Account ( $db );
2011-02-19 13:15:17 +01:00
$now = dol_now ();
2008-08-12 20:20:18 +02:00
2010-07-25 23:23:57 +02:00
2008-08-12 20:20:18 +02:00
/*********************************************************************
*
* Mode creation
*
**********************************************************************/
2011-04-18 17:06:23 +02:00
if ( $action == 'create' )
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
$facturestatic = new Facture ( $db );
2008-08-12 20:20:18 +02:00
2011-05-05 09:25:31 +02:00
print_fiche_titre ( $langs -> trans ( 'NewBill' ));
2008-08-12 20:20:18 +02:00
2011-05-05 09:25:31 +02:00
$soc = new Societe ( $db );
2010-09-15 13:17:05 +02:00
if ( $socid ) $res = $soc -> fetch ( $socid );
2008-08-12 20:20:18 +02:00
2012-08-25 03:28:30 +02:00
if ( ! empty ( $origin ) && ! empty ( $originid ))
2011-05-05 09:25:31 +02:00
{
// Parse element/subelement (ex: project_task)
2012-08-25 03:28:30 +02:00
$element = $subelement = $origin ;
if ( preg_match ( '/^([^_]+)_([^_]+)/i' , $origin , $regs ))
2011-05-05 09:25:31 +02:00
{
$element = $regs [ 1 ];
$subelement = $regs [ 2 ];
}
if ( $element == 'project' )
{
2012-08-25 03:28:30 +02:00
$projectid = $originid ;
2011-05-05 09:25:31 +02:00
}
else
{
// For compatibility
if ( $element == 'order' || $element == 'commande' ) { $element = $subelement = 'commande' ; }
if ( $element == 'propal' ) { $element = 'comm/propal' ; $subelement = 'propal' ; }
if ( $element == 'contract' ) { $element = $subelement = 'contrat' ; }
2011-06-13 17:41:47 +02:00
if ( $element == 'shipping' ) { $element = $subelement = 'expedition' ; }
2011-05-05 09:25:31 +02:00
dol_include_once ( '/' . $element . '/class/' . $subelement . '.class.php' );
$classname = ucfirst ( $subelement );
$objectsrc = new $classname ( $db );
2012-08-25 03:28:30 +02:00
$objectsrc -> fetch ( $originid );
2011-05-05 09:25:31 +02:00
if ( empty ( $objectsrc -> lines ) && method_exists ( $objectsrc , 'fetch_lines' )) $objectsrc -> fetch_lines ();
$objectsrc -> fetch_thirdparty ();
2012-08-25 03:28:30 +02:00
$projectid = ( ! empty ( $objectsrc -> fk_project ) ? $objectsrc -> fk_project : '' );
$ref_client = ( ! empty ( $objectsrc -> ref_client ) ? $objectsrc -> ref_client : '' );
$ref_int = ( ! empty ( $objectsrc -> ref_int ) ? $objectsrc -> ref_int : '' );
2011-05-05 09:25:31 +02:00
$soc = $objectsrc -> client ;
2012-08-25 03:28:30 +02:00
$cond_reglement_id = ( ! empty ( $objectsrc -> cond_reglement_id ) ? $objectsrc -> cond_reglement_id : ( ! empty ( $soc -> cond_reglement_id ) ? $soc -> cond_reglement_id : 1 ));
$mode_reglement_id = ( ! empty ( $objectsrc -> mode_reglement_id ) ? $objectsrc -> mode_reglement_id : ( ! empty ( $soc -> mode_reglement_id ) ? $soc -> mode_reglement_id : 0 ));
$remise_percent = ( ! empty ( $objectsrc -> remise_percent ) ? $objectsrc -> remise_percent : ( ! empty ( $soc -> remise_percent ) ? $soc -> remise_percent : 0 ));
$remise_absolue = ( ! empty ( $objectsrc -> remise_absolue ) ? $objectsrc -> remise_absolue : ( ! empty ( $soc -> remise_absolue ) ? $soc -> remise_absolue : 0 ));
2011-05-05 09:25:31 +02:00
$dateinvoice = empty ( $conf -> global -> MAIN_AUTOFILL_DATE ) ? - 1 : 0 ;
}
}
else
{
$cond_reglement_id = $soc -> cond_reglement_id ;
$mode_reglement_id = $soc -> mode_reglement_id ;
$remise_percent = $soc -> remise_percent ;
$remise_absolue = 0 ;
$dateinvoice = empty ( $conf -> global -> MAIN_AUTOFILL_DATE ) ? - 1 : 0 ;
}
$absolute_discount = $soc -> getAvailableDiscounts ();
2012-08-25 03:28:30 +02:00
if ( ! empty ( $conf -> use_javascript_ajax ))
2011-05-05 09:25:31 +02:00
{
2011-04-25 16:24:43 +02:00
print ajax_combobox ( 'fac_replacement' );
print ajax_combobox ( 'fac_avoir' );
2011-05-05 09:25:31 +02:00
}
2011-03-01 11:26:02 +01:00
2011-05-05 09:25:31 +02: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">' ;
print '<input type="hidden" name="socid" value="' . $soc -> id . '">' . " \n " ;
print '<input name="facnumber" type="hidden" value="provisoire">' ;
2011-05-23 17:41:22 +02:00
print '<input name="ref_client" type="hidden" value="' . $ref_client . '">' ;
2011-05-24 11:50:51 +02:00
print '<input name="ref_int" type="hidden" value="' . $ref_int . '">' ;
2012-08-25 03:28:30 +02:00
print '<input type="hidden" name="origin" value="' . $origin . '">' ;
print '<input type="hidden" name="originid" value="' . $originid . '">' ;
2008-08-12 20:20:18 +02:00
2011-05-05 09:25:31 +02:00
print '<table class="border" width="100%">' ;
// Ref
print '<tr><td class="fieldrequired">' . $langs -> trans ( 'Ref' ) . '</td><td colspan="2">' . $langs -> trans ( 'Draft' ) . '</td></tr>' ;
// Factures predefinies
2012-08-25 03:28:30 +02:00
if ( empty ( $origin ) && empty ( $originid ))
2011-05-05 09:25:31 +02:00
{
$sql = 'SELECT r.rowid, r.titre, r.total_ttc' ;
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'facture_rec as r' ;
$sql .= ' WHERE r.fk_soc = ' . $soc -> id ;
$resql = $db -> query ( $sql );
if ( $resql )
{
$num = $db -> num_rows ( $resql );
$i = 0 ;
if ( $num > 0 )
{
print '<tr><td>' . $langs -> trans ( 'CreateFromRepeatableInvoice' ) . '</td><td>' ;
print '<select class="flat" name="fac_rec">' ;
print '<option value="0" selected="selected"></option>' ;
while ( $i < $num )
{
$objp = $db -> fetch_object ( $resql );
print '<option value="' . $objp -> rowid . '"' ;
2012-08-25 03:28:30 +02:00
if ( GETPOST ( 'fac_rec' ) == $objp -> rowid ) print ' selected="selected"' ;
2011-05-05 09:25:31 +02:00
print '>' . $objp -> titre . ' (' . price ( $objp -> total_ttc ) . ' ' . $langs -> trans ( " TTC " ) . ')</option>' ;
$i ++ ;
}
print '</select></td></tr>' ;
}
$db -> free ( $resql );
}
else
{
dol_print_error ( $db );
}
}
// Tiers
print '<tr><td class="fieldrequired">' . $langs -> trans ( 'Customer' ) . '</td><td colspan="2">' ;
print $soc -> getNomUrl ( 1 );
print '<input type="hidden" name="socid" value="' . $soc -> id . '">' ;
print '</td>' ;
print '</tr>' . " \n " ;
// Type de facture
$facids = $facturestatic -> list_replacable_invoices ( $soc -> id );
if ( $facids < 0 )
{
dol_print_error ( $db , $facturestatic );
exit ;
}
$options = " " ;
foreach ( $facids as $facparam )
{
$options .= '<option value="' . $facparam [ 'id' ] . '"' ;
if ( $facparam [ 'id' ] == $_POST [ 'fac_replacement' ]) $options .= ' selected="selected"' ;
$options .= '>' . $facparam [ 'ref' ];
$options .= ' (' . $facturestatic -> LibStatut ( 0 , $facparam [ 'status' ]) . ')' ;
$options .= '</option>' ;
}
$facids = $facturestatic -> list_qualified_avoir_invoices ( $soc -> id );
if ( $facids < 0 )
{
dol_print_error ( $db , $facturestatic );
exit ;
}
$optionsav = " " ;
foreach ( $facids as $key => $value )
{
$newinvoice = new Facture ( $db );
$newinvoice -> fetch ( $key );
$optionsav .= '<option value="' . $key . '"' ;
if ( $key == $_POST [ 'fac_avoir' ]) $optionsav .= ' selected="selected"' ;
$optionsav .= '>' ;
$optionsav .= $newinvoice -> ref ;
$optionsav .= ' (' . $newinvoice -> getLibStatut ( 1 , $value ) . ')' ;
$optionsav .= '</option>' ;
}
print '<tr><td valign="top" class="fieldrequired">' . $langs -> trans ( 'Type' ) . '</td><td colspan="2">' ;
print '<table class="nobordernopadding">' . " \n " ;
// Standard invoice
print '<tr height="18"><td width="16px" valign="middle">' ;
2011-08-31 16:55:54 +02:00
print '<input type="radio" name="type" value="0"' . ( GETPOST ( 'type' ) == 0 ? ' checked="checked"' : '' ) . '>' ;
2011-05-05 09:25:31 +02:00
print '</td><td valign="middle">' ;
2011-11-08 10:18:45 +01:00
$desc = $form -> textwithpicto ( $langs -> trans ( " InvoiceStandardAsk " ), $langs -> transnoentities ( " InvoiceStandardDesc " ), 1 );
2011-05-05 09:25:31 +02:00
print $desc ;
print '</td></tr>' . " \n " ;
// Deposit
print '<tr height="18"><td width="16px" valign="middle">' ;
2011-08-31 16:55:54 +02:00
print '<input type="radio" name="type" value="3"' . ( GETPOST ( 'type' ) == 3 ? ' checked="checked"' : '' ) . '>' ;
2011-05-05 09:25:31 +02:00
print '</td><td valign="middle">' ;
2011-11-08 10:18:45 +01:00
$desc = $form -> textwithpicto ( $langs -> trans ( " InvoiceDeposit " ), $langs -> transnoentities ( " InvoiceDepositDesc " ), 1 );
2011-05-05 09:25:31 +02:00
print $desc ;
print '</td></tr>' . " \n " ;
// Proforma
if ( $conf -> global -> FACTURE_USE_PROFORMAT )
{
print '<tr height="18"><td width="16px" valign="middle">' ;
2011-08-31 16:55:54 +02:00
print '<input type="radio" name="type" value="4"' . ( GETPOST ( 'type' ) == 4 ? ' checked="checked"' : '' ) . '>' ;
2011-05-05 09:25:31 +02:00
print '</td><td valign="middle">' ;
2011-11-08 10:18:45 +01:00
$desc = $form -> textwithpicto ( $langs -> trans ( " InvoiceProForma " ), $langs -> transnoentities ( " InvoiceProFormaDesc " ), 1 );
2011-05-05 09:25:31 +02:00
print $desc ;
print '</td></tr>' . " \n " ;
}
// Replacement
print '<tr height="18"><td valign="middle">' ;
2011-08-31 16:55:54 +02:00
print '<input type="radio" name="type" value="1"' . ( GETPOST ( 'type' ) == 1 ? ' checked="checked"' : '' );
2011-08-31 17:12:09 +02:00
if ( ! $options ) print ' disabled="disabled"' ;
2011-05-05 09:25:31 +02:00
print '>' ;
print '</td><td valign="middle">' ;
$text = $langs -> trans ( " InvoiceReplacementAsk " ) . ' ' ;
$text .= '<select class="flat" name="fac_replacement" id="fac_replacement"' ;
2011-08-31 17:12:09 +02:00
if ( ! $options ) $text .= ' disabled="disabled"' ;
2011-05-05 09:25:31 +02:00
$text .= '>' ;
if ( $options )
{
$text .= '<option value="-1"></option>' ;
$text .= $options ;
}
else
{
$text .= '<option value="-1">' . $langs -> trans ( " NoReplacableInvoice " ) . '</option>' ;
}
$text .= '</select>' ;
2011-11-08 10:18:45 +01:00
$desc = $form -> textwithpicto ( $text , $langs -> transnoentities ( " InvoiceReplacementDesc " ), 1 );
2011-05-05 09:25:31 +02:00
print $desc ;
print '</td></tr>' . " \n " ;
// Credit note
print '<tr height="18"><td valign="middle">' ;
print '<input type="radio" name="type" value="2"' . ( GETPOST ( 'type' ) == 2 ? ' checked=true' : '' );
2011-08-31 17:30:56 +02:00
if ( ! $optionsav ) print ' disabled="disabled"' ;
2011-05-05 09:25:31 +02:00
print '>' ;
print '</td><td valign="middle">' ;
$text = $langs -> transnoentities ( " InvoiceAvoirAsk " ) . ' ' ;
// $text.='<input type="text" value="">';
$text .= '<select class="flat" name="fac_avoir" id="fac_avoir"' ;
2011-08-31 17:30:56 +02:00
if ( ! $optionsav ) $text .= ' disabled="disabled"' ;
2011-05-05 09:25:31 +02:00
$text .= '>' ;
if ( $optionsav )
{
$text .= '<option value="-1"></option>' ;
$text .= $optionsav ;
}
else
{
$text .= '<option value="-1">' . $langs -> trans ( " NoInvoiceToCorrect " ) . '</option>' ;
}
$text .= '</select>' ;
2011-11-08 10:18:45 +01:00
$desc = $form -> textwithpicto ( $text , $langs -> transnoentities ( " InvoiceAvoirDesc " ), 1 );
2011-05-05 09:25:31 +02:00
print $desc ;
print '</td></tr>' . " \n " ;
print '</table>' ;
print '</td></tr>' ;
// Discounts for third party
print '<tr><td>' . $langs -> trans ( 'Discounts' ) . '</td><td colspan="2">' ;
2011-09-08 23:50:41 +02:00
if ( $soc -> remise_client ) print $langs -> trans ( " CompanyHasRelativeDiscount " , '<a href="' . DOL_URL_ROOT . '/comm/remise.php?id=' . $soc -> id . '&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . '?socid=' . $soc -> id . '&action=' . $action . '&origin=' . GETPOST ( 'origin' ) . '&originid=' . GETPOST ( 'originid' )) . '">' . $soc -> remise_client . '</a>' );
2011-05-05 09:25:31 +02:00
else print $langs -> trans ( " CompanyHasNoRelativeDiscount " );
2011-09-10 19:52:21 +02:00
print ' <a href="' . DOL_URL_ROOT . '/comm/remise.php?id=' . $soc -> id . '&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . '?socid=' . $soc -> id . '&action=' . $action . '&origin=' . GETPOST ( 'origin' ) . '&originid=' . GETPOST ( 'originid' )) . '">(' . $langs -> trans ( " EditRelativeDiscount " ) . ')</a>' ;
2011-05-05 09:25:31 +02:00
print '. ' ;
2011-09-10 19:52:21 +02:00
print '<br>' ;
2011-11-23 14:55:36 +01:00
if ( $absolute_discount ) print $langs -> trans ( " CompanyHasAbsoluteDiscount " , '<a href="' . DOL_URL_ROOT . '/comm/remx.php?id=' . $soc -> id . '&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . '?socid=' . $soc -> id . '&action=' . $action . '&origin=' . GETPOST ( 'origin' ) . '&originid=' . GETPOST ( 'originid' )) . '">' . price ( $absolute_discount ) . '</a>' , $langs -> trans ( " Currency " . $conf -> currency ));
2011-05-05 09:25:31 +02:00
else print $langs -> trans ( " CompanyHasNoAbsoluteDiscount " );
2011-09-10 19:52:21 +02:00
print ' <a href="' . DOL_URL_ROOT . '/comm/remx.php?id=' . $soc -> id . '&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . '?socid=' . $soc -> id . '&action=' . $action . '&origin=' . GETPOST ( 'origin' ) . '&originid=' . GETPOST ( 'originid' )) . '">(' . $langs -> trans ( " EditGlobalDiscounts " ) . ')</a>' ;
2011-05-05 09:25:31 +02:00
print '.' ;
print '</td></tr>' ;
// Date invoice
print '<tr><td class="fieldrequired">' . $langs -> trans ( 'Date' ) . '</td><td colspan="2">' ;
2011-11-08 10:18:45 +01:00
$form -> select_date ( $dateinvoice , '' , '' , '' , '' , " add " , 1 , 1 );
2011-05-05 09:25:31 +02:00
print '</td></tr>' ;
// Payment term
print '<tr><td nowrap>' . $langs -> trans ( 'PaymentConditionsShort' ) . '</td><td colspan="2">' ;
2011-11-08 10:18:45 +01:00
$form -> select_conditions_paiements ( isset ( $_POST [ 'cond_reglement_id' ]) ? $_POST [ 'cond_reglement_id' ] : $cond_reglement_id , 'cond_reglement_id' );
2011-05-05 09:25:31 +02:00
print '</td></tr>' ;
// Payment mode
print '<tr><td>' . $langs -> trans ( 'PaymentMode' ) . '</td><td colspan="2">' ;
2011-11-08 10:18:45 +01:00
$form -> select_types_paiements ( isset ( $_POST [ 'mode_reglement_id' ]) ? $_POST [ 'mode_reglement_id' ] : $mode_reglement_id , 'mode_reglement_id' );
2011-05-05 09:25:31 +02:00
print '</td></tr>' ;
// Project
if ( $conf -> projet -> enabled )
{
$langs -> load ( 'projects' );
print '<tr><td>' . $langs -> trans ( 'Project' ) . '</td><td colspan="2">' ;
select_projects ( $soc -> id , $projectid , 'projectid' );
print '</td></tr>' ;
}
2011-08-27 17:40:08 +02:00
2012-02-06 17:18:19 +01:00
// Other attributes
2012-02-21 18:16:24 +01:00
$parameters = array ( 'objectsrc' => $objectsrc , 'colspan' => ' colspan="3"' );
2011-08-23 17:23:19 +02:00
$reshook = $hookmanager -> executeHooks ( 'formObjectOptions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2012-02-06 18:59:07 +01:00
if ( empty ( $reshook ) && ! empty ( $extrafields -> attribute_label ))
2012-02-06 17:18:19 +01:00
{
foreach ( $extrafields -> attribute_label as $key => $label )
{
$value = ( isset ( $_POST [ " options_ " . $key ]) ? $_POST [ " options_ " . $key ] : $object -> array_options [ " options_ " . $key ]);
print '<tr><td>' . $label . '</td><td colspan="3">' ;
print $extrafields -> showInputField ( $key , $value );
print '</td></tr>' . " \n " ;
}
}
2011-05-05 09:25:31 +02:00
// Modele PDF
print '<tr><td>' . $langs -> trans ( 'Model' ) . '</td>' ;
print '<td>' ;
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/modules/facture/modules_facture.php' ;
2011-08-27 17:40:08 +02:00
$liste = ModelePDFFactures :: liste_modeles ( $db );
2011-11-08 10:18:45 +01:00
print $form -> selectarray ( 'model' , $liste , $conf -> global -> FACTURE_ADDON_PDF );
2011-05-05 09:25:31 +02:00
print " </td></tr> " ;
// Public note
print '<tr>' ;
print '<td class="border" valign="top">' . $langs -> trans ( 'NotePublic' ) . '</td>' ;
print '<td valign="top" colspan="2">' ;
print '<textarea name="note_public" wrap="soft" cols="70" rows="' . ROWS_3 . '">' ;
if ( is_object ( $objectsrc )) // Take value from source object
{
print $objectsrc -> note_public ;
}
print '</textarea></td></tr>' ;
// Private note
2012-08-25 03:28:30 +02:00
if ( empty ( $user -> societe_id ))
2011-05-05 09:25:31 +02:00
{
print '<tr>' ;
print '<td class="border" valign="top">' . $langs -> trans ( 'NotePrivate' ) . '</td>' ;
print '<td valign="top" colspan="2">' ;
print '<textarea name="note" wrap="soft" cols="70" rows="' . ROWS_3 . '">' ;
2012-08-25 03:28:30 +02:00
if ( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc )) // Take value from source object
2011-05-05 09:25:31 +02:00
{
print $objectsrc -> note ;
}
print '</textarea></td></tr>' ;
}
2012-08-25 03:28:30 +02:00
if ( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc ))
2011-05-05 09:25:31 +02:00
{
// TODO for compatibility
2012-08-25 03:28:30 +02:00
if ( $origin == 'contrat' )
2011-05-05 09:25:31 +02:00
{
// Calcul contrat->price (HT), contrat->total (TTC), contrat->tva
$objectsrc -> remise_absolue = $remise_absolue ;
$objectsrc -> remise_percent = $remise_percent ;
2012-04-07 02:24:32 +02:00
$objectsrc -> update_price ( 1 , - 1 , 1 );
2011-05-05 09:25:31 +02:00
}
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 . '">' ;
2010-12-15 00:27:17 +01:00
2011-03-02 11:37:18 +01:00
$newclassname = $classname ;
if ( $newclassname == 'Propal' ) $newclassname = 'CommercialProposal' ;
2011-05-05 09:25:31 +02:00
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 -> pays_code == 'ES' )
{
if ( $mysoc -> localtax1_assuj == " 1 " ) //Localtax1 RE
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> pays_code ) . '</td><td colspan="2">' . price ( $objectsrc -> total_localtax1 ) . " </td></tr> " ;
}
if ( $mysoc -> localtax2_assuj == " 1 " ) //Localtax2 IRPF
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> pays_code ) . '</td><td colspan="2">' . price ( $objectsrc -> total_localtax2 ) . " </td></tr> " ;
}
}
print '<tr><td>' . $langs -> trans ( 'TotalTTC' ) . '</td><td colspan="2">' . price ( $objectsrc -> total_ttc ) . " </td></tr> " ;
}
else
{
// Show deprecated optional form to add product line here
2012-08-25 03:28:30 +02:00
if ( ! empty ( $conf -> global -> PRODUCT_SHOW_WHEN_CREATE ))
2011-05-05 09:25:31 +02:00
{
print '<tr><td colspan="3">' ;
// Zone de choix des produits predefinis a la creation
print '<table class="noborder" width="100%">' ;
print '<tr>' ;
print '<td>' . $langs -> trans ( 'ProductsAndServices' ) . '</td>' ;
print '<td>' . $langs -> trans ( 'Qty' ) . '</td>' ;
print '<td>' . $langs -> trans ( 'ReductionShort' ) . '</td>' ;
print '<td> </td>' ;
if ( $conf -> service -> enabled )
{
print '<td>' . $langs -> trans ( 'ServiceLimitedDuration' ) . '</td>' ;
}
print '</tr>' ;
for ( $i = 1 ; $i <= $NBLINES ; $i ++ )
{
print '<tr>' ;
print '<td>' ;
// multiprix
if ( $conf -> global -> PRODUIT_MULTIPRICES )
2011-11-08 10:18:45 +01:00
$form -> select_produits ( '' , 'idprod' . $i , '' , $conf -> product -> limit_size , $soc -> price_level );
2011-05-05 09:25:31 +02:00
else
2011-11-08 10:18:45 +01:00
$form -> select_produits ( '' , 'idprod' . $i , '' , $conf -> product -> limit_size );
2011-05-05 09:25:31 +02:00
print '</td>' ;
print '<td><input type="text" size="2" name="qty' . $i . '" value="1"></td>' ;
print '<td nowrap="nowrap"><input type="text" size="1" name="remise_percent' . $i . '" value="' . $soc -> remise_client . '">%</td>' ;
print '<td> </td>' ;
// Si le module service est actif, on propose des dates de debut et fin a la ligne
if ( $conf -> service -> enabled )
{
print '<td nowrap="nowrap">' ;
print '<table class="nobordernopadding"><tr class="nocellnopadd">' ;
print '<td class="nobordernopadding" nowrap="nowrap">' ;
print $langs -> trans ( 'From' ) . ' ' ;
print '</td><td class="nobordernopadding" nowrap="nowrap">' ;
2011-11-08 10:18:45 +01:00
print $form -> select_date ( '' , 'date_start' . $i , $usehm , $usehm , 1 , " add " );
2011-05-05 09:25:31 +02:00
print '</td></tr>' ;
print '<td class="nobordernopadding" nowrap="nowrap">' ;
print $langs -> trans ( 'to' ) . ' ' ;
print '</td><td class="nobordernopadding" nowrap="nowrap">' ;
2011-11-08 10:18:45 +01:00
print $form -> select_date ( '' , 'date_end' . $i , $usehm , $usehm , 1 , " add " );
2011-05-05 09:25:31 +02:00
print '</td></tr></table>' ;
print '</td>' ;
}
print " </tr> \n " ;
}
print '</table>' ;
print '</td></tr>' ;
}
}
print " </table> \n " ;
2008-08-12 20:20:18 +02:00
2011-03-02 11:37:18 +01:00
// Button "Create Draft"
2011-05-05 09:25:31 +02:00
print '<br><center><input type="submit" class="button" name="bouton" value="' . $langs -> trans ( 'CreateDraft' ) . '"></center>' ;
2010-12-01 23:14:15 +01:00
2011-05-05 09:25:31 +02:00
print " </form> \n " ;
2008-08-12 20:20:18 +02:00
2011-05-05 09:25:31 +02:00
// Show origin lines
2012-08-25 03:28:30 +02:00
if ( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc ))
2011-05-05 09:25:31 +02:00
{
2011-11-23 19:59:23 +01:00
print '<br>' ;
2011-05-05 09:25:31 +02:00
$title = $langs -> trans ( 'ProductsAndServices' );
print_titre ( $title );
2011-02-19 13:15:17 +01:00
2011-05-05 09:25:31 +02:00
print '<table class="noborder" width="100%">' ;
2011-02-19 13:15:17 +01:00
2011-08-11 17:14:50 +02:00
$objectsrc -> printOriginLinesList ( $hookmanager );
2010-12-14 10:12:06 +01:00
2011-05-05 09:25:31 +02:00
print '</table>' ;
}
2008-08-12 20:20:18 +02:00
}
2012-06-09 19:16:31 +02:00
else if ( $id > 0 || ! empty ( $ref ))
2008-08-12 20:20:18 +02:00
{
2011-05-05 09:25:31 +02:00
/*
* Show object in view mode
*/
2012-06-09 19:16:31 +02:00
$result = $object -> fetch ( $id , $ref );
if ( $result > 0 )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
if ( $user -> societe_id > 0 && $user -> societe_id != $object -> socid ) accessforbidden ( '' , 0 );
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
$result = $object -> fetch_thirdparty ();
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
$soc = new Societe ( $db );
$soc -> fetch ( $object -> socid );
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
$totalpaye = $object -> getSommePaiement ();
$totalcreditnotes = $object -> getSumCreditNotesUsed ();
$totaldeposits = $object -> getSumDepositsUsed ();
//print "totalpaye=".$totalpaye." totalcreditnotes=".$totalcreditnotes." totaldeposts=".$totaldeposits;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// We can also use bcadd to avoid pb with floating points
// For example print 239.2 - 229.3 - 9.9; does not return 0.
//$resteapayer=bcadd($object->total_ttc,$totalpaye,$conf->global->MAIN_MAX_DECIMALS_TOT);
//$resteapayer=bcadd($resteapayer,$totalavoir,$conf->global->MAIN_MAX_DECIMALS_TOT);
$resteapayer = price2num ( $object -> total_ttc - $totalpaye - $totalcreditnotes - $totaldeposits , 'MT' );
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
if ( $object -> paye ) $resteapayer = 0 ;
$resteapayeraffiche = $resteapayer ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
if ( ! empty ( $conf -> global -> FACTURE_DEPOSITS_ARE_JUST_PAYMENTS ))
{
$filterabsolutediscount = " fk_facture_source IS NULL " ; // If we want deposit to be substracted to payments only and not to total of final invoice
$filtercreditnote = " fk_facture_source IS NOT NULL " ; // If we want deposit to be substracted to payments only and not to total of final invoice
}
else
{
$filterabsolutediscount = " fk_facture_source IS NULL OR (fk_facture_source IS NOT NULL AND description='(DEPOSIT)') " ;
$filtercreditnote = " fk_facture_source IS NOT NULL AND description <> '(DEPOSIT)' " ;
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
$absolute_discount = $soc -> getAvailableDiscounts ( '' , $filterabsolutediscount );
$absolute_creditnote = $soc -> getAvailableDiscounts ( '' , $filtercreditnote );
$absolute_discount = price2num ( $absolute_discount , 'MT' );
$absolute_creditnote = price2num ( $absolute_creditnote , 'MT' );
$author = new User ( $db );
if ( $object -> user_author )
{
$author -> fetch ( $object -> user_author );
}
2011-11-16 18:58:11 +01:00
2012-06-09 19:16:31 +02:00
$objectidnext = $object -> getIdReplacingInvoice ();
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
$head = facture_prepare_head ( $object );
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
dol_fiche_head ( $head , 'compta' , $langs -> trans ( 'InvoiceCustomer' ), 0 , 'bill' );
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
$formconfirm = '' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Confirmation de la conversion de l'avoir en reduc
if ( $action == 'converttoreduc' )
{
$text = $langs -> trans ( 'ConfirmConvertToReduc' );
$formconfirm = $form -> formconfirm ( $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id , $langs -> trans ( 'ConvertToReduc' ), $text , 'confirm_converttoreduc' , '' , " yes " , 2 );
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Confirmation to delete invoice
if ( $action == 'delete' )
{
$text = $langs -> trans ( 'ConfirmDeleteBill' );
$formconfirm = $form -> formconfirm ( $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id , $langs -> trans ( 'DeleteBill' ), $text , 'confirm_delete' , '' , 0 , 1 );
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Confirmation de la validation
if ( $action == 'valid' )
{
// on verifie si l'objet est en numerotation provisoire
$objectref = substr ( $object -> ref , 1 , 4 );
if ( $objectref == 'PROV' )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
$savdate = $object -> date ;
if ( ! empty ( $conf -> global -> FAC_FORCE_DATE_VALIDATION ))
{
$object -> date = dol_now ();
$object -> date_lim_reglement = $object -> calculate_date_lim_reglement ();
}
$numref = $object -> getNextNumRef ( $soc );
//$object->date=$savdate;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
else
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
$numref = $object -> ref ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
$text = $langs -> trans ( 'ConfirmValidateBill' , $numref );
if ( $conf -> notification -> enabled )
2011-05-05 09:25:31 +02:00
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/notify.class.php' ;
2012-06-09 19:16:31 +02:00
$notify = new Notify ( $db );
$text .= '<br>' ;
$text .= $notify -> confirmMessage ( 'NOTIFY_VAL_FAC' , $object -> socid );
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
$formquestion = array ();
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
if ( $object -> type != 3 && ! empty ( $conf -> global -> STOCK_CALCULATE_ON_BILL ) && $object -> hasProductsOrServices ( 1 ))
2011-11-14 16:23:59 +01:00
{
2012-06-09 19:16:31 +02:00
$langs -> load ( " stocks " );
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/product/class/html.formproduct.class.php' ;
2012-06-09 19:16:31 +02:00
$formproduct = new FormProduct ( $db );
$label = $object -> type == 2 ? $langs -> trans ( " SelectWarehouseForStockIncrease " ) : $langs -> trans ( " SelectWarehouseForStockDecrease " );
$formquestion = array (
//'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),
array ( 'type' => 'other' , 'name' => 'idwarehouse' , 'label' => $label , 'value' => $formproduct -> selectWarehouses ( GETPOST ( 'idwarehouse' ), 'idwarehouse' , '' , 1 )));
}
if ( $object -> type != 2 && $object -> total_ttc < 0 ) // Can happen only if $conf->global->FACTURE_ENABLE_NEGATIVE is on
{
$text .= '<br>' . img_warning () . ' ' . $langs -> trans ( " ErrorInvoiceOfThisTypeMustBePositive " );
}
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id , $langs -> trans ( 'ValidateBill' ), $text , 'confirm_valid' , $formquestion ,(( $object -> type != 2 && $object -> total_ttc < 0 ) ? " no " : " yes " ),( $conf -> notification -> enabled ? 0 : 2 ));
}
2011-11-14 16:23:59 +01:00
2012-06-09 19:16:31 +02:00
// Confirm back to draft status
if ( $action == 'modif' )
{
$text = $langs -> trans ( 'ConfirmUnvalidateBill' , $object -> ref );
$formquestion = array ();
if ( $object -> type != 3 && ! empty ( $conf -> global -> STOCK_CALCULATE_ON_BILL ) && $object -> hasProductsOrServices ( 1 ))
{
$langs -> load ( " stocks " );
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/product/class/html.formproduct.class.php' ;
2012-06-09 19:16:31 +02:00
$formproduct = new FormProduct ( $db );
$label = $object -> type == 2 ? $langs -> trans ( " SelectWarehouseForStockDecrease " ) : $langs -> trans ( " SelectWarehouseForStockIncrease " );
$formquestion = array (
//'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),
array ( 'type' => 'other' , 'name' => 'idwarehouse' , 'label' => $label , 'value' => $formproduct -> selectWarehouses ( GETPOST ( 'idwarehouse' ), 'idwarehouse' , '' , 1 )));
2011-11-14 16:23:59 +01:00
}
2012-06-09 19:16:31 +02:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id , $langs -> trans ( 'UnvalidateBill' ), $text , 'confirm_modif' , $formquestion , " yes " , 1 );
}
// Confirmation du classement paye
if ( $action == 'paid' && $resteapayer <= 0 )
{
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id , $langs -> trans ( 'ClassifyPaid' ), $langs -> trans ( 'ConfirmClassifyPaidBill' , $object -> ref ), 'confirm_paid' , '' , " yes " , 1 );
}
if ( $action == 'paid' && $resteapayer > 0 )
{
// Code
$i = 0 ;
$close [ $i ][ 'code' ] = 'discount_vat' ; $i ++ ;
$close [ $i ][ 'code' ] = 'badcustomer' ; $i ++ ;
// Help
$i = 0 ;
$close [ $i ][ 'label' ] = $langs -> trans ( " HelpEscompte " ) . '<br><br>' . $langs -> trans ( " ConfirmClassifyPaidPartiallyReasonDiscountVatDesc " ); $i ++ ;
$close [ $i ][ 'label' ] = $langs -> trans ( " ConfirmClassifyPaidPartiallyReasonBadCustomerDesc " ); $i ++ ;
// Texte
$i = 0 ;
$close [ $i ][ 'reason' ] = $form -> textwithpicto ( $langs -> transnoentities ( " ConfirmClassifyPaidPartiallyReasonDiscountVat " , $resteapayer , $langs -> trans ( " Currency " . $conf -> currency )), $close [ $i ][ 'label' ], 1 ); $i ++ ;
$close [ $i ][ 'reason' ] = $form -> textwithpicto ( $langs -> transnoentities ( " ConfirmClassifyPaidPartiallyReasonBadCustomer " , $resteapayer , $langs -> trans ( " Currency " . $conf -> currency )), $close [ $i ][ 'label' ], 1 ); $i ++ ;
// arrayreasons[code]=reason
foreach ( $close as $key => $val )
{
$arrayreasons [ $close [ $key ][ 'code' ]] = $close [ $key ][ 'reason' ];
}
// Cree un tableau formulaire
$formquestion = array (
'text' => $langs -> trans ( " ConfirmClassifyPaidPartiallyQuestion " ),
array ( 'type' => 'radio' , 'name' => 'close_code' , 'label' => $langs -> trans ( " Reason " ), 'values' => $arrayreasons ),
array ( 'type' => 'text' , 'name' => 'close_note' , 'label' => $langs -> trans ( " Comment " ), 'value' => '' , 'size' => '100' )
);
// Paiement incomplet. On demande si motif = escompte ou autre
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id , $langs -> trans ( 'ClassifyPaid' ), $langs -> trans ( 'ConfirmClassifyPaidPartially' , $object -> ref ), 'confirm_paid_partially' , $formquestion , " yes " );
}
// Confirmation du classement abandonne
if ( $action == 'canceled' )
{
// S'il y a une facture de remplacement pas encore validee (etat brouillon),
// on ne permet pas de classer abandonner la facture.
if ( $objectidnext )
{
$facturereplacement = new Facture ( $db );
$facturereplacement -> fetch ( $objectidnext );
$statusreplacement = $facturereplacement -> statut ;
}
if ( $objectidnext && $statusreplacement == 0 )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<div class="error">' . $langs -> trans ( " ErrorCantCancelIfReplacementInvoiceNotValidated " ) . '</div>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
else
2011-05-05 09:25:31 +02:00
{
// Code
2012-06-09 19:16:31 +02:00
$close [ 1 ][ 'code' ] = 'badcustomer' ;
$close [ 2 ][ 'code' ] = 'abandon' ;
2011-05-05 09:25:31 +02:00
// Help
2012-06-09 19:16:31 +02:00
$close [ 1 ][ 'label' ] = $langs -> trans ( " ConfirmClassifyPaidPartiallyReasonBadCustomerDesc " );
$close [ 2 ][ 'label' ] = $langs -> trans ( " ConfirmClassifyAbandonReasonOtherDesc " );
2011-05-05 09:25:31 +02:00
// Texte
2012-06-09 19:16:31 +02:00
$close [ 1 ][ 'reason' ] = $form -> textwithpicto ( $langs -> transnoentities ( " ConfirmClassifyPaidPartiallyReasonBadCustomer " , $object -> ref ), $close [ 1 ][ 'label' ], 1 );
$close [ 2 ][ 'reason' ] = $form -> textwithpicto ( $langs -> transnoentities ( " ConfirmClassifyAbandonReasonOther " ), $close [ 2 ][ 'label' ], 1 );
// arrayreasons
$arrayreasons [ $close [ 1 ][ 'code' ]] = $close [ 1 ][ 'reason' ];
$arrayreasons [ $close [ 2 ][ 'code' ]] = $close [ 2 ][ 'reason' ];
2011-05-05 09:25:31 +02:00
// Cree un tableau formulaire
$formquestion = array (
2012-06-09 19:16:31 +02:00
'text' => $langs -> trans ( " ConfirmCancelBillQuestion " ),
2011-05-05 09:25:31 +02:00
array ( 'type' => 'radio' , 'name' => 'close_code' , 'label' => $langs -> trans ( " Reason " ), 'values' => $arrayreasons ),
array ( 'type' => 'text' , 'name' => 'close_note' , 'label' => $langs -> trans ( " Comment " ), 'value' => '' , 'size' => '100' )
);
2012-06-09 19:16:31 +02:00
$formconfirm = $form -> formconfirm ( $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id , $langs -> trans ( 'CancelBill' ), $langs -> trans ( 'ConfirmCancelBill' , $object -> ref ), 'confirm_canceled' , $formquestion , " yes " );
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Confirmation de la suppression d'une ligne produit
if ( $action == 'ask_deleteline' )
{
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id . '&lineid=' . $lineid , $langs -> trans ( 'DeleteProductLine' ), $langs -> trans ( 'ConfirmDeleteProductLine' ), 'confirm_deleteline' , '' , 'no' , 1 );
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Clone confirmation
if ( $action == 'clone' )
{
// Create an array for form
$formquestion = array (
//'text' => $langs->trans("ConfirmClone"),
//array('type' => 'checkbox', 'name' => 'clone_content', 'label' => $langs->trans("CloneMainAttributes"), 'value' => 1)
);
// Paiement incomplet. On demande si motif = escompte ou autre
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id , $langs -> trans ( 'CloneInvoice' ), $langs -> trans ( 'ConfirmCloneInvoice' , $object -> ref ), 'confirm_clone' , $formquestion , 'yes' , 1 );
}
2011-08-11 00:47:33 +02:00
2012-06-09 19:16:31 +02:00
if ( ! $formconfirm )
{
$parameters = array ( 'lineid' => $lineid );
$formconfirm = $hookmanager -> executeHooks ( 'formConfirm' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Print form confirm
print $formconfirm ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Invoice content
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
print '<table class="border" width="100%">' ;
2011-05-05 09:25:31 +02:00
2012-07-28 21:22:59 +02:00
$linkback = '<a href="' . DOL_URL_ROOT . '/compta/facture/list.php' . ( ! empty ( $socid ) ? '?socid=' . $socid : '' ) . '">' . $langs -> trans ( " BackToList " ) . '</a>' ;
2012-06-09 19:16:31 +02:00
// Ref
print '<tr><td width="20%">' . $langs -> trans ( 'Ref' ) . '</td>' ;
print '<td colspan="5">' ;
$morehtmlref = '' ;
$discount = new DiscountAbsolute ( $db );
$result = $discount -> fetch ( 0 , $object -> id );
if ( $result > 0 )
{
$morehtmlref = ' (' . $langs -> trans ( " CreditNoteConvertedIntoDiscount " , $discount -> getNomUrl ( 1 , 'discount' )) . ')' ;
}
if ( $result < 0 )
{
dol_print_error ( '' , $discount -> error );
}
2012-07-28 21:22:59 +02:00
print $form -> showrefnav ( $object , 'ref' , $linkback , 1 , 'facnumber' , 'ref' , $morehtmlref );
2012-06-09 19:16:31 +02:00
print '</td></tr>' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Ref customer
print '<tr><td width="20%">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'RefCustomer' );
print '</td>' ;
2012-08-16 19:18:24 +02:00
if ( $action != 'refclient' && ! empty ( $object -> brouillon )) print '<td align="right"><a href="' . $_SERVER [ 'PHP_SELF' ] . '?action=refclient&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'Modify' )) . '</a></td>' ;
2012-06-09 19:16:31 +02:00
print '</tr></table>' ;
print '</td>' ;
print '<td colspan="5">' ;
if ( $user -> rights -> facture -> creer && $action == 'refclient' )
{
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="set_ref_client">' ;
print '<input type="text" class="flat" size="20" name="ref_client" value="' . $object -> ref_client . '">' ;
print ' <input type="submit" class="button" value="' . $langs -> trans ( 'Modify' ) . '">' ;
print '</form>' ;
}
else
{
print $object -> ref_client ;
}
print '</td></tr>' ;
// Third party
print '<tr><td>' ;
print '<table class="nobordernopadding" width="100%">' ;
print '<tr><td>' . $langs -> trans ( 'Company' ) . '</td>' ;
print '</td><td colspan="5">' ;
2012-07-10 18:57:27 +02:00
if ( ! empty ( $conf -> global -> FACTURE_CHANGE_THIRDPARTY ) && $action != 'editthirdparty' && $object -> brouillon && $user -> rights -> facture -> creer )
2012-06-09 19:16:31 +02:00
print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editthirdparty&facid=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetLinkToThirdParty' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="5">' ;
if ( $action == 'editthirdparty' )
{
$form -> form_thirdparty ( $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id , $object -> socid , 'socid' );
}
else
{
print ' ' . $soc -> getNomUrl ( 1 , 'compta' );
print ' (<a href="' . DOL_URL_ROOT . '/compta/facture/list.php?socid=' . $object -> socid . '">' . $langs -> trans ( 'OtherBills' ) . '</a>)' ;
}
print '</tr>' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Type
print '<tr><td>' . $langs -> trans ( 'Type' ) . '</td><td colspan="5">' ;
print $object -> getLibType ();
if ( $object -> type == 1 )
{
$facreplaced = new Facture ( $db );
$facreplaced -> fetch ( $object -> fk_facture_source );
print ' (' . $langs -> transnoentities ( " ReplaceInvoice " , $facreplaced -> getNomUrl ( 1 )) . ')' ;
}
if ( $object -> type == 2 )
{
$facusing = new Facture ( $db );
$facusing -> fetch ( $object -> fk_facture_source );
print ' (' . $langs -> transnoentities ( " CorrectInvoice " , $facusing -> getNomUrl ( 1 )) . ')' ;
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
$facidavoir = $object -> getListIdAvoirFromInvoice ();
if ( count ( $facidavoir ) > 0 )
{
print ' (' . $langs -> transnoentities ( " InvoiceHasAvoir " );
$i = 0 ;
foreach ( $facidavoir as $id )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
if ( $i == 0 ) print ' ' ;
else print ',' ;
$facavoir = new Facture ( $db );
$facavoir -> fetch ( $id );
print $facavoir -> getNomUrl ( 1 );
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
print ')' ;
}
if ( $objectidnext > 0 )
{
$facthatreplace = new Facture ( $db );
$facthatreplace -> fetch ( $objectidnext );
print ' (' . $langs -> transnoentities ( " ReplacedByInvoice " , $facthatreplace -> getNomUrl ( 1 )) . ')' ;
}
print '</td></tr>' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Relative and absolute discounts
$addrelativediscount = '<a href="' . DOL_URL_ROOT . '/comm/remise.php?id=' . $soc -> id . '&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ]) . '?facid=' . $object -> id . '">' . $langs -> trans ( " EditRelativeDiscounts " ) . '</a>' ;
$addabsolutediscount = '<a href="' . DOL_URL_ROOT . '/comm/remx.php?id=' . $soc -> id . '&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ]) . '?facid=' . $object -> id . '">' . $langs -> trans ( " EditGlobalDiscounts " ) . '</a>' ;
$addcreditnote = '<a href="' . DOL_URL_ROOT . '/compta/facture.php?action=create&socid=' . $soc -> id . '&type=2&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ]) . '?facid=' . $object -> id . '">' . $langs -> trans ( " AddCreditNote " ) . '</a>' ;
2011-02-19 14:23:49 +01:00
2012-06-09 19:16:31 +02:00
print '<tr><td>' . $langs -> trans ( 'Discounts' );
print '</td><td colspan="5">' ;
if ( $soc -> remise_client ) print $langs -> trans ( " CompanyHasRelativeDiscount " , $soc -> remise_client );
else print $langs -> trans ( " CompanyHasNoRelativeDiscount " );
//print ' ('.$addrelativediscount.')';
2011-02-19 13:15:17 +01:00
2012-06-09 19:16:31 +02:00
if ( $absolute_discount > 0 )
{
print '. ' ;
if ( $object -> statut > 0 || $object -> type == 2 || $object -> type == 3 )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
if ( $object -> statut == 0 )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print $langs -> trans ( " CompanyHasAbsoluteDiscount " , price ( $absolute_discount ), $langs -> transnoentities ( " Currency " . $conf -> currency ));
print '. ' ;
2011-05-05 09:25:31 +02:00
}
else
{
2012-06-09 19:16:31 +02:00
if ( $object -> statut < 1 || $object -> type == 2 || $object -> type == 3 )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
$text = $langs -> trans ( " CompanyHasAbsoluteDiscount " , price ( $absolute_discount ), $langs -> transnoentities ( " Currency " . $conf -> currency ));
print '<br>' . $text . '.<br>' ;
2011-05-05 09:25:31 +02:00
}
else
{
2012-06-09 19:16:31 +02:00
$text = $langs -> trans ( " CompanyHasAbsoluteDiscount " , price ( $absolute_discount ), $langs -> transnoentities ( " Currency " . $conf -> currency ));
$text2 = $langs -> trans ( " AbsoluteDiscountUse " );
print $form -> textwithpicto ( $text , $text2 );
2011-05-05 09:25:31 +02:00
}
}
}
2012-06-09 19:16:31 +02:00
else
{
// Remise dispo de type remise fixe (not credit note)
print '<br>' ;
$form -> form_remise_dispo ( $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id , GETPOST ( 'discountid' ), 'remise_id' , $soc -> id , $absolute_discount , $filterabsolutediscount , $resteapayer , ' (' . $addabsolutediscount . ')' );
}
}
else
{
if ( $absolute_creditnote > 0 ) // If not, link will be added later
2011-05-05 09:25:31 +02:00
{
2011-09-10 19:52:21 +02:00
if ( $object -> statut == 0 && $object -> type != 2 && $object -> type != 3 ) print ' (' . $addabsolutediscount . ')<br>' ;
2011-02-19 14:38:02 +01:00
else print '. ' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
else print '. ' ;
}
if ( $absolute_creditnote > 0 )
{
// If validated, we show link "add credit note to payment"
if ( $object -> statut != 1 || $object -> type == 2 || $object -> type == 3 )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
if ( $object -> statut == 0 && $object -> type != 3 )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
$text = $langs -> trans ( " CompanyHasCreditNote " , price ( $absolute_creditnote ), $langs -> transnoentities ( " Currency " . $conf -> currency ));
print $form -> textwithpicto ( $text , $langs -> trans ( " CreditNoteDepositUse " ));
2011-05-05 09:25:31 +02:00
}
else
{
2012-06-09 19:16:31 +02:00
print $langs -> trans ( " CompanyHasCreditNote " , price ( $absolute_creditnote ), $langs -> transnoentities ( " Currency " . $conf -> currency )) . '.' ;
2011-05-05 09:25:31 +02:00
}
}
else
{
2012-06-09 19:16:31 +02:00
// Remise dispo de type avoir
if ( ! $absolute_discount ) print '<br>' ;
//$form->form_remise_dispo($_SERVER["PHP_SELF"].'?facid='.$object->id, 0, 'remise_id_for_payment', $soc->id, $absolute_creditnote, $filtercreditnote, $resteapayer);
$form -> form_remise_dispo ( $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id , 0 , 'remise_id_for_payment' , $soc -> id , $absolute_creditnote , $filtercreditnote , 0 ); // We must allow credit not even if amount is higher
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
}
if ( ! $absolute_discount && ! $absolute_creditnote )
{
print $langs -> trans ( " CompanyHasNoAbsoluteDiscount " );
if ( $object -> statut == 0 && $object -> type != 2 && $object -> type != 3 ) print ' (' . $addabsolutediscount . ')<br>' ;
else print '. ' ;
}
/* if ( $object -> statut == 0 && $object -> type != 2 && $object -> type != 3 )
{
if ( ! $absolute_discount && ! $absolute_creditnote ) print '<br>' ;
//print ' - ';
print $addabsolutediscount ;
//print ' - '.$addcreditnote; // We disbale link to credit note
} */
print '</td></tr>' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Date invoice
print '<tr><td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'Date' );
print '</td>' ;
2012-08-16 19:18:24 +02:00
if ( $object -> type != 2 && $action != 'editinvoicedate' && ! empty ( $object -> brouillon ) && $user -> rights -> facture -> creer ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editinvoicedate&facid=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetDate' ), 1 ) . '</a></td>' ;
2012-06-09 19:16:31 +02:00
print '</tr></table>' ;
print '</td><td colspan="3">' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
if ( $object -> type != 2 )
{
if ( $action == 'editinvoicedate' )
2011-02-19 13:15:17 +01:00
{
2012-06-09 19:16:31 +02:00
$form -> form_date ( $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id , $object -> date , 'invoicedate' );
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
else
{
print dol_print_date ( $object -> date , 'daytext' );
}
}
else
{
print dol_print_date ( $object -> date , 'daytext' );
}
print '</td>' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
/*
* List of payments
*/
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
$nbrows = 8 ; $nbcols = 2 ;
if ( $conf -> projet -> enabled ) $nbrows ++ ;
if ( $conf -> banque -> enabled ) $nbcols ++ ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
//Local taxes
if ( $mysoc -> pays_code == 'ES' )
{
if ( $mysoc -> localtax1_assuj == " 1 " ) $nbrows ++ ;
if ( $mysoc -> localtax2_assuj == " 1 " ) $nbrows ++ ;
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
print '<td rowspan="' . $nbrows . '" colspan="2" valign="top">' ;
print '<table class="nobordernopadding" width="100%">' ;
// List of payments already done
print '<tr class="liste_titre">' ;
print '<td>' . ( $object -> type == 2 ? $langs -> trans ( " PaymentsBack " ) : $langs -> trans ( 'Payments' )) . '</td>' ;
print '<td>' . $langs -> trans ( 'Type' ) . '</td>' ;
if ( $conf -> banque -> enabled ) print '<td align="right">' . $langs -> trans ( 'BankAccount' ) . '</td>' ;
print '<td align="right">' . $langs -> trans ( 'Amount' ) . '</td>' ;
print '<td width="18"> </td>' ;
print '</tr>' ;
$var = true ;
// Payments already done (from payment on this invoice)
$sql = 'SELECT p.datep as dp, p.num_paiement, p.rowid, p.fk_bank,' ;
$sql .= ' c.code as payment_code, c.libelle as payment_label,' ;
$sql .= ' pf.amount,' ;
$sql .= ' ba.rowid as baid, ba.ref, ba.label' ;
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'c_paiement as c, ' . MAIN_DB_PREFIX . 'paiement_facture as pf, ' . MAIN_DB_PREFIX . 'paiement as p' ;
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'bank as b ON p.fk_bank = b.rowid' ;
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'bank_account as ba ON b.fk_account = ba.rowid' ;
$sql .= ' WHERE pf.fk_facture = ' . $object -> id . ' AND p.fk_paiement = c.id AND pf.fk_paiement = p.rowid' ;
$sql .= ' ORDER BY p.datep, p.tms' ;
$result = $db -> query ( $sql );
if ( $result )
{
$num = $db -> num_rows ( $result );
$i = 0 ;
2011-05-05 09:25:31 +02:00
if ( $object -> type != 2 )
{
2012-06-09 19:16:31 +02:00
if ( $num > 0 )
2011-05-05 09:25:31 +02:00
{
while ( $i < $num )
{
2012-06-09 19:16:31 +02:00
$objp = $db -> fetch_object ( $result );
$var =! $var ;
print '<tr ' . $bc [ $var ] . '><td>' ;
print '<a href="' . DOL_URL_ROOT . '/compta/paiement/fiche.php?id=' . $objp -> rowid . '">' . img_object ( $langs -> trans ( 'ShowPayment' ), 'payment' ) . ' ' ;
print dol_print_date ( $db -> jdate ( $objp -> dp ), 'day' ) . '</a></td>' ;
$label = ( $langs -> trans ( " PaymentType " . $objp -> payment_code ) != ( " PaymentType " . $objp -> payment_code )) ? $langs -> trans ( " PaymentType " . $objp -> payment_code ) : $objp -> payment_label ;
print '<td>' . $label . ' ' . $objp -> num_paiement . '</td>' ;
if ( $conf -> banque -> enabled )
{
$bankaccountstatic -> id = $objp -> baid ;
$bankaccountstatic -> ref = $objp -> ref ;
$bankaccountstatic -> label = $objp -> ref ;
print '<td align="right">' ;
2012-06-14 22:56:14 +02:00
if ( $bankaccountstatic -> id ) print $bankaccountstatic -> getNomUrl ( 1 , 'transactions' );
2012-06-09 19:16:31 +02:00
print '</td>' ;
}
print '<td align="right">' . price ( $objp -> amount ) . '</td>' ;
print '<td> </td>' ;
print '</tr>' ;
2011-05-05 09:25:31 +02:00
$i ++ ;
}
}
else
{
2012-06-09 19:16:31 +02:00
print '<tr ' . $bc [ $var ] . '><td colspan="' . $nbcols . '">' . $langs -> trans ( " None " ) . '</td><td></td><td></td></tr>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
}
$db -> free ( $result );
}
else
{
dol_print_error ( $db );
}
if ( $object -> type != 2 )
{
// Total already paid
print '<tr><td colspan="' . $nbcols . '" align="right">' ;
if ( $object -> type != 3 ) print $langs -> trans ( 'AlreadyPaidNoCreditNotesNoDeposits' );
else print $langs -> trans ( 'AlreadyPaid' );
print ' :</td><td align="right">' . price ( $totalpaye ) . '</td><td> </td></tr>' ;
$resteapayeraffiche = $resteapayer ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Loop on each credit note or deposit amount applied
$creditnoteamount = 0 ;
$depositamount = 0 ;
$sql = " SELECT re.rowid, re.amount_ht, re.amount_tva, re.amount_ttc, " ;
$sql .= " re.description, re.fk_facture_source " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " societe_remise_except as re " ;
$sql .= " WHERE fk_facture = " . $object -> id ;
$resql = $db -> query ( $sql );
if ( $resql )
{
$num = $db -> num_rows ( $resql );
$i = 0 ;
$invoice = new Facture ( $db );
while ( $i < $num )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
$obj = $db -> fetch_object ( $resql );
$invoice -> fetch ( $obj -> fk_facture_source );
print '<tr><td colspan="' . $nbcols . '" align="right">' ;
if ( $invoice -> type == 2 ) print $langs -> trans ( " CreditNote " ) . ' ' ;
if ( $invoice -> type == 3 ) print $langs -> trans ( " Deposit " ) . ' ' ;
print $invoice -> getNomUrl ( 0 );
print ' :</td>' ;
print '<td align="right">' . price ( $obj -> amount_ttc ) . '</td>' ;
print '<td align="right">' ;
print '<a href="' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id . '&action=unlinkdiscount&discountid=' . $obj -> rowid . '">' . img_delete () . '</a>' ;
print '</td></tr>' ;
$i ++ ;
if ( $invoice -> type == 2 ) $creditnoteamount += $obj -> amount_ttc ;
if ( $invoice -> type == 3 ) $depositamount += $obj -> amount_ttc ;
2011-05-05 09:25:31 +02:00
}
}
else
{
2012-06-09 19:16:31 +02:00
dol_print_error ( $db );
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
// Paye partiellement 'escompte'
if (( $object -> statut == 2 || $object -> statut == 3 ) && $object -> close_code == 'discount_vat' )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<tr><td colspan="' . $nbcols . '" align="right" nowrap="1">' ;
print $form -> textwithpicto ( $langs -> trans ( " Escompte " ) . ':' , $langs -> trans ( " HelpEscompte " ), - 1 );
print '</td><td align="right">' . price ( $object -> total_ttc - $creditnoteamount - $depositamount - $totalpaye ) . '</td><td> </td></tr>' ;
$resteapayeraffiche = 0 ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
// Paye partiellement ou Abandon 'badcustomer'
if (( $object -> statut == 2 || $object -> statut == 3 ) && $object -> close_code == 'badcustomer' )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<tr><td colspan="' . $nbcols . '" align="right" nowrap="1">' ;
print $form -> textwithpicto ( $langs -> trans ( " Abandoned " ) . ':' , $langs -> trans ( " HelpAbandonBadCustomer " ), - 1 );
print '</td><td align="right">' . price ( $object -> total_ttc - $creditnoteamount - $depositamount - $totalpaye ) . '</td><td> </td></tr>' ;
//$resteapayeraffiche=0;
}
// Paye partiellement ou Abandon 'product_returned'
if (( $object -> statut == 2 || $object -> statut == 3 ) && $object -> close_code == 'product_returned' )
{
print '<tr><td colspan="' . $nbcols . '" align="right" nowrap="1">' ;
print $form -> textwithpicto ( $langs -> trans ( " ProductReturned " ) . ':' , $langs -> trans ( " HelpAbandonProductReturned " ), - 1 );
print '</td><td align="right">' . price ( $object -> total_ttc - $creditnoteamount - $depositamount - $totalpaye ) . '</td><td> </td></tr>' ;
$resteapayeraffiche = 0 ;
}
// Paye partiellement ou Abandon 'abandon'
if (( $object -> statut == 2 || $object -> statut == 3 ) && $object -> close_code == 'abandon' )
{
print '<tr><td colspan="' . $nbcols . '" align="right" nowrap="1">' ;
$text = $langs -> trans ( " HelpAbandonOther " );
if ( $object -> close_note ) $text .= '<br><br><b>' . $langs -> trans ( " Reason " ) . '</b>:' . $object -> close_note ;
print $form -> textwithpicto ( $langs -> trans ( " Abandoned " ) . ':' , $text , - 1 );
print '</td><td align="right">' . price ( $object -> total_ttc - $creditnoteamount - $depositamount - $totalpaye ) . '</td><td> </td></tr>' ;
$resteapayeraffiche = 0 ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
// Billed
print '<tr><td colspan="' . $nbcols . '" align="right">' . $langs -> trans ( " Billed " ) . ' :</td><td align="right" style="border: 1px solid;">' . price ( $object -> total_ttc ) . '</td><td> </td></tr>' ;
// Remainder to pay
print '<tr><td colspan="' . $nbcols . '" align="right">' ;
if ( $resteapayeraffiche >= 0 ) print $langs -> trans ( 'RemainderToPay' );
else print $langs -> trans ( 'ExcessReceived' );
print ' :</td>' ;
print '<td align="right" style="border: 1px solid;" bgcolor="#f0f0f0"><b>' . price ( $resteapayeraffiche ) . '</b></td>' ;
print '<td nowrap="nowrap"> </td></tr>' ;
}
else
{
// Sold credit note
print '<tr><td colspan="' . $nbcols . '" align="right">' . $langs -> trans ( 'TotalTTC' ) . ' :</td>' ;
print '<td align="right" style="border: 1px solid;" bgcolor="#f0f0f0"><b>' . price ( abs ( $object -> total_ttc )) . '</b></td><td> </td></tr>' ;
}
print '</table>' ;
2012-07-19 16:25:40 +02:00
// Margin Infos
2012-07-20 09:57:50 +02:00
if ( ! empty ( $conf -> margin -> enabled )) {
2012-07-19 16:25:40 +02:00
print '<br>' ;
$object -> displayMarginInfos ( $object -> statut > 0 );
}
2012-06-09 19:16:31 +02:00
print '</td></tr>' ;
// Date payment term
print '<tr><td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'DateMaxPayment' );
print '</td>' ;
2012-08-16 19:18:24 +02:00
if ( $object -> type != 2 && $action != 'editpaymentterm' && ! empty ( $object -> brouillon ) && $user -> rights -> facture -> creer ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editpaymentterm&facid=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetDate' ), 1 ) . '</a></td>' ;
2012-06-09 19:16:31 +02:00
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $object -> type != 2 )
{
if ( $action == 'editpaymentterm' )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
$form -> form_date ( $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id , $object -> date_lim_reglement , 'paymentterm' );
2011-05-05 09:25:31 +02:00
}
else
{
2012-06-09 19:16:31 +02:00
print dol_print_date ( $object -> date_lim_reglement , 'daytext' );
2012-08-16 19:18:24 +02:00
if ( $object -> date_lim_reglement < ( $now - $conf -> facture -> client -> warning_delay ) && ! $object -> paye && $object -> statut == 1 && ! isset ( $object -> am )) print img_warning ( $langs -> trans ( 'Late' ));
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
}
else
{
print ' ' ;
}
print '</td></tr>' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Conditions de reglement
print '<tr><td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'PaymentConditionsShort' );
print '</td>' ;
2012-08-16 19:18:24 +02:00
if ( $object -> type != 2 && $action != 'editconditions' && ! empty ( $object -> brouillon ) && $user -> rights -> facture -> creer ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editconditions&facid=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetConditions' ), 1 ) . '</a></td>' ;
2012-06-09 19:16:31 +02:00
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $object -> type != 2 )
{
if ( $action == 'editconditions' )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id , $object -> cond_reglement_id , 'cond_reglement_id' );
2011-05-05 09:25:31 +02:00
}
else
{
2012-06-09 19:16:31 +02:00
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id , $object -> cond_reglement_id , 'none' );
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
}
else
{
print ' ' ;
}
print '</td></tr>' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Mode de reglement
print '<tr><td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'PaymentMode' );
print '</td>' ;
2012-08-16 19:18:24 +02:00
if ( $action != 'editmode' && ! empty ( $object -> brouillon ) && $user -> rights -> facture -> creer ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editmode&facid=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetMode' ), 1 ) . '</a></td>' ;
2012-06-09 19:16:31 +02:00
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $action == 'editmode' )
{
$form -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id , $object -> mode_reglement_id , 'mode_reglement_id' );
}
else
{
$form -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id , $object -> mode_reglement_id , 'none' );
}
print '</td></tr>' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Amount
print '<tr><td>' . $langs -> trans ( 'AmountHT' ) . '</td>' ;
print '<td align="right" colspan="2" nowrap>' . price ( $object -> total_ht ) . '</td>' ;
print '<td>' . $langs -> trans ( 'Currency' . $conf -> currency ) . '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( 'AmountVAT' ) . '</td><td align="right" colspan="2" nowrap>' . price ( $object -> total_tva ) . '</td>' ;
2012-07-19 11:07:50 +02:00
print '<td>' . $langs -> trans ( 'Currency' . $conf -> currency ) . '</td>' ;
print '</tr>' ;
2012-06-09 19:16:31 +02:00
// Amount Local Taxes
if ( $mysoc -> pays_code == 'ES' )
{
if ( $mysoc -> localtax1_assuj == " 1 " ) //Localtax1 RE
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> pays_code ) . '</td>' ;
print '<td align="right" colspan="2" nowrap>' . price ( $object -> total_localtax1 ) . '</td>' ;
print '<td>' . $langs -> trans ( " Currency " . $conf -> currency ) . '</td></tr>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
if ( $mysoc -> localtax2_assuj == " 1 " ) //Localtax2 IRPF
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> pays_code ) . '</td>' ;
print '<td align="right" colspan="2" nowrap>' . price ( $object -> total_localtax2 ) . '</td>' ;
print '<td>' . $langs -> trans ( " Currency " . $conf -> currency ) . '</td></tr>' ;
}
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
print '<tr><td>' . $langs -> trans ( 'AmountTTC' ) . '</td><td align="right" colspan="2" nowrap>' . price ( $object -> total_ttc ) . '</td>' ;
print '<td>' . $langs -> trans ( 'Currency' . $conf -> currency ) . '</td></tr>' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Statut
print '<tr><td>' . $langs -> trans ( 'Status' ) . '</td>' ;
print '<td align="left" colspan="3">' . ( $object -> getLibStatut ( 4 , $totalpaye )) . '</td></tr>' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Project
2012-08-16 19:18:24 +02:00
if ( ! empty ( $conf -> projet -> enabled ))
2012-06-09 19:16:31 +02:00
{
$langs -> load ( 'projects' );
print '<tr>' ;
print '<td>' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'Project' );
print '</td>' ;
if ( $action != 'classify' )
{
print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=classify&facid=' . $object -> id . '">' ;
print img_edit ( $langs -> trans ( 'SetProject' ), 1 );
print '</a></td>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
print '</tr></table>' ;
2011-08-27 17:40:08 +02:00
2012-06-09 19:16:31 +02:00
print '</td><td colspan="3">' ;
if ( $action == 'classify' )
2012-02-06 17:18:19 +01:00
{
2012-06-09 19:16:31 +02:00
$form -> form_project ( $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id , $object -> socid , $object -> fk_project , 'projectid' );
2012-02-06 17:18:19 +01:00
}
2012-06-09 19:16:31 +02:00
else
2012-05-06 02:27:09 +02:00
{
2012-06-09 19:16:31 +02:00
$form -> form_project ( $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id , $object -> socid , $object -> fk_project , 'none' );
2012-05-06 02:27:09 +02:00
}
2012-06-09 19:16:31 +02:00
print '</td>' ;
print '</tr>' ;
}
2012-05-06 02:27:09 +02:00
2012-06-09 19:16:31 +02:00
// Other attributes
$parameters = array ( 'colspan' => ' colspan="3"' );
$reshook = $hookmanager -> executeHooks ( 'formObjectOptions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
if ( empty ( $reshook ) && ! empty ( $extrafields -> attribute_label ))
{
foreach ( $extrafields -> attribute_label as $key => $label )
2012-03-17 16:05:58 +01:00
{
2012-06-09 19:16:31 +02:00
$value = ( isset ( $_POST [ " options_ " . $key ]) ? $_POST [ " options_ " . $key ] : $object -> array_options [ " options_ " . $key ]);
print '<tr><td>' . $label . '</td><td colspan="3">' ;
print $extrafields -> showInputField ( $key , $value );
print '</td></tr>' . " \n " ;
2012-03-16 11:12:59 +01:00
}
2012-06-09 19:16:31 +02:00
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
print '</table><br>' ;
2010-09-12 20:01:29 +02:00
2012-06-09 19:16:31 +02:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_CONTACTS_TAB ))
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/contact/class/contact.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formcompany.class.php' ;
2012-06-09 19:16:31 +02:00
$formcompany = new FormCompany ( $db );
$blocname = 'contacts' ;
$title = $langs -> trans ( 'ContactsAddresses' );
2012-08-23 02:04:35 +02:00
include DOL_DOCUMENT_ROOT . '/core/tpl/bloc_showhide.tpl.php' ;
2012-06-09 19:16:31 +02:00
}
2010-09-12 20:01:29 +02:00
2012-06-09 19:16:31 +02:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_NOTES_TAB ))
{
$blocname = 'notes' ;
$title = $langs -> trans ( 'Notes' );
2012-08-23 02:04:35 +02:00
include DOL_DOCUMENT_ROOT . '/core/tpl/bloc_showhide.tpl.php' ;
2012-06-09 19:16:31 +02:00
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
/*
* Lines
*/
$result = $object -> getLinesArray ();
2011-05-05 09:25:31 +02:00
2012-08-23 13:45:51 +02:00
if ( ! empty ( $conf -> use_javascript_ajax ) && $object -> statut == 0 )
2012-06-09 19:16:31 +02:00
{
2012-08-23 02:04:35 +02:00
include DOL_DOCUMENT_ROOT . '/core/tpl/ajaxrow.tpl.php' ;
2012-06-09 19:16:31 +02:00
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
print '<table id="tablelines" class="noborder noshadow" width="100%">' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Show object lines
2012-08-23 13:45:51 +02:00
if ( ! empty ( $object -> lines ))
$ret = $object -> printObjectLines ( $action , $mysoc , $soc , $lineid , 1 , $hookmanager );
2012-06-09 19:16:31 +02:00
/*
* Form to add new line
*/
if ( $object -> statut == 0 && $user -> rights -> facture -> creer && $action <> 'valid' && $action <> 'editline' )
{
$var = true ;
2012-08-27 19:11:44 +02:00
if ( $conf -> global -> MAIN_FEATURES_LEVEL > 1 )
{
// Add free or predefined products/services
$object -> formAddObjectLine ( 1 , $mysoc , $soc , $hookmanager );
}
else
{
// Add free products/services
$object -> formAddFreeProduct ( 1 , $mysoc , $soc , $hookmanager );
// Add predefined products/services
if ( $conf -> product -> enabled || $conf -> service -> enabled )
{
$var =! $var ;
$object -> formAddPredefinedProduct ( 1 , $mysoc , $soc , $hookmanager );
}
}
2011-08-11 00:47:33 +02:00
2012-06-09 19:16:31 +02:00
$parameters = array ();
2012-08-23 13:45:51 +02:00
$reshook = $hookmanager -> executeHooks ( 'formAddObjectLine' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2012-06-09 19:16:31 +02:00
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
print " </table> \n " ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
print " </div> \n " ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
/*
* Boutons actions
*/
if ( $action != 'prerelance' && $action != 'presend' )
{
if ( $user -> societe_id == 0 && $action <> 'valid' && $action <> 'editline' )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<div class="tabsAction">' ;
// Editer une facture deja validee, sans paiement effectue et pas exporte en compta
if ( $object -> statut == 1 )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
// On verifie si les lignes de factures ont ete exportees en compta et/ou ventilees
$ventilExportCompta = $object -> getVentilExportCompta ();
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
if ( $resteapayer == $object -> total_ttc && $object -> paye == 0 && $ventilExportCompta == 0 )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
if ( ! $objectidnext )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
if (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && $user -> rights -> facture -> valider ) || $user -> rights -> facture -> invoice_advance -> unvalidate )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id . '&action=modif">' . $langs -> trans ( 'Modify' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
else
{
2012-06-09 19:16:31 +02:00
print '<span class="butActionRefused" title="' . $langs -> trans ( " NotEnoughPermissions " ) . '">' . $langs -> trans ( 'Modify' ) . '</span>' ;
2011-05-05 09:25:31 +02:00
}
}
else
{
2012-06-09 19:16:31 +02:00
print '<span class="butActionRefused" title="' . $langs -> trans ( " DisabledBecauseReplacedInvoice " ) . '">' . $langs -> trans ( 'Modify' ) . '</span>' ;
2011-05-05 09:25:31 +02:00
}
}
2012-06-09 19:16:31 +02:00
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Reopen a standard paid invoice
if (( $object -> type == 0 || $object -> type == 1 ) && ( $object -> statut == 2 || $object -> statut == 3 )) // A paid invoice (partially or completely)
{
if ( ! $objectidnext && $object -> close_code != 'replaced' ) // Not replaced by another invoice
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id . '&action=reopen">' . $langs -> trans ( 'ReOpen' ) . '</a>' ;
}
else
{
print '<span class="butActionRefused" title="' . $langs -> trans ( " DisabledBecauseReplacedInvoice " ) . '">' . $langs -> trans ( 'ReOpen' ) . '</span>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Validate
if ( $object -> statut == 0 && count ( $object -> lines ) > 0 &&
(
(( $object -> type == 0 || $object -> type == 1 || $object -> type == 3 || $object -> type == 4 ) && ( ! empty ( $conf -> global -> FACTURE_ENABLE_NEGATIVE ) || $object -> total_ttc >= 0 ))
|| ( $object -> type == 2 && $object -> total_ttc <= 0 ))
)
{
if ( $user -> rights -> facture -> valider )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id . '&action=valid">' . $langs -> trans ( 'Validate' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Send by mail
if (( $object -> statut == 1 || $object -> statut == 2 ))
{
if ( $objectidnext )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<span class="butActionRefused" title="' . $langs -> trans ( " DisabledBecauseReplacedInvoice " ) . '">' . $langs -> trans ( 'SendByMail' ) . '</span>' ;
}
else
{
if ( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) || $user -> rights -> facture -> invoice_advance -> send )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id . '&action=presend&mode=init">' . $langs -> trans ( 'SendByMail' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
else print '<a class="butActionRefused" href="#">' . $langs -> trans ( 'SendByMail' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
}
2011-05-05 09:25:31 +02:00
2012-07-10 18:57:27 +02:00
if ( ! empty ( $conf -> global -> FACTURE_SHOW_SEND_REMINDER )) // For backward compatibility
2012-06-09 19:16:31 +02:00
{
if (( $object -> statut == 1 || $object -> statut == 2 ) && $resteapayer > 0 )
2011-05-05 09:25:31 +02:00
{
if ( $objectidnext )
{
2012-06-09 19:16:31 +02:00
print '<span class="butActionRefused" title="' . $langs -> trans ( " DisabledBecauseReplacedInvoice " ) . '">' . $langs -> trans ( 'SendRemindByMail' ) . '</span>' ;
2011-05-05 09:25:31 +02:00
}
else
{
2012-06-09 19:16:31 +02:00
if ( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) || $user -> rights -> facture -> invoice_advance -> send )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id . '&action=prerelance&mode=init">' . $langs -> trans ( 'SendRemindByMail' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
else print '<a class="butActionRefused" href="#">' . $langs -> trans ( 'SendRemindByMail' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
}
2012-06-09 19:16:31 +02:00
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Create payment
if ( $object -> type != 2 && $object -> statut == 1 && $object -> paye == 0 && $user -> rights -> facture -> paiement )
{
if ( $objectidnext )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<span class="butActionRefused" title="' . $langs -> trans ( " DisabledBecauseReplacedInvoice " ) . '">' . $langs -> trans ( 'DoPayment' ) . '</span>' ;
}
else
{
if ( $resteapayer == 0 )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<span class="butActionRefused" title="' . $langs -> trans ( " DisabledBecauseRemainderToPayIsZero " ) . '">' . $langs -> trans ( 'DoPayment' ) . '</span>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
else
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<a class="butAction" href="paiement.php?facid=' . $object -> id . '&action=create">' . $langs -> trans ( 'DoPayment' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
}
2012-06-09 19:16:31 +02:00
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Reverse back money or convert to reduction
if ( $object -> type == 2 || $object -> type == 3 )
{
// For credit note only
if ( $object -> type == 2 && $object -> statut == 1 && $object -> paye == 0 && $user -> rights -> facture -> paiement )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<a class="butAction" href="paiement.php?facid=' . $object -> id . '&action=create">' . $langs -> trans ( 'DoPaymentBack' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
// For credit note
if ( $object -> type == 2 && $object -> statut == 1 && $object -> paye == 0 && $user -> rights -> facture -> creer && $object -> getSommePaiement () == 0 )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id . '&action=converttoreduc">' . $langs -> trans ( 'ConvertToReduc' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
// For deposit invoice
if ( $object -> type == 3 && $object -> statut == 1 && $resteapayer == 0 && $user -> rights -> facture -> creer )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id . '&action=converttoreduc">' . $langs -> trans ( 'ConvertToReduc' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
}
// Classify paid (if not deposit and not credit note. Such invoice are "converted")
if ( $object -> statut == 1 && $object -> paye == 0 && $user -> rights -> facture -> paiement &&
(( $object -> type != 2 && $object -> type != 3 && $resteapayer <= 0 ) || ( $object -> type == 2 && $resteapayer >= 0 )) )
{
print '<a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id . '&action=paid">' . $langs -> trans ( 'ClassifyPaid' ) . '</a>' ;
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Classify 'closed not completely paid' (possible si validee et pas encore classee payee)
if ( $object -> statut == 1 && $object -> paye == 0 && $resteapayer > 0
&& $user -> rights -> facture -> paiement )
{
if ( $totalpaye > 0 || $totalcreditnotes > 0 )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
// If one payment or one credit note was linked to this invoice
print '<a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id . '&action=paid">' . $langs -> trans ( 'ClassifyPaidPartially' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
else
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
if ( $objectidnext )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<span class="butActionRefused" title="' . $langs -> trans ( " DisabledBecauseReplacedInvoice " ) . '">' . $langs -> trans ( 'ClassifyCanceled' ) . '</span>' ;
2011-05-05 09:25:31 +02:00
}
else
{
2012-06-09 19:16:31 +02:00
print '<a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id . '&action=canceled">' . $langs -> trans ( 'ClassifyCanceled' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
}
}
2012-06-09 19:16:31 +02:00
// Clone
if (( $object -> type == 0 || $object -> type == 3 || $object -> type == 4 ) && $user -> rights -> facture -> creer )
2011-11-30 18:48:37 +01:00
{
2012-06-09 19:16:31 +02:00
print '<a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id . '&action=clone&object=invoice">' . $langs -> trans ( " ToClone " ) . '</a>' ;
2011-11-30 18:48:37 +01:00
}
2012-06-09 19:16:31 +02:00
// Clone as predefined
if (( $object -> type == 0 || $object -> type == 3 || $object -> type == 4 ) && $object -> statut == 0 && $user -> rights -> facture -> creer )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
if ( ! $objectidnext )
{
print '<a class="butAction" href="facture/fiche-rec.php?facid=' . $object -> id . '&action=create">' . $langs -> trans ( " ChangeIntoRepeatableInvoice " ) . '</a>' ;
}
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
// Delete
if ( $user -> rights -> facture -> supprimer )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
if ( ! $object -> is_erasable ())
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<a class="butActionRefused" href="#" title="' . $langs -> trans ( " DisabledBecauseNotErasable " ) . '">' . $langs -> trans ( 'Delete' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
else if ( $objectidnext )
{
print '<a class="butActionRefused" href="#" title="' . $langs -> trans ( " DisabledBecauseReplacedInvoice " ) . '">' . $langs -> trans ( 'Delete' ) . '</a>' ;
}
elseif ( $object -> getSommePaiement ())
{
print '<a class="butActionRefused" href="#" title="' . $langs -> trans ( " DisabledBecausePayments " ) . '">' . $langs -> trans ( 'Delete' ) . '</a>' ;
}
else
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<a class="butActionDelete" href="' . $_SERVER [ " PHP_SELF " ] . '?facid=' . $object -> id . '&action=delete">' . $langs -> trans ( 'Delete' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
}
2012-06-09 19:16:31 +02:00
else
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<a class="butActionRefused" href="#" title="' . $langs -> trans ( " NotAllowed " ) . '">' . $langs -> trans ( 'Delete' ) . '</a>' ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
print '</div>' ;
2011-05-05 09:25:31 +02:00
}
}
2008-08-12 20:20:18 +02:00
2012-06-09 19:16:31 +02:00
if ( $action != 'prerelance' && $action != 'presend' )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
print '<table width="100%"><tr><td width="50%" valign="top">' ;
print '<a name="builddoc"></a>' ; // ancre
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
/*
* Documents generes
*/
$filename = dol_sanitizeFileName ( $object -> ref );
$filedir = $conf -> facture -> dir_output . '/' . dol_sanitizeFileName ( $object -> ref );
$urlsource = $_SERVER [ 'PHP_SELF' ] . '?facid=' . $object -> id ;
$genallowed = $user -> rights -> facture -> creer ;
$delallowed = $user -> rights -> facture -> supprimer ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
print '<br>' ;
print $formfile -> showdocuments ( 'facture' , $filename , $filedir , $urlsource , $genallowed , $delallowed , $object -> modelpdf , 1 , 0 , 0 , 28 , 0 , '' , '' , '' , $soc -> default_lang , $hookmanager );
$somethingshown = $formfile -> numoffiles ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
/*
* Linked object block
*/
$somethingshown = $object -> showLinkedObjectBlock ();
2012-05-05 17:45:17 +02:00
2012-06-09 19:16:31 +02:00
// Link for paypal payment
if ( $conf -> paypal -> enabled && $object -> statut != 0 )
2012-05-05 17:45:17 +02:00
{
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/paypal/lib/paypal.lib.php' ;
2012-06-09 19:16:31 +02:00
print showPaypalPaymentUrl ( 'invoice' , $object -> ref );
2012-05-05 17:45:17 +02:00
}
2012-06-09 19:16:31 +02:00
print '</td><td valign="top" width="50%">' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
print '<br>' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// List of actions on element
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php' ;
2012-06-09 19:16:31 +02:00
$formactions = new FormActions ( $db );
$somethingshown = $formactions -> showactions ( $object , 'invoice' , $socid );
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
print '</td></tr></table>' ;
}
else
{
/*
* Affiche formulaire mail
*/
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// By default if $action=='presend'
$titreform = 'SendBillByMail' ;
$topicmail = 'SendBillRef' ;
$action = 'send' ;
$modelmail = 'facture_send' ;
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
if ( $action == 'prerelance' ) // For backward compatibility
{
$titrefrom = 'SendReminderBillByMail' ;
$topicmail = 'SendReminderBillRef' ;
$action = 'relance' ;
$modelmail = 'facture_relance' ;
}
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
$ref = dol_sanitizeFileName ( $object -> ref );
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
2012-06-09 19:16:31 +02:00
$fileparams = dol_most_recent_file ( $conf -> facture -> dir_output . '/' . $ref );
$file = $fileparams [ 'fullname' ];
2011-05-05 09:25:31 +02:00
2012-06-09 19:16:31 +02:00
// Build document if it not exists
if ( ! $file || ! is_readable ( $file ))
{
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && ! empty ( $_REQUEST [ 'lang_id' ])) $newlang = $_REQUEST [ 'lang_id' ];
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
$result = facture_pdf_create ( $db , $object , GETPOST ( 'model' ) ? GETPOST ( 'model' ) : $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref , $hookmanager );
if ( $result <= 0 )
2011-05-05 09:25:31 +02:00
{
2012-06-09 19:16:31 +02:00
dol_print_error ( $db , $result );
exit ;
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
$fileparams = dol_most_recent_file ( $conf -> facture -> dir_output . '/' . $ref );
$file = $fileparams [ 'fullname' ];
2011-05-05 09:25:31 +02:00
}
2012-06-09 19:16:31 +02:00
print '<br>' ;
print_titre ( $langs -> trans ( $titreform ));
// Cree l'objet formulaire mail
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formmail.class.php' ;
2012-06-09 19:16:31 +02:00
$formmail = new FormMail ( $db );
$formmail -> fromtype = 'user' ;
$formmail -> fromid = $user -> id ;
$formmail -> fromname = $user -> getFullName ( $langs );
$formmail -> frommail = $user -> email ;
$formmail -> withfrom = 1 ;
$formmail -> withto = empty ( $_POST [ " sendto " ]) ? 1 : $_POST [ " sendto " ];
$formmail -> withtosocid = $soc -> id ;
$formmail -> withtocc = 1 ;
$formmail -> withtoccsocid = 0 ;
$formmail -> withtoccc = $conf -> global -> MAIN_EMAIL_USECCC ;
$formmail -> withtocccsocid = 0 ;
$formmail -> withtopic = $langs -> transnoentities ( $topicmail , '__FACREF__' );
$formmail -> withfile = 2 ;
$formmail -> withbody = 1 ;
$formmail -> withdeliveryreceipt = 1 ;
$formmail -> withcancel = 1 ;
// Tableau des substitutions
$formmail -> substit [ '__FACREF__' ] = $object -> ref ;
$formmail -> substit [ '__SIGNATURE__' ] = $user -> signature ;
$formmail -> substit [ '__PERSONALIZED__' ] = '' ;
// Tableau des parametres complementaires du post
$formmail -> param [ 'action' ] = $action ;
$formmail -> param [ 'models' ] = $modelmail ;
$formmail -> param [ 'facid' ] = $object -> id ;
$formmail -> param [ 'returnurl' ] = $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id ;
// Init list of files
if ( GETPOST ( " mode " ) == 'init' )
{
$formmail -> clear_attached_files ();
$formmail -> add_attached_files ( $file , basename ( $file ), dol_mimetype ( $file ));
}
$formmail -> show_form ();
print '<br>' ;
2011-05-05 09:25:31 +02:00
}
}
2012-06-09 19:16:31 +02:00
else
{
dol_print_error ( $db , $object -> error );
}
2008-08-12 20:20:18 +02:00
}
2012-07-23 21:31:10 +02:00
dol_htmloutput_mesg ( '' , $mesgs );
2008-08-12 20:20:18 +02:00
2011-08-27 16:24:16 +02:00
llxFooter ();
2012-03-17 16:05:58 +01:00
$db -> close ();
2012-08-23 07:53:48 +02:00
?>