123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403 |
- <?php
- /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2017 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2009 Regis Houssin <regis@dolibarr.fr>
- * Copyright (C) 2015-2017 Alexandre Spangaro <aspangaro@zendsi.com>
- * Copyright (C) 2017 Ferran Marcet <fmarcet@2byte.es>
- *
- * 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 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/expensereport/card.php
- * \ingroup expensereport
- * \brief Page for trip and expense report card
- */
- $res=0;
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php';
- require_once DOL_DOCUMENT_ROOT . '/core/class/CMailFile.class.php';
- require_once DOL_DOCUMENT_ROOT . '/core/class/html.formmail.class.php';
- require_once DOL_DOCUMENT_ROOT . '/core/class/html.formprojet.class.php';
- require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php';
- require_once DOL_DOCUMENT_ROOT . '/compta/bank/class/account.class.php';
- require_once DOL_DOCUMENT_ROOT . '/core/lib/expensereport.lib.php';
- require_once DOL_DOCUMENT_ROOT . '/core/lib/price.lib.php';
- require_once DOL_DOCUMENT_ROOT . '/core/modules/expensereport/modules_expensereport.php';
- require_once DOL_DOCUMENT_ROOT . '/expensereport/class/expensereport.class.php';
- require_once DOL_DOCUMENT_ROOT . '/expensereport/class/paymentexpensereport.class.php';
- require_once DOL_DOCUMENT_ROOT . '/core/class/doleditor.class.php';
- require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php';
- if (! empty($conf->accounting->enabled)) {
- require_once DOL_DOCUMENT_ROOT . '/accountancy/class/accountingjournal.class.php';
- }
- $langs->load("trips");
- $langs->load("bills");
- $langs->load("mails");
- $action=GETPOST('action','aZ09');
- $cancel=GETPOST('cancel');
- $confirm = GETPOST('confirm', 'alpha');
- $date_start = dol_mktime(0, 0, 0, GETPOST('date_debutmonth'), GETPOST('date_debutday'), GETPOST('date_debutyear'));
- $date_end = dol_mktime(0, 0, 0, GETPOST('date_finmonth'), GETPOST('date_finday'), GETPOST('date_finyear'));
- $date = dol_mktime(0, 0, 0, GETPOST('datemonth'), GETPOST('dateday'), GETPOST('dateyear'));
- $fk_projet=GETPOST('fk_projet');
- $vatrate=GETPOST('vatrate');
- $ref=GETPOST("ref",'alpha');
- $comments=GETPOST('comments');
- $fk_c_type_fees=GETPOST('fk_c_type_fees','int');
- // If socid provided by ajax company selector
- if (! empty($_REQUEST['socid_id']))
- {
- $_GET['socid'] = $_GET['socid_id'];
- $_POST['socid'] = $_POST['socid_id'];
- $_REQUEST['socid'] = $_REQUEST['socid_id'];
- }
- // Security check
- $id=GETPOST("id",'int');
- if ($user->societe_id) $socid=$user->societe_id;
- $result = restrictedArea($user, 'expensereport', 0, 'expensereport');
- // Hack to use expensereport dir
- $rootfordata = DOL_DATA_ROOT;
- $rootforuser = DOL_DATA_ROOT;
- // If multicompany module is enabled, we redefine the root of data
- if (! empty($conf->multicompany->enabled) && ! empty($conf->entity) && $conf->entity > 1)
- {
- $rootfordata.='/'.$conf->entity;
- }
- $conf->expensereport->dir_output = $rootfordata.'/expensereport';
- // Define $urlwithroot
- $urlwithouturlroot=preg_replace('/'.preg_quote(DOL_URL_ROOT,'/').'$/i','',trim($dolibarr_main_url_root));
- $urlwithroot=$urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
- //$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
- // PDF
- $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));
- $object=new ExpenseReport($db);
- $extrafields = new ExtraFields($db);
- // fetch optionals attributes and labels
- $extralabels = $extrafields->fetch_name_optionals_label($object->table_element);
- // Load object
- include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be include, not include_once
- // Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
- $hookmanager->initHooks(array('expensereportcard','globalcard'));
- $permissionnote = $user->rights->expensereport->creer; // Used by the include of actions_setnotes.inc.php
- $permissiondellink = $user->rights->expensereport->creer; // Used by the include of actions_dellink.inc.php
- $permissionedit = $user->rights->expensereport->creer; // Used by the include of actions_lineupdown.inc.php
- /*
- * Actions
- */
- $parameters = array('socid' => $socid);
- $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
- if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- if (empty($reshook))
- {
- if ($cancel)
- {
- $action='';
- $fk_projet='';
- $date_start='';
- $date_end='';
- $date='';
- $comments='';
- $vatrate='';
- $value_unit='';
- $qty=1;
- $fk_c_type_fees=-1;
- }
- include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once
- include DOL_DOCUMENT_ROOT.'/core/actions_dellink.inc.php'; // Must be include, not include_once
- include DOL_DOCUMENT_ROOT.'/core/actions_lineupdown.inc.php'; // Must be include, not include_once
- // Action clone object
- if ($action == 'confirm_clone' && $confirm == 'yes' && $user->rights->expensereport->creer)
- {
- if (1==0 && ! GETPOST('clone_content') && ! GETPOST('clone_receivers'))
- {
- setEventMessages($langs->trans("NoCloneOptionsSpecified"), null, 'errors');
- }
- else
- {
- if ($object->id > 0)
- {
- // Because createFromClone modifies the object, we must clone it so that we can restore it later
- $orig = clone $object;
-
- $result=$object->createFromClone($socid);
- if ($result > 0)
- {
- header("Location: ".$_SERVER['PHP_SELF'].'?id='.$result);
- exit;
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- $object = $orig;
- $action='';
- }
- }
- }
- }
-
- if ($action == 'confirm_delete' && GETPOST("confirm") == "yes" && $id > 0 && $user->rights->expensereport->supprimer)
- {
- $object = new ExpenseReport($db);
- $result = $object->fetch($id);
- $result = $object->delete($user);
- if ($result >= 0)
- {
- header("Location: index.php");
- exit;
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
-
- if ($action == 'add' && $user->rights->expensereport->creer)
- {
- $object = new ExpenseReport($db);
-
- $object->date_debut = $date_start;
- $object->date_fin = $date_end;
-
- $object->fk_user_author = GETPOST('fk_user_author','int');
- if (! ($object->fk_user_author > 0)) $object->fk_user_author = $user->id;
-
- $fuser=new User($db);
- $fuser->fetch($object->fk_user_author);
-
- $object->fk_statut = 1;
- $object->fk_c_paiement = GETPOST('fk_c_paiement','int');
- $object->fk_user_validator = GETPOST('fk_user_validator','int');
- $object->note_public = GETPOST('note_public');
- $object->note_private = GETPOST('note_private');
- // Fill array 'array_options' with data from add form
- if (! $error)
- {
- $ret = $extrafields->setOptionalsFromPost($extralabels, $object);
- if ($ret < 0) $error++;
- }
-
- if ($object->periode_existe($fuser,$object->date_debut,$object->date_fin))
- {
- $error++;
- setEventMessages($langs->trans("ErrorDoubleDeclaration"), null, 'errors');
- $action='create';
- }
-
- if (! $error)
- {
- $db->begin();
-
- $id = $object->create($user);
-
- if ($id > 0)
- {
- $db->commit();
- Header("Location: ".$_SERVER["PHP_SELF"]."?id=".$id);
- exit;
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- $db->rollback();
- $action='create';
- }
- }
- }
-
- if ($action == 'update' && $user->rights->expensereport->creer)
- {
- $object = new ExpenseReport($db);
- $object->fetch($id);
-
- $object->date_debut = $date_start;
- $object->date_fin = $date_end;
-
- if($object->fk_statut < 3)
- {
- $object->fk_user_validator = GETPOST('fk_user_validator','int');
- }
-
- $object->fk_c_paiement = GETPOST('fk_c_paiement','int');
- $object->note_public = GETPOST('note_public');
- $object->note_private = GETPOST('note_private');
- $object->fk_user_modif = $user->id;
-
- $result = $object->update($user);
- if ($result > 0)
- {
- header("Location: ".$_SERVER["PHP_SELF"]."?id=".$_POST['id']);
- exit;
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
-
- if ($action == 'update_extras')
- {
- // Fill array 'array_options' with data from update form
- $extralabels = $extrafields->fetch_name_optionals_label($object->table_element);
- $ret = $extrafields->setOptionalsFromPost($extralabels, $object, GETPOST('attribute'));
- if ($ret < 0) $error++;
-
- if (! $error)
- {
- // Actions on extra fields (by external module or standard code)
- $hookmanager->initHooks(array('expensereportdao'));
- $parameters = array('id' => $object->id);
- $reshook = $hookmanager->executeHooks('insertExtraFields', $parameters, $object, $action); // Note that $action and $object may have been modified by
- // some hooks
- if (empty($reshook)) {
- $result = $object->insertExtraFields();
- if ($result < 0) {
- $error++;
- }
- } else if ($reshook < 0)
- $error++;
- }
-
- if ($error)
- $action = 'edit_extras';
- }
-
- if ($action == "confirm_validate" && GETPOST("confirm") == "yes" && $id > 0 && $user->rights->expensereport->creer)
- {
- $object = new ExpenseReport($db);
- $object->fetch($id);
- $result = $object->setValidate($user);
-
- if ($result > 0)
- {
- // Define output language
- if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE))
- {
- $outputlangs = $langs;
- $newlang = '';
- if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id')) $newlang = GETPOST('lang_id','alpha');
- if ($conf->global->MAIN_MULTILANGS && empty($newlang)) $newlang = $object->thirdparty->default_lang;
- if (! empty($newlang)) {
- $outputlangs = new Translate("", $conf);
- $outputlangs->setDefaultLang($newlang);
- }
- $model=$object->modelpdf;
- $ret = $object->fetch($id); // Reload to get new records
-
- $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
- }
- }
-
- if ($result > 0 && $object->fk_user_validator > 0)
- {
- $langs->load("mails");
-
- // TO
- $destinataire = new User($db);
- $destinataire->fetch($object->fk_user_validator);
- $emailTo = $destinataire->email;
-
- // FROM
- $expediteur = new User($db);
- $expediteur->fetch($object->fk_user_author);
- $emailFrom = $expediteur->email;
-
- if ($emailTo && $emailFrom)
- {
- $filename=array(); $filedir=array(); $mimetype=array();
-
- // SUBJECT
- $subject = $langs->transnoentities("ExpenseReportWaitingForApproval");
-
- // CONTENT
- $link = $urlwithroot.'/expensereport/card.php?id='.$object->id;
- $message = $langs->transnoentities("ExpenseReportWaitingForApprovalMessage", $expediteur->getFullName($langs), get_date_range($object->date_debut,$object->date_fin,'',$langs), $link);
-
- // Rebuild pdf
- /*
- $object->setDocModel($user,"");
- $resultPDF = expensereport_pdf_create($db,$id,'',"",$langs);
-
- if($resultPDF):
- // ATTACHMENT
- array_push($filename,dol_sanitizeFileName($object->ref).".pdf");
- array_push($filedir,$conf->expensereport->dir_output . "/" . dol_sanitizeFileName($object->ref) . "/" . dol_sanitizeFileName($object->ref).".pdf");
- array_push($mimetype,"application/pdf");
- */
-
- // PREPARE SEND
- $mailfile = new CMailFile($subject,$emailTo,$emailFrom,$message,$filedir,$mimetype,$filename);
-
- if ($mailfile)
- {
- // SEND
- $result=$mailfile->sendfile();
- if ($result)
- {
- $mesg=$langs->trans('MailSuccessfulySent',$mailfile->getValidAddress($emailFrom,2),$mailfile->getValidAddress($emailTo,2));
- setEventMessages($mesg, null, 'mesgs');
- header("Location: ".$_SERVER["PHP_SELF"]."?id=".$id);
- exit;
- }
- else
- {
- $langs->load("other");
- if ($mailfile->error)
- {
- $mesg='';
- $mesg.=$langs->trans('ErrorFailedToSendMail', $emailFrom, $emailTo);
- $mesg.='<br>'.$mailfile->error;
- setEventMessages($mesg, null, 'errors');
- }
- else
- {
- setEventMessages('No mail sent. Feature is disabled by option MAIN_DISABLE_ALL_MAILS', null, 'warnings');
- }
- }
- }
- else
- {
- setEventMessages($mailfile->error,$mailfile->errors,'errors');
- $action='';
- }
- }
- else
- {
- setEventMessages($langs->trans("NoEmailSentBadSenderOrRecipientEmail"), null, 'warnings');
- $action='';
- }
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
-
- if ($action == "confirm_save_from_refuse" && GETPOST("confirm") == "yes" && $id > 0 && $user->rights->expensereport->creer)
- {
- $object = new ExpenseReport($db);
- $object->fetch($id);
- $result = $object->set_save_from_refuse($user);
-
- if ($result > 0)
- {
- // Define output language
- if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE))
- {
- $outputlangs = $langs;
- $newlang = '';
- if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id')) $newlang = GETPOST('lang_id','alpha');
- if ($conf->global->MAIN_MULTILANGS && empty($newlang)) $newlang = $object->thirdparty->default_lang;
- if (! empty($newlang)) {
- $outputlangs = new Translate("", $conf);
- $outputlangs->setDefaultLang($newlang);
- }
- $model=$object->modelpdf;
- $ret = $object->fetch($id); // Reload to get new records
-
- $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
- }
- }
-
- if ($result > 0)
- {
- // Send mail
- // TO
- $destinataire = new User($db);
- $destinataire->fetch($object->fk_user_validator);
- $emailTo = $destinataire->email;
-
- // FROM
- $expediteur = new User($db);
- $expediteur->fetch($object->fk_user_author);
- $emailFrom = $expediteur->email;
- if ($emailFrom && $emailTo)
- {
- $filename=array(); $filedir=array(); $mimetype=array();
-
- // SUBJECT
- $subject = $langs->transnoentities("ExpenseReportWaitingForReApproval");
-
- // CONTENT
- $link = $urlwithroot.'/expensereport/card.php?id='.$object->id;
- $dateRefusEx = explode(" ",$object->date_refuse);
- $message = $langs->transnoentities("ExpenseReportWaitingForReApprovalMessage", $dateRefusEx[0], $object->detail_refuse, $expediteur->getFullName($langs), $link);
- // Rebuild pdf
- /*
- $object->setDocModel($user,"");
- $resultPDF = expensereport_pdf_create($db,$object,'',"",$langs);
- if($resultPDF)
- {
- // ATTACHMENT
- $filename=array(); $filedir=array(); $mimetype=array();
- array_push($filename,dol_sanitizeFileName($object->ref).".pdf");
- array_push($filedir,$conf->expensereport->dir_output . "/" . dol_sanitizeFileName($object->ref) . "/" . dol_sanitizeFileName($object->ref_number).".pdf");
- array_push($mimetype,"application/pdf");
- }
- */
- // PREPARE SEND
- $mailfile = new CMailFile($subject,$emailTo,$emailFrom,$message,$filedir,$mimetype,$filename);
-
- if ($mailfile)
- {
- // SEND
- $result=$mailfile->sendfile();
- if ($result)
- {
- $mesg=$langs->trans('MailSuccessfulySent',$mailfile->getValidAddress($emailFrom,2),$mailfile->getValidAddress($emailTo,2));
- setEventMessages($mesg, null, 'mesgs');
- header("Location: ".$_SERVER["PHP_SELF"]."?id=".$id);
- exit;
- }
- else
- {
- $langs->load("other");
- if ($mailfile->error)
- {
- $mesg='';
- $mesg.=$langs->trans('ErrorFailedToSendMail', $emailFrom, $emailTo);
- $mesg.='<br>'.$mailfile->error;
- setEventMessages($mesg, null, 'errors');
- }
- else
- {
- setEventMessages('No mail sent. Feature is disabled by option MAIN_DISABLE_ALL_MAILS', null, 'warnings');
- }
- }
- }
- else
- {
- setEventMessages($mailfile->error,$mailfile->errors,'errors');
- $action='';
- }
- }
- else
- {
- setEventMessages($langs->trans("NoEmailSentBadSenderOrRecipientEmail"), null, 'warnings');
- $action='';
- }
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
-
- // Approve
- if ($action == "confirm_approve" && GETPOST("confirm") == "yes" && $id > 0 && $user->rights->expensereport->approve)
- {
- $object = new ExpenseReport($db);
- $object->fetch($id);
-
- $result = $object->setApproved($user);
-
- if ($result > 0)
- {
- // Define output language
- if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE))
- {
- $outputlangs = $langs;
- $newlang = '';
- if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id')) $newlang = GETPOST('lang_id','alpha');
- if ($conf->global->MAIN_MULTILANGS && empty($newlang)) $newlang = $object->thirdparty->default_lang;
- if (! empty($newlang)) {
- $outputlangs = new Translate("", $conf);
- $outputlangs->setDefaultLang($newlang);
- }
- $model=$object->modelpdf;
- $ret = $object->fetch($id); // Reload to get new records
-
- $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
- }
- }
-
- if ($result > 0)
- {
- // Send mail
- // TO
- $destinataire = new User($db);
- $destinataire->fetch($object->fk_user_author);
- $emailTo = $destinataire->email;
- // CC
- $emailCC = $conf->global->NDF_CC_EMAILS;
- if (empty($emailTo)) $emailTo=$emailCC;
- // FROM
- $expediteur = new User($db);
- $expediteur->fetch($object->fk_user_valid);
- $emailFrom = $expediteur->email;
- if ($emailFrom && $emailTo)
- {
- $filename=array(); $filedir=array(); $mimetype=array();
-
- // SUBJECT
- $subject = $langs->transnoentities("ExpenseReportApproved");
-
- // CONTENT
- $link = $urlwithroot.'/expensereport/card.php?id='.$object->id;
- $message = $langs->transnoentities("ExpenseReportApprovedMessage", $object->ref, $destinataire->getFullName($langs), $expediteur->getFullName($langs), $link);
-
- // Rebuilt pdf
- /*
- $object->setDocModel($user,"");
- $resultPDF = expensereport_pdf_create($db,$object,'',"",$langs);
-
- if($resultPDF
- {
- // ATTACHMENT
- $filename=array(); $filedir=array(); $mimetype=array();
- array_push($filename,dol_sanitizeFileName($object->ref).".pdf");
- array_push($filedir, $conf->expensereport->dir_output."/".dol_sanitizeFileName($object->ref)."/".dol_sanitizeFileName($object->ref).".pdf");
- array_push($mimetype,"application/pdf");
- }
- */
- $mailfile = new CMailFile($subject,$emailTo,$emailFrom,$message,$filedir,$mimetype,$filename);
-
- if ($mailfile)
- {
- // SEND
- $result=$mailfile->sendfile();
- if ($result)
- {
- $mesg=$langs->trans('MailSuccessfulySent',$mailfile->getValidAddress($emailFrom,2),$mailfile->getValidAddress($emailTo,2));
- setEventMessages($mesg, null, 'mesgs');
- header("Location: ".$_SERVER["PHP_SELF"]."?id=".$id);
- exit;
- }
- else
- {
- $langs->load("other");
- if ($mailfile->error)
- {
- $mesg='';
- $mesg.=$langs->trans('ErrorFailedToSendMail', $emailFrom, $emailTo);
- $mesg.='<br>'.$mailfile->error;
- setEventMessages($mesg, null, 'errors');
- }
- else
- {
- setEventMessages('No mail sent. Feature is disabled by option MAIN_DISABLE_ALL_MAILS', null, 'warnings');
- }
- }
- }
- else
- {
- setEventMessages($mailfile->error,$mailfile->errors,'errors');
- $action='';
- }
- }
- else
- {
- setEventMessages($langs->trans("NoEmailSentBadSenderOrRecipientEmail"), null, 'warnings');
- $action='';
- }
- }
- else
- {
- setEventMessages($langs->trans("FailedtoSetToApprove"), null, 'warnings');
- $action='';
- }
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- if ($action == "confirm_refuse" && GETPOST('confirm')=="yes" && $id > 0 && $user->rights->expensereport->approve)
- {
- $object = new ExpenseReport($db);
- $object->fetch($id);
- $result = $object->setDeny($user,GETPOST('detail_refuse'));
- if ($result > 0)
- {
- // Define output language
- if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE))
- {
- $outputlangs = $langs;
- $newlang = '';
- if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id')) $newlang = GETPOST('lang_id','alpha');
- if ($conf->global->MAIN_MULTILANGS && empty($newlang)) $newlang = $object->thirdparty->default_lang;
- if (! empty($newlang)) {
- $outputlangs = new Translate("", $conf);
- $outputlangs->setDefaultLang($newlang);
- }
- $model=$object->modelpdf;
- $ret = $object->fetch($id); // Reload to get new records
-
- $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
- }
- }
- if ($result > 0)
- {
- // Send mail
- // TO
- $destinataire = new User($db);
- $destinataire->fetch($object->fk_user_author);
- $emailTo = $destinataire->email;
-
- // FROM
- $expediteur = new User($db);
- $expediteur->fetch($object->fk_user_refuse);
- $emailFrom = $expediteur->email;
-
- if ($emailFrom && $emailTo)
- {
- $filename=array(); $filedir=array(); $mimetype=array();
-
- // SUBJECT
- $subject = $langs->transnoentities("ExpenseReportRefused");
-
- // CONTENT
- $link = $urlwithroot.'/expensereport/card.php?id='.$object->id;
- $message = $langs->transnoentities("ExpenseReportRefusedMessage", $object->ref, $destinataire->getFullName($langs), $expediteur->getFullName($langs), $_POST['detail_refuse'], $link);
-
- // Rebuilt pdf
- /*
- $object->setDocModel($user,"");
- $resultPDF = expensereport_pdf_create($db,$object,'',"",$langs);
-
- if($resultPDF
- {
- // ATTACHMENT
- $filename=array(); $filedir=array(); $mimetype=array();
- array_push($filename,dol_sanitizeFileName($object->ref).".pdf");
- array_push($filedir, $conf->expensereport->dir_output."/".dol_sanitizeFileName($object->ref)."/".dol_sanitizeFileName($object->ref).".pdf");
- array_push($mimetype,"application/pdf");
- }
- */
- // PREPARE SEND
- $mailfile = new CMailFile($subject,$emailTo,$emailFrom,$message,$filedir,$mimetype,$filename);
- if ($mailfile)
- {
- // SEND
- $result=$mailfile->sendfile();
- if ($result)
- {
- $mesg=$langs->trans('MailSuccessfulySent',$mailfile->getValidAddress($emailFrom,2),$mailfile->getValidAddress($emailTo,2));
- setEventMessages($mesg, null, 'mesgs');
- header("Location: ".$_SERVER["PHP_SELF"]."?id=".$id);
- exit;
- }
- else
- {
- $langs->load("other");
- if ($mailfile->error)
- {
- $mesg='';
- $mesg.=$langs->trans('ErrorFailedToSendMail', $emailFrom, $emailTo);
- $mesg.='<br>'.$mailfile->error;
- setEventMessages($mesg, null, 'errors');
- }
- else
- {
- setEventMessages('No mail sent. Feature is disabled by option MAIN_DISABLE_ALL_MAILS', null, 'warnings');
- }
- }
- }
- else
- {
- setEventMessages($mailfile->error,$mailfile->errors,'errors');
- $action='';
- }
- }
- else
- {
- setEventMessages($langs->trans("NoEmailSentBadSenderOrRecipientEmail"), null, 'warnings');
- $action='';
- }
- }
- else
- {
- setEventMessages($langs->trans("FailedtoSetToDeny"), null, 'warnings');
- $action='';
- }
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- //var_dump($user->id == $object->fk_user_validator);exit;
- if ($action == "confirm_cancel" && GETPOST('confirm')=="yes" && GETPOST('detail_cancel') && $id > 0 && $user->rights->expensereport->creer)
- {
- $object = new ExpenseReport($db);
- $object->fetch($id);
- if ($user->id == $object->fk_user_valid || $user->id == $object->fk_user_author)
- {
- $result = $object->set_cancel($user,GETPOST('detail_cancel'));
- if ($result > 0)
- {
- // Define output language
- if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE))
- {
- $outputlangs = $langs;
- $newlang = '';
- if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id')) $newlang = GETPOST('lang_id','alpha');
- if ($conf->global->MAIN_MULTILANGS && empty($newlang)) $newlang = $object->thirdparty->default_lang;
- if (! empty($newlang)) {
- $outputlangs = new Translate("", $conf);
- $outputlangs->setDefaultLang($newlang);
- }
- $model=$object->modelpdf;
- $ret = $object->fetch($id); // Reload to get new records
-
- $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
- }
- }
- if ($result > 0)
- {
- // Send mail
- // TO
- $destinataire = new User($db);
- $destinataire->fetch($object->fk_user_author);
- $emailTo = $destinataire->email;
- // FROM
- $expediteur = new User($db);
- $expediteur->fetch($object->fk_user_cancel);
- $emailFrom = $expediteur->email;
-
- if ($emailFrom && $emailTo)
- {
- $filename=array(); $filedir=array(); $mimetype=array();
-
- // SUBJECT
- $subject = $langs->transnoentities("ExpenseReportCanceled");
-
- // CONTENT
- $link = $urlwithroot.'/expensereport/card.php?id='.$object->id;
- $message = $langs->transnoentities("ExpenseReportCanceledMessage", $object->ref, $destinataire->getFullName($langs), $expediteur->getFullName($langs), $_POST['detail_cancel'], $link);
-
- // Rebuilt pdf
- /*
- $object->setDocModel($user,"");
- $resultPDF = expensereport_pdf_create($db,$object,'',"",$langs);
-
- if($resultPDF
- {
- // ATTACHMENT
- $filename=array(); $filedir=array(); $mimetype=array();
- array_push($filename,dol_sanitizeFileName($object->ref).".pdf");
- array_push($filedir, $conf->expensereport->dir_output."/".dol_sanitizeFileName($object->ref)."/".dol_sanitizeFileName($object->ref).".pdf");
- array_push($mimetype,"application/pdf");
- }
- */
-
- // PREPARE SEND
- $mailfile = new CMailFile($subject,$emailTo,$emailFrom,$message,$filedir,$mimetype,$filename);
-
- if ($mailfile)
- {
- // SEND
- $result=$mailfile->sendfile();
- if ($result)
- {
- $mesg=$langs->trans('MailSuccessfulySent',$mailfile->getValidAddress($emailFrom,2),$mailfile->getValidAddress($emailTo,2));
- setEventMessages($mesg, null, 'mesgs');
- header("Location: ".$_SERVER["PHP_SELF"]."?id=".$id);
- exit;
- }
- else
- {
- $langs->load("other");
- if ($mailfile->error)
- {
- $mesg='';
- $mesg.=$langs->trans('ErrorFailedToSendMail', $emailFrom, $emailTo);
- $mesg.='<br>'.$mailfile->error;
- setEventMessages($mesg, null, 'errors');
- }
- else
- {
- setEventMessages('No mail sent. Feature is disabled by option MAIN_DISABLE_ALL_MAILS', null, 'warnings');
- }
- }
- }
- else
- {
- setEventMessages($mailfile->error,$mailfile->errors,'errors');
- $action='';
- }
- }
- else
- {
- setEventMessages($langs->trans("NoEmailSentBadSenderOrRecipientEmail"), null, 'warnings');
- $action='';
- }
- }
- else
- {
- setEventMessages($langs->trans("FailedToSetToCancel"), null, 'warnings');
- $action='';
- }
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- if ($action == "confirm_brouillonner" && GETPOST('confirm')=="yes" && $id > 0 && $user->rights->expensereport->creer)
- {
- $object = new ExpenseReport($db);
- $object->fetch($id);
- if ($user->id == $object->fk_user_author || $user->id == $object->fk_user_valid)
- {
- $result = $object->setStatut(0);
- if ($result > 0)
- {
- // Define output language
- if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE))
- {
- $outputlangs = $langs;
- $newlang = '';
- if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id')) $newlang = GETPOST('lang_id','alpha');
- if ($conf->global->MAIN_MULTILANGS && empty($newlang)) $newlang = $object->thirdparty->default_lang;
- if (! empty($newlang)) {
- $outputlangs = new Translate("", $conf);
- $outputlangs->setDefaultLang($newlang);
- }
- $model=$object->modelpdf;
- $ret = $object->fetch($id); // Reload to get new records
-
- $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
- }
- }
- if ($result > 0)
- {
- header("Location: ".$_SERVER["PHP_SELF"]."?id=".$id);
- exit;
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- else
- {
- setEventMessages("NOT_AUTHOR", '', 'errors');
- }
- }
- if ($action == 'set_paid' && $id > 0 && $user->rights->expensereport->to_paid)
- {
- $object = new ExpenseReport($db);
- $object->fetch($id);
- $result = $object->set_paid($id, $user);
- if ($result > 0)
- {
- // Define output language
- if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE))
- {
- $outputlangs = $langs;
- $newlang = '';
- if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id')) $newlang = GETPOST('lang_id','alpha');
- if ($conf->global->MAIN_MULTILANGS && empty($newlang)) $newlang = $object->thirdparty->default_lang;
- if (! empty($newlang)) {
- $outputlangs = new Translate("", $conf);
- $outputlangs->setDefaultLang($newlang);
- }
- $model=$object->modelpdf;
- $ret = $object->fetch($id); // Reload to get new records
-
- $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
- }
- }
- if ($result > 0)
- {
- // Send mail
- // TO
- $destinataire = new User($db);
- $destinataire->fetch($object->fk_user_author);
- $emailTo = $destinataire->email;
- // FROM
- $expediteur = new User($db);
- $expediteur->fetch($user->id);
- $emailFrom = $expediteur->email;
- if ($emailFrom && $emailTo)
- {
- $filename=array(); $filedir=array(); $mimetype=array();
-
- // SUBJECT
- $subject = $langs->transnoentities("ExpenseReportPaid");
- // CONTENT
- $link = $urlwithroot.'/expensereport/card.php?id='.$object->id;
- $message = $langs->transnoentities("ExpenseReportPaidMessage", $object->ref, $destinataire->getFullName($langs), $expediteur->getFullName($langs), $link);
- // CONTENT
- $message = "Bonjour {$destinataire->firstname},\n\n";
- $message.= "Votre note de frais \"{$object->ref}\" vient d'être payée.\n";
- $message.= "- Payeur : {$expediteur->firstname} {$expediteur->lastname}\n";
- $message.= "- Lien : {$dolibarr_main_url_root}/expensereport/card.php?id={$object->id}\n\n";
- $message.= "Bien cordialement,\n' SI";
- // Generate pdf before attachment
- $object->setDocModel($user,"");
- $resultPDF = expensereport_pdf_create($db,$object,'',"",$langs);
- // PREPARE SEND
- $mailfile = new CMailFile($subject,$emailTo,$emailFrom,$message,$filedir,$mimetype,$filename);
- if ($mailfile)
- {
- // SEND
- $result=$mailfile->sendfile();
- if ($result)
- {
- $mesg=$langs->trans('MailSuccessfulySent',$mailfile->getValidAddress($emailFrom,2),$mailfile->getValidAddress($emailTo,2));
- setEventMessages($mesg, null, 'mesgs');
- header("Location: ".$_SERVER["PHP_SELF"]."?id=".$id);
- exit;
- }
- else
- {
- $langs->load("other");
- if ($mailfile->error)
- {
- $mesg='';
- $mesg.=$langs->trans('ErrorFailedToSendMail', $emailFrom, $emailTo);
- $mesg.='<br>'.$mailfile->error;
- setEventMessages($mesg, null, 'errors');
- }
- else
- {
- setEventMessages('No mail sent. Feature is disabled by option MAIN_DISABLE_ALL_MAILS', null, 'warnings');
- }
- }
- }
- else
- {
- setEventMessages($mailfile->error,$mailfile->errors,'errors');
- $action='';
- }
- }
- else
- {
- setEventMessages($langs->trans("NoEmailSentBadSenderOrRecipientEmail"), null, 'warnings');
- $action='';
- }
- }
- else
- {
- setEventMessages($langs->trans("FailedToSetPaid"), null, 'warnings');
- $action='';
- }
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- if ($action == "addline" && $user->rights->expensereport->creer)
- {
- $error = 0;
- $db->begin();
- $object_ligne = new ExpenseReportLine($db);
- $vatrate = GETPOST('vatrate');
- $object_ligne->comments = GETPOST('comments');
- $qty = GETPOST('qty','int');
- if (empty($qty)) $qty=1;
- $object_ligne->qty = $qty;
- $up=price2num(GETPOST('value_unit'),'MU');
- $object_ligne->value_unit = $up;
- $object_ligne->date = $date;
- $object_ligne->fk_c_type_fees = GETPOST('fk_c_type_fees');
- // if VAT is not used in Dolibarr, set VAT rate to 0 because VAT rate is necessary.
- if (empty($vatrate)) $vatrate = "0.000";
- $object_ligne->vatrate = price2num($vatrate);
- $object_ligne->fk_projet = $fk_projet;
- if (! GETPOST('fk_c_type_fees') > 0)
- {
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Type")), null, 'errors');
- $action='';
- }
- if ($vatrate < 0 || $vatrate == '')
- {
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("VAT")), null, 'errors');
- $action='';
- }
- /* Projects are never required. To force them, check module forceproject
- if ($conf->projet->enabled)
- {
- if (empty($object_ligne->fk_projet) || $object_ligne->fk_projet==-1)
- {
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Project")), null, 'errors');
- }
- }*/
- // Si aucune date n'est rentrée
- if (empty($object_ligne->date) || $object_ligne->date=="--")
- {
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Date")), null, 'errors');
- }
- // Si aucun prix n'est rentré
- if($object_ligne->value_unit==0)
- {
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("PriceUTTC")), null, 'errors');
- }
- // S'il y'a eu au moins une erreur
- if (! $error)
- {
- $object_ligne->fk_expensereport = $_POST['fk_expensereport'];
- $type = 0; // TODO What if service ?
- $seller = ''; // seller is unknown
- $tmp = calcul_price_total($qty, $up, 0, $vatrate, 0, 0, 0, 'TTC', 0, $type, $seller);
- $object_ligne->vatrate = price2num($vatrate);
- $object_ligne->total_ttc = $tmp[2];
- $object_ligne->total_ht = $tmp[0];
- $object_ligne->total_tva = $tmp[1];
- $result = $object_ligne->insert();
- if ($result > 0)
- {
- $db->commit();
- header("Location: ".$_SERVER["PHP_SELF"]."?id=".$id);
- exit;
- }
- else
- {
- dol_print_error($db,$object->error);
- $db->rollback();
- }
- }
- $action='';
- }
- if ($action == 'confirm_delete_line' && GETPOST("confirm") == "yes" && $user->rights->expensereport->creer)
- {
- $object = new ExpenseReport($db);
- $object->fetch($id);
-
- $object_ligne = new ExpenseReportLine($db);
- $object_ligne->fetch(GETPOST("rowid"));
- $total_ht = $object_ligne->total_ht;
- $total_tva = $object_ligne->total_tva;
- $result=$object->deleteline(GETPOST("rowid"), $user);
- if ($result >= 0)
- {
- if ($result > 0)
- {
- // Define output language
- if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE))
- {
- $outputlangs = $langs;
- $newlang = '';
- if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id')) $newlang = GETPOST('lang_id','alpha');
- if ($conf->global->MAIN_MULTILANGS && empty($newlang)) $newlang = $object->thirdparty->default_lang;
- if (! empty($newlang)) {
- $outputlangs = new Translate("", $conf);
- $outputlangs->setDefaultLang($newlang);
- }
- $model=$object->modelpdf;
- $ret = $object->fetch($id); // Reload to get new records
-
- $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
- }
- }
-
- $object->update_totaux_del($object_ligne->total_ht,$object_ligne->total_tva);
- header("Location: ".$_SERVER["PHP_SELF"]."?id=".$_GET['id']);
- exit;
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- if ($action == "updateligne" && $user->rights->expensereport->creer)
- {
- $object = new ExpenseReport($db);
- $object->fetch($id);
- $rowid = $_POST['rowid'];
- $type_fees_id = GETPOST('fk_c_type_fees');
- $projet_id = $fk_projet;
- $comments = GETPOST('comments');
- $qty = GETPOST('qty');
- $value_unit = GETPOST('value_unit');
- $vatrate = GETPOST('vatrate');
- // if VAT is not used in Dolibarr, set VAT rate to 0 because VAT rate is necessary.
- if (empty($vatrate)) $vatrate = "0.000";
- $vatrate = price2num($vatrate);
- if (! GETPOST('fk_c_type_fees') > 0)
- {
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Type")), null, 'errors');
- $action='';
- }
- if ((int) $vatrate < 0 || $vatrate == '')
- {
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Vat")), null, 'errors');
- $action='';
- }
- if (! $error)
- {
- // TODO Use update method of ExpenseReportLine
- $result = $object->updateline($rowid, $type_fees_id, $projet_id, $vatrate, $comments, $qty, $value_unit, $date, $id);
- if ($result >= 0)
- {
- if ($result > 0)
- {
- // Define output language
- if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE))
- {
- $outputlangs = $langs;
- $newlang = '';
- if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id')) $newlang = GETPOST('lang_id','alpha');
- if ($conf->global->MAIN_MULTILANGS && empty($newlang)) $newlang = $object->thirdparty->default_lang;
- if (! empty($newlang)) {
- $outputlangs = new Translate("", $conf);
- $outputlangs->setDefaultLang($newlang);
- }
- $model=$object->modelpdf;
- $ret = $object->fetch($id); // Reload to get new records
-
- $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
- }
- }
-
- $result = $object->recalculer($id);
-
- header("Location: ".$_SERVER["PHP_SELF"]."?id=".$id);
- exit;
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- }
- // Actions to build doc
- $upload_dir = $conf->expensereport->dir_output;
- $permissioncreate = $user->rights->expensereport->creer;
- include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php';
- }
- /*
- * View
- */
- $title=$langs->trans("ExpenseReport") . " - " . $langs->trans("Card");
- $helpurl="EN:Module_Expense_Reports";
- llxHeader("",$title,$helpurl);
- $form = new Form($db);
- $formfile = new FormFile($db);
- $formproject = new FormProjets($db);
- $projecttmp = new Project($db);
- $paymentexpensereportstatic=new PaymentExpenseReport($db);
- $bankaccountstatic = new Account($db);
- // Create
- if ($action == 'create')
- {
- print load_fiche_titre($langs->trans("NewTrip"));
- print '<form action="'.$_SERVER['PHP_SELF'].'" method="post" name="create">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="action" value="add">';
- dol_fiche_head('');
- print '<table class="border" width="100%">';
- print '<tbody>';
-
- // Date start
- print '<tr>';
- print '<td class="titlefieldcreate fieldrequired">'.$langs->trans("DateStart").'</td>';
- print '<td>';
- $form->select_date($date_start?$date_start:-1,'date_debut',0,0,0,'',1,1);
- print '</td>';
- print '</tr>';
-
- // Date end
- print '<tr>';
- print '<td class="fieldrequired">'.$langs->trans("DateEnd").'</td>';
- print '<td>';
- $form->select_date($date_end?$date_end:-1,'date_fin',0,0,0,'',1,1);
- print '</td>';
- print '</tr>';
-
- print '<tr>';
- print '<td class="fieldrequired">'.$langs->trans("User").'</td>';
- print '<td>';
- $defaultselectuser=$user->id;
- if (GETPOST('fk_user_author') > 0) $defaultselectuser=GETPOST('fk_user_author');
- $include_users = 'hierarchyme';
- if (! empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->expensereport->writeall_advance)) $include_users=array();
- $s=$form->select_dolusers($defaultselectuser, "fk_user_author", 0, "", 0, $include_users);
- print $s;
- print '</td>';
- print '</tr>';
- print '<tr>';
- print '<td>'.$langs->trans("VALIDATOR").'</td>';
- print '<td>';
- $object = new ExpenseReport($db);
- $include_users = $object->fetch_users_approver_expensereport();
- if (empty($include_users)) print img_warning().' '.$langs->trans("NobodyHasPermissionToValidateExpenseReport");
- else
- {
- $defaultselectuser=$user->fk_user; // Will work only if supervisor has permission to approve so is inside include_users
- if (! empty($conf->global->EXPENSEREPORT_DEFAULT_VALIDATOR)) $defaultselectuser=$conf->global->EXPENSEREPORT_DEFAULT_VALIDATOR; // Can force default approver
- if (GETPOST('fk_user_validator') > 0) $defaultselectuser=GETPOST('fk_user_validator');
- $s=$form->select_dolusers($defaultselectuser, "fk_user_validator", 1, "", 0, $include_users);
- print $form->textwithpicto($s, $langs->trans("AnyOtherInThisListCanValidate"));
- }
- print '</td>';
- print '</tr>';
-
- // Payment mode
- if (! empty($conf->global->EXPENSEREPORT_ASK_PAYMENTMODE_ON_CREATION))
- {
- print '<tr>';
- print '<td>'.$langs->trans("ModePaiement").'</td>';
- print '<td>';
- $form->select_types_paiements(2,'fk_c_paiement');
- print '</td>';
- print '</tr>';
- }
- // Public note
- print '<tr>';
- print '<td class="tdtop">' . $langs->trans('NotePublic') . '</td>';
- print '<td>';
- $doleditor = new DolEditor('note_public', $note_public, '', 80, 'dolibarr_notes', 'In', 0, false, true, ROWS_3, '90%');
- print $doleditor->Create(1);
- print '</td></tr>';
- // Private note
- if (empty($user->societe_id)) {
- print '<tr>';
- print '<td class="tdtop">' . $langs->trans('NotePrivate') . '</td>';
- print '<td>';
- $doleditor = new DolEditor('note_private', $note_private, '', 80, 'dolibarr_notes', 'In', 0, false, true, ROWS_3, '90%');
- print $doleditor->Create(1);
- print '</td></tr>';
- }
- // 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)) {
- print $object->showOptionals($extrafields, 'edit');
- }
- print '<tbody>';
- print '</table>';
- dol_fiche_end();
- print '<div class="center">';
- print '<input type="submit" value="'.$langs->trans("AddTrip").'" name="bouton" class="button" />';
- print ' <input type="button" value="'.$langs->trans("Cancel").'" class="button" onclick="history.go(-1)" />';
- print '</div>';
- print '</form>';
- }
- else
- {
- if($id > 0 || $ref)
- {
- $result = $object->fetch($id, $ref);
- $res = $object->fetch_optionals($object->id, $extralabels);
-
- if ($result > 0)
- {
- if (! in_array($object->fk_user_author, $user->getAllChildIds(1)))
- {
- if (empty($user->rights->expensereport->readall) && empty($user->rights->expensereport->lire_tous)
- && (empty($conf->global->MAIN_USE_ADVANCED_PERMS) || empty($user->rights->expensereport->writeall_advance)))
- {
- print load_fiche_titre($langs->trans('TripCard'));
- print '<div class="tabBar">';
- print $langs->trans('NotUserRightToView');
- print '</div>';
- llxFooter();
- $db->close();
- exit;
- }
- }
- $head = expensereport_prepare_head($object);
- if ($action == 'edit' && ($object->fk_statut < 3 || $object->fk_statut==99))
- {
- print "<form name='update' action=\"".$_SERVER['PHP_SELF']."\" method=\"post\">\n";
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="id" value="'.$id.'">';
- dol_fiche_head($head, 'card', $langs->trans("ExpenseReport"), 0, 'trip');
- if($object->fk_statut==99)
- {
- print '<input type="hidden" name="action" value="updateFromRefuse">';
- }
- else
- {
- print '<input type="hidden" name="action" value="update">';
- }
- $linkback = '<a href="'.DOL_URL_ROOT.'/expensereport/list.php'.(! empty($socid)?'?socid='.$socid:'').'">'.$langs->trans("BackToList").'</a>';
- print '<table class="border" style="width:100%;">';
- print '<tr>';
- print '<td>'.$langs->trans("User").'</td>';
- print '<td>';
- $userfee=new User($db);
- $userfee->fetch($object->fk_user_author);
- print $userfee->getNomUrl(-1);
- print '</td></tr>';
- // Ref
- print '<tr><td class="titlefieldcreate">'.$langs->trans("Ref").'</td><td>';
- print $form->showrefnav($object, 'ref', $linkback, 1, 'ref', 'ref', '');
- print '</td></tr>';
- print '<tr>';
- print '<td>'.$langs->trans("DateStart").'</td>';
- print '<td>';
- $form->select_date($object->date_debut,'date_debut');
- print '</td>';
- print '</tr>';
- print '<tr>';
- print '<td>'.$langs->trans("DateEnd").'</td>';
- print '<td>';
- $form->select_date($object->date_fin,'date_fin');
- print '</td>';
- print '</tr>';
- if (! empty($conf->global->EXPENSEREPORT_ASK_PAYMENTMODE_ON_CREATION))
- {
- print '<tr>';
- print '<td>'.$langs->trans("ModePaiement").'</td>';
- print '<td>';
- $form->select_types_paiements($object->fk_c_paiement,'fk_c_paiement');
- print '</td>';
- print '</tr>';
- }
- if($object->fk_statut<3)
- {
- print '<tr>';
- print '<td>'.$langs->trans("VALIDATOR").'</td>'; // Approbator
- print '<td>';
- $include_users = $object->fetch_users_approver_expensereport();
- $s=$form->select_dolusers($object->fk_user_validator,"fk_user_validator",1,"",0,$include_users);
- print $form->textwithpicto($s, $langs->trans("AnyOtherInThisListCanValidate"));
- print '</td>';
- print '</tr>';
- }
- else
- {
- print '<tr>';
- print '<td>'.$langs->trans("VALIDOR").'</td>';
- print '<td>';
- $userfee=new User($db);
- $userfee->fetch($object->fk_user_valid);
- print $userfee->getNomUrl(-1);
- print '</td></tr>';
- }
- if ($object->fk_statut==6)
- {
- print '<tr>';
- print '<td>'.$langs->trans("AUTHORPAIEMENT").'</td>';
- print '<td>';
- $userfee=new User($db);
- $userfee->fetch($user->id);
- print $userfee->getNomUrl(-1);
- print '</td></tr>';
- }
- // Other attributes
- //$cols = 3;
- //include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_edit.tpl.php';
- print '</table>';
- dol_fiche_end();
- print '<div class="center">';
- print '<input type="submit" value="'.$langs->trans("Modify").'" name="bouton" class="button">';
- print ' <input type="button" value="'.$langs->trans("Cancel").'" class="button" onclick="history.go(-1)" />';
- print '</div>';
- print '</form>';
- }
- else
- {
- dol_fiche_head($head, 'card', $langs->trans("ExpenseReport"), -1, 'trip');
- // 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),
- // array('type' => 'checkbox', 'name' => 'update_prices', 'label' => $langs->trans("PuttingPricesUpToDate"), 'value'
- // => 1),
- );
- // Paiement incomplet. On demande si motif = escompte ou autre
- $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?id=' . $object->id, $langs->trans('CloneExpenseReport'), $langs->trans('ConfirmCloneExpenseReport', $object->ref), 'confirm_clone', $formquestion, 'yes', 1);
- }
- if ($action == 'save')
- {
- $formconfirm=$form->form_confirm($_SERVER["PHP_SELF"]."?id=".$id,$langs->trans("SaveTrip"),$langs->trans("ConfirmSaveTrip"),"confirm_validate","","",1);
- }
- if ($action == 'save_from_refuse')
- {
- $formconfirm=$form->form_confirm($_SERVER["PHP_SELF"]."?id=".$id,$langs->trans("SaveTrip"),$langs->trans("ConfirmSaveTrip"),"confirm_save_from_refuse","","",1);
- }
- if ($action == 'delete')
- {
- $formconfirm=$form->form_confirm($_SERVER["PHP_SELF"]."?id=".$id,$langs->trans("DeleteTrip"),$langs->trans("ConfirmDeleteTrip"),"confirm_delete","","",1);
- }
- if ($action == 'validate')
- {
- $formconfirm=$form->form_confirm($_SERVER["PHP_SELF"]."?id=".$id,$langs->trans("ValideTrip"),$langs->trans("ConfirmValideTrip"),"confirm_approve","","",1);
- }
- if ($action == 'paid')
- {
- $formconfirm=$form->form_confirm($_SERVER["PHP_SELF"]."?id=".$id,$langs->trans("PaidTrip"),$langs->trans("ConfirmPaidTrip"),"confirm_paid","","",1);
- }
- if ($action == 'cancel')
- {
- $array_input = array('text'=>$langs->trans("ConfirmCancelTrip"), array('type'=>"text",'label'=>$langs->trans("Comment"),'name'=>"detail_cancel",'size'=>"50",'value'=>""));
- $formconfirm=$form->form_confirm($_SEVER["PHP_SELF"]."?id=".$id,$langs->trans("Cancel"),"","confirm_cancel",$array_input,"",1);
- }
- if ($action == 'brouillonner')
- {
- $formconfirm=$form->form_confirm($_SERVER["PHP_SELF"]."?id=".$id,$langs->trans("BrouillonnerTrip"),$langs->trans("ConfirmBrouillonnerTrip"),"confirm_brouillonner","","",1);
- }
- if ($action == 'refuse') // Deny
- {
- $array_input = array('text'=>$langs->trans("ConfirmRefuseTrip"), array('type'=>"text",'label'=>$langs->trans("Comment"),'name'=>"detail_refuse",'size'=>"50",'value'=>""));
- $formconfirm=$form->form_confirm($_SERVER["PHP_SELF"]."?id=".$id,$langs->trans("Deny"),'',"confirm_refuse",$array_input,"yes",1);
- }
- if ($action == 'delete_line')
- {
- $formconfirm=$form->form_confirm($_SERVER["PHP_SELF"]."?id=".$id."&rowid=".GETPOST('rowid'),$langs->trans("DeleteLine"),$langs->trans("ConfirmDeleteLine"),"confirm_delete_line",'','yes',1);
- }
- // Print form confirm
- print $formconfirm;
- // Expense report card
- $linkback = '<a href="'.DOL_URL_ROOT.'/expensereport/list.php'.(! empty($socid)?'?socid='.$socid:'').'">'.$langs->trans("BackToList").'</a>';
- $morehtmlref='<div class="refidno">';
- /*
- // Ref customer
- $morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, $user->rights->commande->creer, 'string', '', 0, 1);
- $morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, $user->rights->commande->creer, 'string', '', null, null, '', 1);
- // Thirdparty
- $morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . $soc->getNomUrl(1);
- // Project
- if (! empty($conf->projet->enabled))
- {
- $langs->load("projects");
- $morehtmlref.='<br>'.$langs->trans('Project') . ' ';
- if ($user->rights->commande->creer)
- {
- if ($action != 'classify')
- $morehtmlref.='<a href="' . $_SERVER['PHP_SELF'] . '?action=classify&id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
- if ($action == 'classify') {
- //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
- $morehtmlref.='<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
- $morehtmlref.='<input type="hidden" name="action" value="classin">';
- $morehtmlref.='<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- $morehtmlref.=$formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
- $morehtmlref.='<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
- $morehtmlref.='</form>';
- } else {
- $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
- }
- } else {
- if (! empty($object->fk_project)) {
- $proj = new Project($db);
- $proj->fetch($object->fk_project);
- $morehtmlref.='<a href="'.DOL_URL_ROOT.'/projet/card.php?id=' . $object->fk_project . '" title="' . $langs->trans('ShowProject') . '">';
- $morehtmlref.=$proj->ref;
- $morehtmlref.='</a>';
- } else {
- $morehtmlref.='';
- }
- }
- }*/
- $morehtmlref.='</div>';
- dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
- print '<div class="fichecenter">';
- print '<div class="fichehalfleft">';
- print '<div class="underbanner clearboth"></div>';
- print '<table class="border centpercent">';
- // Author
- print '<tr>';
- print '<td class="titlefield">'.$langs->trans("User").'</td>';
- print '<td>';
- if ($object->fk_user_author > 0)
- {
- $userauthor=new User($db);
- $result=$userauthor->fetch($object->fk_user_author);
- if ($result < 0) dol_print_error('',$userauthor->error);
- print $userauthor->getNomUrl(-1);
- }
- print '</td></tr>';
- print '<tr>';
- print '<td class="titlefield">'.$langs->trans("Period").'</td>';
- print '<td>';
- print get_date_range($object->date_debut,$object->date_fin,'day',$langs,0);
- print '</td>';
- print '</tr>';
- if (! empty($conf->global->EXPENSEREPORT_ASK_PAYMENTMODE_ON_CREATION))
- {
- print '<tr>';
- print '<td>'.$langs->trans("ModePaiement").'</td>';
- print '<td>'.$object->libelle_paiement.'</td>';
- print '</tr>';
- }
- // Validation date
- print '<tr>';
- print '<td>'.$langs->trans("DATE_SAVE").'</td>';
- print '<td>'.dol_print_date($object->date_valid,'dayhour');
- if ($object->status == 2 && $object->hasDelay('toapprove')) print ' '.img_warning($langs->trans("Late"));
- if ($object->status == 5 && $object->hasDelay('topay')) print ' '.img_warning($langs->trans("Late"));
- print '</td></tr>';
- print '</tr>';
- // User to inform for approval
- if ($object->fk_statut < 3) // informed
- {
- print '<tr>';
- print '<td>'.$langs->trans("VALIDATOR").'</td>'; // approver
- print '<td>';
- if ($object->fk_user_validator > 0)
- {
- $userfee=new User($db);
- $userfee->fetch($object->fk_user_validator);
- print $userfee->getNomUrl(-1);
- if (empty($userfee->email) || ! isValidEmail($userfee->email))
- {
- $langs->load("errors");
- print img_warning($langs->trans("ErrorBadEMail", $userfee->email));
- }
- }
- print '</td></tr>';
- }
- elseif($object->fk_statut == 4)
- {
- print '<tr>';
- print '<td>'.$langs->trans("CANCEL_USER").'</span></td>';
- print '<td>';
- if ($object->fk_user_cancel > 0)
- {
- $userfee=new User($db);
- $userfee->fetch($object->fk_user_cancel);
- print $userfee->getNomUrl(-1);
- }
- print '</td></tr>';
- print '<tr>';
- print '<td>'.$langs->trans("MOTIF_CANCEL").'</td>';
- print '<td>'.$object->detail_cancel.'</td></tr>';
- print '</tr>';
- print '<tr>';
- print '<td>'.$langs->trans("DATE_CANCEL").'</td>';
- print '<td>'.dol_print_date($object->date_cancel,'dayhour').'</td></tr>';
- print '</tr>';
- }
- else
- {
- print '<tr>';
- print '<td>'.$langs->trans("ApprovedBy").'</td>';
- print '<td>';
- if ($object->fk_user_approve > 0)
- {
- $userapp=new User($db);
- $userapp->fetch($object->fk_user_approve);
- print $userapp->getNomUrl(-1);
- }
- print '</td></tr>';
- print '<tr>';
- print '<td>'.$langs->trans("DateApprove").'</td>';
- print '<td>'.dol_print_date($object->date_approve,'dayhour').'</td></tr>';
- print '</tr>';
- }
- if ($object->fk_statut==99 || !empty($object->detail_refuse))
- {
- print '<tr>';
- print '<td>'.$langs->trans("REFUSEUR").'</td>';
- print '<td>';
- $userfee=new User($db);
- $userfee->fetch($object->fk_user_refuse);
- print $userfee->getNomUrl(-1);
- print '</td></tr>';
- print '<tr>';
- print '<td>'.$langs->trans("DATE_REFUS").'</td>';
- print '<td>'.dol_print_date($object->date_refuse,'dayhour');
- if ($object->detail_refuse) print ' - '.$object->detail_refuse;
- print '</td>';
- print '</tr>';
- }
- if($object->fk_statut==6)
- {
- /* TODO this fields are not yet filled
- print '<tr>';
- print '<td>'.$langs->trans("AUTHORPAIEMENT").'</td>';
- print '<td>';
- $userfee=new User($db);
- $userfee->fetch($object->fk_user_paid);
- print $userfee->getNomUrl(-1);
- print '</td></tr>';
- print '<tr>';
- print '<td>'.$langs->trans("DATE_PAIEMENT").'</td>';
- print '<td>'.$object->date_paiement.'</td></tr>';
- print '</tr>';
- */
- }
- // Other attributes
- $cols = 2;
- include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php';
- print '</table>';
- print '</div>';
- print '<div class="fichehalfright">';
- print '<div class="ficheaddleft">';
- print '<div class="underbanner clearboth"></div>';
- print '<table class="border centpercent">';
- // Amount
- print '<tr>';
- print '<td class="titlefieldmiddle">'.$langs->trans("AmountHT").'</td>';
- print '<td class="nowrap amountcard">'.price($object->total_ht, 1, '', 1, - 1, - 1, $conf->currency).'</td>';
- $rowspan = 5;
- if ($object->fk_statut < 3) $rowspan++;
- elseif($object->fk_statut == 4) $rowspan+=2;
- else $rowspan+=2;
- if ($object->fk_statut==99 || !empty($object->detail_refuse)) $rowspan+=2;
- if($object->fk_statut==6) $rowspan+=2;
- print "</td>";
- print '</tr>';
- print '<tr>';
- print '<td>'.$langs->trans("AmountVAT").'</td>';
- print '<td class="nowrap amountcard">'.price($object->total_tva, 1, '', 1, - 1, - 1, $conf->currency).'</td>';
- print '</tr>';
- print '<tr>';
- print '<td>'.$langs->trans("AmountTTC").'</td>';
- print '<td class="nowrap amountcard">'.price($object->total_ttc, 1, '', 1, - 1, - 1, $conf->currency).'</td>';
- print '</tr>';
- // List of payments already done
- $nbcols = 3;
- if (! empty($conf->banque->enabled)) {
- $nbrows ++;
- $nbcols ++;
- }
- print '<table class="noborder paymenttable" width="100%">';
- print '<tr class="liste_titre">';
- print '<td class="liste_titre">' . $langs->trans('Payments') . '</td>';
- print '<td class="liste_titre">' . $langs->trans('Date') . '</td>';
- print '<td class="liste_titre">' . $langs->trans('Type') . '</td>';
- if (! empty($conf->banque->enabled)) {
- print '<td class="liste_titre" align="right">' . $langs->trans('BankAccount') . '</td>';
- }
- print '<td class="liste_titre" align="right">' . $langs->trans('Amount') . '</td>';
- print '<td class="liste_titre" width="18"> </td>';
- print '</tr>';
- // Payments already done (from payment on this expensereport)
- $sql = "SELECT p.rowid, p.num_payment, p.datep as dp, p.amount, p.fk_bank,";
- $sql.= "c.code as p_code, c.libelle as payment_type,";
- $sql.= "ba.rowid as baid, ba.ref as baref, ba.label, ba.number as banumber, ba.account_number, ba.fk_accountancy_journal";
- $sql.= " FROM ".MAIN_DB_PREFIX."expensereport as e";
- $sql.= ", ".MAIN_DB_PREFIX."c_paiement as c ";
- $sql.= ", ".MAIN_DB_PREFIX."payment_expensereport 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 e.rowid = '".$id."'";
- $sql.= " AND p.fk_expensereport = e.rowid";
- $sql.= " AND e.entity = ".$conf->entity;
- $sql.= " AND p.fk_typepayment = c.id";
- $sql.= " ORDER BY dp";
- $resql = $db->query($sql);
- if ($resql)
- {
- $num = $db->num_rows($resql);
- $i = 0; $total = 0;
- while ($i < $num)
- {
- $objp = $db->fetch_object($resql);
- print '<tr class="oddseven"><td>';
- $paymentexpensereportstatic->id = $objp->rowid;
- $paymentexpensereportstatic->datepaye = $db->jdate($objp->dp);
- $paymentexpensereportstatic->ref = $objp->rowid;
- $paymentexpensereportstatic->num_paiement = $objp->num_paiement;
- $paymentexpensereportstatic->payment_code = $objp->payment_code;
- print $paymentexpensereportstatic->getNomUrl(1);
- print '</td>';
- print '<td>'.dol_print_date($db->jdate($objp->dp),'day')."</td>\n";
- $labeltype=$langs->trans("PaymentType".$objp->p_code)!=("PaymentType".$objp->p_code)?$langs->trans("PaymentType".$objp->p_code):$objp->fk_typepayment;
- print "<td>".$labeltype.' '.$objp->num_payment."</td>\n";
- if (! empty($conf->banque->enabled)) {
- $bankaccountstatic->id = $objp->baid;
- $bankaccountstatic->ref = $objp->baref;
- $bankaccountstatic->label = $objp->baref;
- $bankaccountstatic->number = $objp->banumber;
- if (! empty($conf->accounting->enabled)) {
- $bankaccountstatic->account_number = $objp->account_number;
- $accountingjournal = new AccountingJournal($db);
- $accountingjournal->fetch($objp->fk_accountancy_journal);
- $bankaccountstatic->accountancy_journal = $accountingjournal->getNomUrl(0,1,1,'',1);
- }
- print '<td align="right">';
- if ($bankaccountstatic->id)
- print $bankaccountstatic->getNomUrl(1, 'transactions');
- print '</td>';
- }
- print '<td align="right">'.price($objp->amount)."</td>";
- print "</tr>";
- $totalpaid += $objp->amount;
- $i++;
- }
- if ($object->paid == 0)
- {
- print '<tr><td colspan="' . $nbcols . '" align="right">'.$langs->trans("AlreadyPaid").':</td><td align="right">'.price($totalpaid).'</td></tr>';
- print '<tr><td colspan="' . $nbcols . '" align="right">'.$langs->trans("AmountExpected").':</td><td align="right">'.price($object->total_ttc).'</td></tr>';
-
- $remaintopay = $object->total_ttc - $totalpaid;
-
- print '<tr><td colspan="' . $nbcols . '" align="right">'.$langs->trans("RemainderToPay").':</td>';
- print '<td align="right"'.($remaintopay?' class="amountremaintopay"':'').'>'.price($remaintopay).'</td></tr>';
- }
- print "</table>";
- $db->free($resql);
- }
- else
- {
- dol_print_error($db);
- }
- print '</div>';
- print '</div>';
- print '</div>';
- print '<div class="clearboth"></div><br>';
- // Fetch Lines of current expense report
- $sql = 'SELECT fde.rowid, fde.fk_expensereport, fde.fk_c_type_fees, fde.fk_projet, fde.date,';
- $sql.= ' fde.tva_tx as vatrate, fde.comments, fde.qty, fde.value_unit, fde.total_ht, fde.total_tva, fde.total_ttc,';
- $sql.= ' ctf.code as type_fees_code, ctf.label as type_fees_libelle,';
- $sql.= ' pjt.rowid as projet_id, pjt.title as projet_title, pjt.ref as projet_ref';
- $sql.= ' FROM '.MAIN_DB_PREFIX.'expensereport_det as fde';
- $sql.= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_type_fees as ctf ON fde.fk_c_type_fees=ctf.id';
- $sql.= ' LEFT JOIN '.MAIN_DB_PREFIX.'projet as pjt ON fde.fk_projet=pjt.rowid';
- $sql.= ' WHERE fde.fk_expensereport = '.$object->id;
- $sql.= ' ORDER BY fde.date ASC';
- print '<div style="clear: both;"></div>';
- $actiontouse='updateligne';
- if (($object->fk_statut==0 || $object->fk_statut==99) && $action != 'editline') $actiontouse='addline';
- print '<form name="expensereport" action="'.$_SERVER["PHP_SELF"].'" method="post">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="action" value="'.$actiontouse.'">';
- print '<input type="hidden" name="id" value="'.$object->id.'">';
- print '<input type="hidden" name="fk_expensereport" value="'.$object->id.'" />';
- print '<div class="div-table-responsive">';
- print '<table id="tablelines" class="noborder" width="100%">';
- $resql = $db->query($sql);
- if ($resql)
- {
- $num_lignes = $db->num_rows($resql);
- $i = 0;$total = 0;
- if ($num_lignes)
- {
- print '<tr class="liste_titre">';
- print '<td style="text-align:center;">'.$langs->trans('Piece').'</td>';
- print '<td style="text-align:center;">'.$langs->trans('Date').'</td>';
- if (! empty($conf->projet->enabled)) print '<td class="minwidth100imp">'.$langs->trans('Project').'</td>';
- print '<td style="text-align:center;">'.$langs->trans('Type').'</td>';
- print '<td style="text-align:left;">'.$langs->trans('Description').'</td>';
- print '<td style="text-align:right;">'.$langs->trans('VAT').'</td>';
- print '<td style="text-align:right;">'.$langs->trans('PriceUTTC').'</td>';
- print '<td style="text-align:right;">'.$langs->trans('Qty').'</td>';
- if ($action != 'editline')
- {
- print '<td style="text-align:right;">'.$langs->trans('AmountHT').'</td>';
- print '<td style="text-align:right;">'.$langs->trans('AmountTTC').'</td>';
- }
- // Ajout des boutons de modification/suppression
- if (($object->fk_statut < 2 || $object->fk_statut == 99) && $user->rights->expensereport->creer)
- {
- print '<td style="text-align:right;"></td>';
- }
- print '</tr>';
- while ($i < $num_lignes)
- {
- $piece_comptable = $i + 1;
- $objp = $db->fetch_object($resql);
- if ($action != 'editline' || $objp->rowid != GETPOST('rowid'))
- {
- print '<tr class="oddeven">';
-
- print '<td style="text-align:center;">';
- print img_picto($langs->trans("Document"), "object_generic");
- print ' <span>'.$piece_comptable.'</span></td>';
- print '<td style="text-align:center;">'.dol_print_date($db->jdate($objp->date), 'day').'</td>';
- if (! empty($conf->projet->enabled))
- {
- print '<td>';
- if ($objp->projet_id > 0)
- {
- $projecttmp->id=$objp->projet_id;
- $projecttmp->ref=$objp->projet_ref;
- print $projecttmp->getNomUrl(1);
- }
- print '</td>';
- }
- // print '<td style="text-align:center;">'.$langs->trans("TF_".strtoupper(empty($objp->type_fees_libelle)?'OTHER':$objp->type_fees_libelle)).'</td>';
- print '<td style="text-align:center;">'.($langs->trans(($objp->type_fees_code)) == $objp->type_fees_code ? $objp->type_fees_libelle : $langs->trans(($objp->type_fees_code))).'</td>';
- print '<td style="text-align:left;">'.$objp->comments.'</td>';
- print '<td style="text-align:right;">'.vatrate($objp->vatrate,true).'</td>';
- print '<td style="text-align:right;">'.price($objp->value_unit).'</td>';
- print '<td style="text-align:right;">'.$objp->qty.'</td>';
-
- if ($action != 'editline')
- {
- print '<td style="text-align:right;">'.price($objp->total_ht).'</td>';
- print '<td style="text-align:right;">'.price($objp->total_ttc).'</td>';
- }
- // Ajout des boutons de modification/suppression
- if (($object->fk_statut < 2 || $object->fk_statut == 99) && $user->rights->expensereport->creer)
- {
- print '<td style="text-align:right;" class="nowrap">';
- print '<a href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=editline&rowid='.$objp->rowid.'#'.$objp->rowid.'">';
- print img_edit();
- print '</a> ';
- print '<a href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=delete_line&rowid='.$objp->rowid.'">';
- print img_delete();
- print '</a>';
- print '</td>';
- }
- print '</tr>';
- }
- if ($action == 'editline' && $objp->rowid == GETPOST('rowid'))
- {
- print '<tr class="oddeven">';
-
- print '<td></td>';
- // Select date
- print '<td class="center">';
- $form->select_date($objp->date,'date');
- print '</td>';
- // Select project
- if (! empty($conf->projet->enabled))
- {
- print '<td>';
- $formproject->select_projects(-1, $objp->fk_projet,'fk_projet', 0, 0, 1, 1);
- print '</td>';
- }
-
- // Select type
- print '<td class="center">';
- select_type_fees_id($objp->type_fees_code,'fk_c_type_fees');
- print '</td>';
- // Add comments
- print '<td>';
- print '<textarea name="comments" class="flat_ndf centpercent">'.$objp->comments.'</textarea>';
- print '</td>';
- // VAT
- print '<td style="text-align:right;">';
- print $form->load_tva('vatrate', (isset($_POST["vatrate"])?$_POST["vatrate"]:$objp->vatrate), $mysoc, '');
- print '</td>';
- // Unit price
- print '<td style="text-align:right;">';
- print '<input type="text" min="0" class="maxwidth100" name="value_unit" value="'.$objp->value_unit.'" />';
- print '</td>';
- // Quantity
- print '<td style="text-align:right;">';
- print '<input type="number" min="0" class="maxwidth100" name="qty" value="'.$objp->qty.'" />';
- print '</td>';
- if ($action != 'editline')
- {
- print '<td style="text-align:right;">'.$langs->trans('AmountHT').'</td>';
- print '<td style="text-align:right;">'.$langs->trans('AmountTTC').'</td>';
- }
- print '<td style="text-align:center;">';
- print '<input type="hidden" name="rowid" value="'.$objp->rowid.'">';
- print '<input type="submit" class="button" name="save" value="'.$langs->trans('Save').'">';
- print '<br /><input type="submit" class="button" name="cancel" value="'.$langs->trans('Cancel').'">';
- print '</td>';
- }
- $i++;
- }
- $db->free($resql);
- }
- else
- {
- /* print '<table width="100%">';
- print '<tr><td><div class="error" style="display:block;">'.$langs->trans("AucuneLigne").'</div></td></tr>';
- print '</table>';*/
- }
- //print '</div>';
- // Add a line
- if (($object->fk_statut==0 || $object->fk_statut==99) && $action != 'editline' && $user->rights->expensereport->creer)
- {
- print '<tr class="liste_titre">';
- print '<td></td>';
- print '<td align="center">'.$langs->trans('Date').'</td>';
- if (! empty($conf->projet->enabled)) print '<td class="minwidth100imp">'.$langs->trans('Project').'</td>';
- print '<td align="center">'.$langs->trans('Type').'</td>';
- print '<td>'.$langs->trans('Description').'</td>';
- print '<td align="right">'.$langs->trans('VAT').'</td>';
- print '<td align="right">'.$langs->trans('PriceUTTC').'</td>';
- print '<td align="right">'.$langs->trans('Qty').'</td>';
- print '<td colspan="3"></td>';
- print '</tr>';
- print '<tr '.$bc[true].'>';
- print '<td></td>';
- // Select date
- print '<td align="center">';
- $form->select_date($date?$date:-1,'date');
- print '</td>';
- // Select project
- if (! empty($conf->projet->enabled))
- {
- print '<td>';
- $formproject->select_projects(-1, $fk_projet, 'fk_projet', 0, 0, 1, 1);
- print '</td>';
- }
- // Select type
- print '<td align="center">';
- select_type_fees_id($fk_c_type_fees,'fk_c_type_fees',1);
- print '</td>';
- // Add comments
- print '<td>';
- print '<textarea class="flat_ndf centpercent" name="comments">'.$comments.'</textarea>';
- print '</td>';
- // Select VAT
- print '<td align="right">';
- $defaultvat=-1;
- if (! empty($conf->global->EXPENSEREPORT_NO_DEFAULT_VAT)) $conf->global->MAIN_VAT_DEFAULT_IF_AUTODETECT_FAILS = 'none';
- print $form->load_tva('vatrate', ($vatrate!=''?$vatrate:$defaultvat), $mysoc, '', 0, 0, '', false);
- print '</td>';
- // Unit price
- print '<td align="right">';
- print '<input type="text" class="right maxwidth50" name="value_unit" value="'.$value_unit.'">';
- print '</td>';
- // Quantity
- print '<td align="right">';
- print '<input type="number" min="0" class="right maxwidth50" name="qty" value="'.($qty?$qty:1).'">';
- print '</td>';
- if ($action != 'editline')
- {
- print '<td align="right"></td>';
- print '<td align="right"></td>';
- }
- print '<td align="center"><input type="submit" value="'.$langs->trans("Add").'" name="bouton" class="button"></td>';
-
- print '</tr>';
- } // Fin si c'est payé/validé
- print '</table>';
- print '</div>';
-
- print '</form>';
- }
- else
- {
- dol_print_error($db);
- }
- dol_fiche_end();
- } // end edit or not edit
- } // end of if result
- else
- {
- dol_print_error($db);
- }
- } //fin si id > 0
- }
- /*
- * Barre d'actions
- */
- print '<div class="tabsAction">';
- if ($action != 'create' && $action != 'edit')
- {
- $object = new ExpenseReport($db);
- $object->fetch($id, $ref);
- /* Si l'état est "Brouillon"
- * ET user à droit "creer/supprimer"
- * ET fk_user_author == user courant
- * Afficher : "Enregistrer" / "Modifier" / "Supprimer"
- */
- if ($user->rights->expensereport->creer && $object->fk_statut==0)
- {
- if (in_array($object->fk_user_author, $user->getAllChildIds(1)) || !empty($user->rights->expensereport->writeall_advance))
- {
- // Modify
- print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&id='.$object->id.'">'.$langs->trans('Modify').'</a></div>';
- // Validate
- if (count($object->lines) > 0)
- {
- print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=save&id='.$object->id.'">'.$langs->trans('ValidateAndSubmit').'</a></div>';
- }
- }
- }
- /* Si l'état est "Refusée"
- * ET user à droit "creer/supprimer"
- * ET fk_user_author == user courant
- * Afficher : "Enregistrer" / "Modifier" / "Supprimer"
- */
- if($user->rights->expensereport->creer && $object->fk_statut==99)
- {
- if ($user->id == $object->fk_user_author || $user->id == $object->fk_user_valid)
- {
- // Modify
- print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&id='.$object->id.'">'.$langs->trans('Modify').'</a></div>';
- // Brouillonner (le statut refusée est identique à brouillon)
- //print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=brouillonner&id='.$id.'">'.$langs->trans('BROUILLONNER').'</a>';
- // Enregistrer depuis le statut "Refusée"
- print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=save_from_refuse&id='.$object->id.'">'.$langs->trans('ValidateAndSubmit').'</a></div>';
- }
- }
- if ($user->rights->expensereport->to_paid && $object->fk_statut==5)
- {
- if ($user->id == $object->fk_user_author || $user->id == $object->fk_user_valid)
- {
- // Brouillonner
- print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=brouillonner&id='.$object->id.'">'.$langs->trans('SetToDraft').'</a></div>';
- }
- }
- /* Si l'état est "En attente d'approbation"
- * ET user à droit de "approve"
- * ET fk_user_validator == user courant
- * Afficher : "Valider" / "Refuser" / "Supprimer"
- */
- if ($object->fk_statut == 2)
- {
- if (in_array($object->fk_user_author, $user->getAllChildIds(1)))
- {
- // Brouillonner
- print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=brouillonner&id='.$object->id.'">'.$langs->trans('SetToDraft').'</a></div>';
- }
- }
- if ($user->rights->expensereport->approve && $object->fk_statut == 2)
- {
- //if($object->fk_user_validator==$user->id)
- //{
- // Validate
- print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=validate&id='.$object->id.'">'.$langs->trans('Approve').'</a></div>';
- // Deny
- print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=refuse&id='.$object->id.'">'.$langs->trans('Deny').'</a></div>';
- //}
- if ($user->id == $object->fk_user_author || $user->id == $object->fk_user_valid)
- {
- // Cancel
- print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=cancel&id='.$object->id.'">'.$langs->trans('Cancel').'</a></div>';
- }
- }
- // If status is Appoved
- // --------------------
-
- if ($user->rights->expensereport->approve && $object->fk_statut == 5)
- {
- print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=refuse&id='.$object->id.'">'.$langs->trans('Deny').'</a></div>';
- }
- // If bank module is used
- if ($user->rights->expensereport->to_paid && ! empty($conf->banque->enabled) && $object->fk_statut == 5)
- {
- // Pay
- if ($remaintopay == 0)
- {
- print '<div class="inline-block divButAction"><span class="butActionRefused" title="' . $langs->trans("DisabledBecauseRemainderToPayIsZero") . '">' . $langs->trans('DoPayment') . '</span></div>';
- }
- else
- {
- print '<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.'/expensereport/payment/payment.php?id=' . $object->id . '&action=create">' . $langs->trans('DoPayment') . '</a></div>';
- }
- }
-
- // If bank module is not used
- if (($user->rights->expensereport->to_paid || empty($conf->banque->enabled)) && $object->fk_statut == 5)
- {
- //if ((round($remaintopay) == 0 || empty($conf->banque->enabled)) && $object->paid == 0)
- if ($object->paid == 0)
- {
- print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER["PHP_SELF"] . '?id='.$object->id.'&action=set_paid">'.$langs->trans("ClassifyPaid")."</a></div>";
- }
- }
-
- if ($user->rights->expensereport->creer && ($user->id == $object->fk_user_author || $user->id == $object->fk_user_valid) && $object->fk_statut == 5)
- {
- // Cancel
- print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=cancel&id='.$object->id.'">'.$langs->trans('Cancel').'</a></div>';
- }
-
- // TODO Replace this. It should be SetUnpaid and should go back to status unpaid not canceled.
- if (($user->rights->expensereport->approve || $user->rights->expensereport->to_paid) && $object->fk_statut == 6)
- {
- // Cancel
- print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=cancel&id='.$object->id.'">'.$langs->trans('Cancel').'</a></div>';
- }
-
- // Clone
- if ($user->rights->expensereport->creer) {
- print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=clone">' . $langs->trans("ToClone") . '</a></div>';
- }
-
- /* If draft, validated, cancel, and user can create, he can always delete its card before it is approved */
- if ($user->rights->expensereport->creer && $user->id == $object->fk_user_author && $object->fk_statut <= 4)
- {
- // Delete
- print '<div class="inline-block divButAction"><a class="butActionDelete" href="'.$_SERVER["PHP_SELF"].'?action=delete&id='.$object->id.'">'.$langs->trans('Delete').'</a></div>';
- }
- else if($user->rights->expensereport->supprimer && $object->fk_statut != 6)
- {
- // Delete
- print '<div class="inline-block divButAction"><a class="butActionDelete" href="'.$_SERVER["PHP_SELF"].'?action=delete&id='.$object->id.'">'.$langs->trans('Delete').'</a></div>';
- }
- }
- print '</div>';
- //$conf->global->DOL_URL_ROOT_DOCUMENT_PHP=dol_buildpath('/expensereport/documentwrapper.php',1);
- print '<div class="fichehalfleft">';
- /*
- * Generate documents
- */
- if($user->rights->expensereport->export && $action != 'create' && $action != 'edit')
- {
- $filename = dol_sanitizeFileName($object->ref);
- $filedir = $conf->expensereport->dir_output . "/" . dol_sanitizeFileName($object->ref);
- $urlsource = $_SERVER["PHP_SELF"]."?id=".$object->id;
- $genallowed = 1;
- $delallowed = 1;
- $var = true;
- print $formfile->showdocuments('expensereport',$filename,$filedir,$urlsource,$genallowed,$delallowed);
- $somethingshown = $formfile->numoffiles;
- }
- print '</div>';
- if ($action != 'create' && $action != 'edit' && ($id || $ref))
- {
- $permissiondellink=$user->rights->facture->creer; // Used by the include of actions_dellink.inc.php
- include DOL_DOCUMENT_ROOT.'/core/actions_dellink.inc.php'; // Must be include, not include_once
- // Link invoice to intervention
- if (GETPOST('LinkedFichinter')) {
- $object->fetch($id);
- $object->fetch_thirdparty();
- $result = $object->add_object_linked('fichinter', GETPOST('LinkedFichinter'));
- }
-
- // Show links to link elements
- $linktoelements=array();
- if (! empty($conf->global->EXPENSES_LINK_TO_INTERVENTION))
- {
- $linktoelements[]='fichinter';
- $linktoelem = $form->showLinkToObjectBlock($object, $linktoelements, array('expensereport'));
- $somethingshown = $form->showLinkedObjectBlock($object, $linktoelem);
- }
- }
- llxFooter();
- $db->close();
|