123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250 |
- <?php
- /* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2019 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2014 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
- * Copyright (C) 2010-2017 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2013 Christophe Battarel <christophe.battarel@altairis.fr>
- * Copyright (C) 2013-2014 Florian Henry <florian.henry@open-concept.pro>
- * Copyright (C) 2014-2020 Ferran Marcet <fmarcet@2byte.es>
- * Copyright (C) 2014-2016 Marcos García <marcosgdf@gmail.com>
- * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
- * Copyright (C) 2018-2021 Frédéric France <frederic.france@netlogic.fr>
- *
- * 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 <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/contrat/card.php
- * \ingroup contrat
- * \brief Page of a contract
- */
- require "../main.inc.php";
- require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/price.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/contract.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/contrat/class/contrat.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/modules/contract/modules_contract.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
- require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
- require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
- if (!empty($conf->propal->enabled)) {
- require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
- }
- if (!empty($conf->project->enabled)) {
- require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
- }
- require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
- // Load translation files required by the page
- $langs->loadLangs(array("contracts", "orders", "companies", "bills", "products", 'compta'));
- $action = GETPOST('action', 'aZ09');
- $confirm = GETPOST('confirm', 'alpha');
- $cancel = GETPOST('cancel', 'alpha');
- $socid = GETPOST('socid', 'int');
- $id = GETPOST('id', 'int');
- $ref = GETPOST('ref', 'alpha');
- $origin = GETPOST('origin', 'alpha');
- $originid = GETPOST('originid', 'int');
- $datecontrat = '';
- $usehm = (!empty($conf->global->MAIN_USE_HOURMIN_IN_DATE_RANGE) ? $conf->global->MAIN_USE_HOURMIN_IN_DATE_RANGE : 0);
- // Security check
- if ($user->socid) {
- $socid = $user->socid;
- }
- $result = restrictedArea($user, 'contrat', $id);
- // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
- $hookmanager->initHooks(array('contractcard', 'globalcard'));
- $object = new Contrat($db);
- $extrafields = new ExtraFields($db);
- // Load object
- if ($id > 0 || !empty($ref) && $action != 'add') {
- $ret = $object->fetch($id, $ref);
- if ($ret > 0) {
- $ret = $object->fetch_thirdparty();
- }
- if ($ret < 0) {
- dol_print_error('', $object->error);
- }
- }
- // fetch optionals attributes and labels
- $extrafields->fetch_name_optionals_label($object->table_element);
- // fetch optionals attributes lines and labels
- $extralabelslines = $extrafields->fetch_name_optionals_label($object->table_element_line);
- $permissionnote = $user->rights->contrat->creer; // Used by the include of actions_setnotes.inc.php
- $permissiondellink = $user->rights->contrat->creer; // Used by the include of actions_dellink.inc.php
- $error = 0;
- /*
- * 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)) {
- $backurlforlist = DOL_URL_ROOT.'/contrat/list.php';
- if (empty($backtopage) || ($cancel && empty($id))) {
- if (empty($backtopage) || ($cancel && strpos($backtopage, '__ID__'))) {
- if (empty($id) && (($action != 'add' && $action != 'create') || $cancel)) {
- $backtopage = $backurlforlist;
- } else {
- $backtopage = DOL_URL_ROOT.'/contrat/card.php?id='.((!empty($id) && $id > 0) ? $id : '__ID__');
- }
- }
- }
- if ($cancel) {
- if (!empty($backtopageforcancel)) {
- header("Location: ".$backtopageforcancel);
- exit;
- } elseif (!empty($backtopage)) {
- header("Location: ".$backtopage);
- exit;
- }
- $action = '';
- }
- include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not includ_once
- include DOL_DOCUMENT_ROOT.'/core/actions_dellink.inc.php'; // Must be include, not include_once
- if ($action == 'confirm_active' && $confirm == 'yes' && $user->rights->contrat->activer) {
- $result = $object->active_line($user, GETPOST('ligne', 'int'), GETPOST('date'), GETPOST('dateend'), GETPOST('comment'));
- if ($result > 0) {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- } elseif ($action == 'confirm_closeline' && $confirm == 'yes' && $user->rights->contrat->activer) {
- if (!GETPOST('dateend')) {
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("DateEnd")), null, 'errors');
- }
- if (!$error) {
- $result = $object->close_line($user, GETPOST('ligne', 'int'), GETPOST('dateend'), urldecode(GETPOST('comment')));
- if ($result > 0) {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- }
- // Si ajout champ produit predefini
- if (GETPOST('mode') == 'predefined') {
- $date_start = '';
- $date_end = '';
- if (GETPOST('date_startmonth') && GETPOST('date_startday') && GETPOST('date_startyear')) {
- $date_start = dol_mktime(GETPOST('date_starthour'), GETPOST('date_startmin'), 0, GETPOST('date_startmonth'), GETPOST('date_startday'), GETPOST('date_startyear'));
- }
- if (GETPOST('date_endmonth') && GETPOST('date_endday') && GETPOST('date_endyear')) {
- $date_end = dol_mktime(GETPOST('date_endhour'), GETPOST('date_endmin'), 0, GETPOST('date_endmonth'), GETPOST('date_endday'), GETPOST('date_endyear'));
- }
- }
- // Param dates
- $date_start_update = '';
- $date_end_update = '';
- $date_start_real_update = '';
- $date_end_real_update = '';
- if (GETPOST('date_start_updatemonth') && GETPOST('date_start_updateday') && GETPOST('date_start_updateyear')) {
- $date_start_update = dol_mktime(GETPOST('date_start_updatehour'), GETPOST('date_start_updatemin'), 0, GETPOST('date_start_updatemonth'), GETPOST('date_start_updateday'), GETPOST('date_start_updateyear'));
- }
- if (GETPOST('date_end_updatemonth') && GETPOST('date_end_updateday') && GETPOST('date_end_updateyear')) {
- $date_end_update = dol_mktime(GETPOST('date_end_updatehour'), GETPOST('date_end_updatemin'), 0, GETPOST('date_end_updatemonth'), GETPOST('date_end_updateday'), GETPOST('date_end_updateyear'));
- }
- if (GETPOST('date_start_real_updatemonth') && GETPOST('date_start_real_updateday') && GETPOST('date_start_real_updateyear')) {
- $date_start_real_update = dol_mktime(GETPOST('date_start_real_updatehour'), GETPOST('date_start_real_updatemin'), 0, GETPOST('date_start_real_updatemonth'), GETPOST('date_start_real_updateday'), GETPOST('date_start_real_updateyear'));
- }
- if (GETPOST('date_end_real_updatemonth') && GETPOST('date_end_real_updateday') && GETPOST('date_end_real_updateyear')) {
- $date_end_real_update = dol_mktime(GETPOST('date_end_real_updatehour'), GETPOST('date_end_real_updatemin'), 0, GETPOST('date_end_real_updatemonth'), GETPOST('date_end_real_updateday'), GETPOST('date_end_real_updateyear'));
- }
- if (GETPOST('remonth') && GETPOST('reday') && GETPOST('reyear')) {
- $datecontrat = dol_mktime(GETPOST('rehour'), GETPOST('remin'), 0, GETPOST('remonth'), GETPOST('reday'), GETPOST('reyear'));
- }
- // Add contract
- if ($action == 'add' && $user->rights->contrat->creer) {
- // Check
- if (empty($datecontrat)) {
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Date")), null, 'errors');
- $action = 'create';
- }
- if ($socid < 1) {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("ThirdParty")), null, 'errors');
- $action = 'create';
- $error++;
- }
- // Fill array 'array_options' with data from add form
- $ret = $extrafields->setOptionalsFromPost(null, $object);
- if ($ret < 0) {
- $error++;
- $action = 'create';
- }
- if (!$error) {
- $object->socid = $socid;
- $object->date_contrat = $datecontrat;
- $object->commercial_suivi_id = GETPOST('commercial_suivi_id', 'int');
- $object->commercial_signature_id = GETPOST('commercial_signature_id', 'int');
- $object->note_private = GETPOST('note_private', 'alpha');
- $object->note_public = GETPOST('note_public', 'alpha');
- $object->fk_project = GETPOST('projectid', 'int');
- $object->remise_percent = price2num(GETPOST('remise_percent'), '', 2);
- $object->ref = GETPOST('ref', 'alpha');
- $object->ref_customer = GETPOST('ref_customer', 'alpha');
- $object->ref_supplier = GETPOST('ref_supplier', 'alpha');
- // If creation from another object of another module (Example: origin=propal, originid=1)
- if (!empty($origin) && !empty($originid)) {
- // Parse element/subelement (ex: project_task)
- $element = $subelement = $origin;
- if (preg_match('/^([^_]+)_([^_]+)/i', $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 == 'invoice' || $element == 'facture') {
- $element = 'compta/facture';
- $subelement = 'facture';
- }
- $object->origin = $origin;
- $object->origin_id = $originid;
- // 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']);
- }
- $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) {
- $srcobject->fetch_thirdparty();
- $lines = $srcobject->lines;
- if (empty($lines) && method_exists($srcobject, 'fetch_lines')) {
- $srcobject->fetch_lines();
- $lines = $srcobject->lines;
- }
- $fk_parent_line = 0;
- $num = count($lines);
- for ($i = 0; $i < $num; $i++) {
- $product_type = ($lines[$i]->product_type ? $lines[$i]->product_type : 0);
- if ($product_type == 1 || (!empty($conf->global->CONTRACT_SUPPORT_PRODUCTS) && in_array($product_type, array(0, 1)))) { // TODO Exclude also deee
- // service prédéfini
- if ($lines[$i]->fk_product > 0) {
- $product_static = new Product($db);
- // Define output language
- if (!empty($conf->global->MAIN_MULTILANGS) && !empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE)) {
- $prod = new Product($db);
- $prod->id = $lines[$i]->fk_product;
- $prod->getMultiLangs();
- $outputlangs = $langs;
- $newlang = '';
- if (empty($newlang) && GETPOST('lang_id', 'aZ09')) {
- $newlang = GETPOST('lang_id', 'aZ09');
- }
- if (empty($newlang)) {
- $newlang = $srcobject->thirdparty->default_lang;
- }
- if (!empty($newlang)) {
- $outputlangs = new Translate("", $conf);
- $outputlangs->setDefaultLang($newlang);
- }
- $label = (!empty($prod->multilangs[$outputlangs->defaultlang]["libelle"])) ? $prod->multilangs[$outputlangs->defaultlang]["libelle"] : $lines[$i]->product_label;
- } else {
- $label = $lines[$i]->product_label;
- }
- $desc = ($lines[$i]->desc && $lines[$i]->desc != $lines[$i]->libelle) ?dol_htmlentitiesbr($lines[$i]->desc) : '';
- } else {
- $desc = dol_htmlentitiesbr($lines[$i]->desc);
- }
- // Extrafields
- $array_options = array();
- // For avoid conflicts if trigger used
- if (method_exists($lines[$i], 'fetch_optionals')) {
- $lines[$i]->fetch_optionals();
- $array_options = $lines[$i]->array_options;
- }
- $txtva = $lines[$i]->vat_src_code ? $lines[$i]->tva_tx.' ('.$lines[$i]->vat_src_code.')' : $lines[$i]->tva_tx;
- // View third's localtaxes for now
- $localtax1_tx = get_localtax($txtva, 1, $object->thirdparty);
- $localtax2_tx = get_localtax($txtva, 2, $object->thirdparty);
- $result = $object->addline(
- $desc,
- $lines[$i]->subprice,
- $lines[$i]->qty,
- $txtva,
- $localtax1_tx,
- $localtax2_tx,
- $lines[$i]->fk_product,
- $lines[$i]->remise_percent,
- $lines[$i]->date_start,
- $lines[$i]->date_end,
- 'HT',
- 0,
- $lines[$i]->info_bits,
- $lines[$i]->fk_fournprice,
- $lines[$i]->pa_ht,
- $array_options,
- $lines[$i]->fk_unit
- );
- if ($result < 0) {
- $error++;
- break;
- }
- }
- }
- } else {
- setEventMessages($srcobject->error, $srcobject->errors, 'errors');
- $error++;
- }
- // Hooks
- $parameters = array('objFrom' => $srcobject);
- $reshook = $hookmanager->executeHooks('createFrom', $parameters, $object, $action); // Note that $action and $object may have been
- // modified by hook
- if ($reshook < 0) {
- setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- $error++;
- }
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- $error++;
- }
- if ($error) {
- $action = 'create';
- }
- } else {
- $result = $object->create($user);
- if ($result > 0) {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- $action = 'create';
- }
- }
- } elseif ($action == 'classin' && $user->rights->contrat->creer) {
- $object->setProject(GETPOST('projectid'));
- } elseif ($action == 'addline' && $user->rights->contrat->creer) {
- // Add a new line
- // Set if we used free entry or predefined product
- $predef = '';
- $product_desc = (GETPOSTISSET('dp_desc') ? GETPOST('dp_desc', 'restricthtml') : '');
- $price_ht = price2num(GETPOST('price_ht'), 'MU', 2);
- $price_ht_devise = price2num(GETPOST('multicurrency_price_ht'), 'CU', 2);
- if (GETPOST('prod_entry_mode', 'alpha') == 'free') {
- $idprod = 0;
- $tva_tx = (GETPOST('tva_tx', 'alpha') ? GETPOST('tva_tx', 'alpha') : 0);
- } else {
- $idprod = GETPOST('idprod', 'int');
- $tva_tx = '';
- }
- $qty = price2num(GETPOST('qty'.$predef, 'alpha'), 'MS');
- $remise_percent = (GETPOSTISSET('remise_percent'.$predef) ? price2num(GETPOST('remise_percent'.$predef), 2) : 0);
- if ($qty == '') {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Qty")), null, 'errors');
- $error++;
- }
- if (GETPOST('prod_entry_mode', 'alpha') == 'free' && (empty($idprod) || $idprod < 0) && empty($product_desc)) {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Description")), null, 'errors');
- $error++;
- }
- $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'));
- if (!empty($date_start) && !empty($date_end) && $date_start > $date_end) {
- setEventMessages($langs->trans("Error").': '.$langs->trans("DateStartPlanned").' > '.$langs->trans("DateEndPlanned"), null, 'errors');
- $error++;
- }
- // Extrafields
- $extralabelsline = $extrafields->fetch_name_optionals_label($object->table_element_line);
- $array_options = $extrafields->getOptionalsFromPost($object->table_element_line, $predef);
- // Unset extrafield
- if (is_array($extralabelsline)) {
- // Get extra fields
- foreach ($extralabelsline as $key => $value) {
- unset($_POST["options_".$key]);
- }
- }
- if (!$error) {
- // Clean parameters
- $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'));
- $price_base_type = (GETPOST('price_base_type', 'alpha') ?GETPOST('price_base_type', 'alpha') : 'HT');
- // Ecrase $pu par celui du produit
- // Ecrase $desc par celui du produit
- // Ecrase $tva_tx par celui du produit
- // Ecrase $base_price_type par celui du produit
- if ($idprod > 0) {
- $prod = new Product($db);
- $prod->fetch($idprod);
- // Update if prices fields are defined
- $tva_tx = get_default_tva($mysoc, $object->thirdparty, $prod->id);
- $tva_npr = get_default_npr($mysoc, $object->thirdparty, $prod->id);
- if (empty($tva_tx)) {
- $tva_npr = 0;
- }
- $pu_ht = $prod->price;
- $pu_ttc = $prod->price_ttc;
- $price_min = $prod->price_min;
- $price_base_type = $prod->price_base_type;
- // On defini prix unitaire
- if ($conf->global->PRODUIT_MULTIPRICES && $object->thirdparty->price_level) {
- $pu_ht = $prod->multiprices[$object->thirdparty->price_level];
- $pu_ttc = $prod->multiprices_ttc[$object->thirdparty->price_level];
- $price_min = $prod->multiprices_min[$object->thirdparty->price_level];
- $price_base_type = $prod->multiprices_base_type[$object->thirdparty->price_level];
- } elseif (!empty($conf->global->PRODUIT_CUSTOMER_PRICES)) {
- require_once DOL_DOCUMENT_ROOT.'/product/class/productcustomerprice.class.php';
- $prodcustprice = new Productcustomerprice($db);
- $filter = array('t.fk_product' => $prod->id, 't.fk_soc' => $object->thirdparty->id);
- $result = $prodcustprice->fetch_all('', '', 0, 0, $filter);
- if ($result) {
- if (count($prodcustprice->lines) > 0) {
- $pu_ht = price($prodcustprice->lines [0]->price);
- $pu_ttc = price($prodcustprice->lines [0]->price_ttc);
- $price_base_type = $prodcustprice->lines [0]->price_base_type;
- $tva_tx = $prodcustprice->lines [0]->tva_tx;
- if ($prodcustprice->lines[0]->default_vat_code && !preg_match('/\(.*\)/', $tva_tx)) {
- $tva_tx .= ' ('.$prodcustprice->lines[0]->default_vat_code.')';
- }
- $tva_npr = $prodcustprice->lines[0]->recuperableonly;
- if (empty($tva_tx)) {
- $tva_npr = 0;
- }
- }
- }
- }
- $tmpvat = price2num(preg_replace('/\s*\(.*\)/', '', $tva_tx));
- $tmpprodvat = price2num(preg_replace('/\s*\(.*\)/', '', $prod->tva_tx));
- $pu_ht = price2num($price_ht, 'MU');
- // 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 ($tmpvat != $tmpprodvat) {
- if ($price_base_type != 'HT') {
- $pu_ht = price2num($pu_ttc / (1 + ($tmpvat / 100)), 'MU');
- } else {
- $pu_ttc = price2num($pu_ht * (1 + ($tmpvat / 100)), 'MU');
- }
- }
- $desc = $prod->description;
- //If text set in desc is the same as product descpription (as now it's preloaded) whe add it only one time
- if ($product_desc == $desc && !empty($conf->global->PRODUIT_AUTOFILL_DESC)) {
- $product_desc = '';
- }
- if (!empty($product_desc) && !empty($conf->global->MAIN_NO_CONCAT_DESCRIPTION)) {
- $desc = $product_desc;
- } else {
- $desc = dol_concatdesc($desc, $product_desc, '', !empty($conf->global->MAIN_CHANGE_ORDER_CONCAT_DESCRIPTION));
- }
- $fk_unit = $prod->fk_unit;
- } else {
- $pu_ht = price2num($price_ht, 'MU');
- $price_base_type = 'HT';
- $tva_tx = GETPOST('tva_tx') ?str_replace('*', '', GETPOST('tva_tx')) : 0; // tva_tx field may be disabled, so we use vat rate 0
- $tva_npr = preg_match('/\*/', GETPOST('tva_tx')) ? 1 : 0;
- $desc = $product_desc;
- $fk_unit = GETPOST('units', 'alpha');
- }
- $localtax1_tx = get_localtax($tva_tx, 1, $object->thirdparty, $mysoc, $tva_npr);
- $localtax2_tx = get_localtax($tva_tx, 2, $object->thirdparty, $mysoc, $tva_npr);
- // ajout prix achat
- $fk_fournprice = GETPOST('fournprice');
- if (GETPOST('buying_price')) {
- $pa_ht = GETPOST('buying_price');
- } else {
- $pa_ht = null;
- }
- $info_bits = 0;
- if ($tva_npr) {
- $info_bits |= 0x01;
- }
- if (((!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->produit->ignore_price_min_advance))
- || empty($conf->global->MAIN_USE_ADVANCED_PERMS)) && ($price_min && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min)))) {
- $object->error = $langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, -1, $conf->currency));
- $result = -1;
- } else {
- // Insert line
- $result = $object->addline(
- $desc,
- $pu_ht,
- $qty,
- $tva_tx,
- $localtax1_tx,
- $localtax2_tx,
- $idprod,
- $remise_percent,
- $date_start,
- $date_end,
- $price_base_type,
- $pu_ttc,
- $info_bits,
- $fk_fournprice,
- $pa_ht,
- $array_options,
- $fk_unit
- );
- }
- if ($result > 0) {
- // Define output language
- if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE) && !empty($conf->global->CONTRACT_ADDON_PDF)) { // No generation if default type not defined
- $outputlangs = $langs;
- $newlang = '';
- if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id', 'aZ09')) {
- $newlang = GETPOST('lang_id', 'aZ09');
- }
- if ($conf->global->MAIN_MULTILANGS && empty($newlang)) {
- $newlang = $object->thirdparty->default_lang;
- }
- if (!empty($newlang)) {
- $outputlangs = new Translate("", $conf);
- $outputlangs->setDefaultLang($newlang);
- }
- $ret = $object->fetch($id); // Reload to get new records
- $object->generateDocument($object->model_pdf, $outputlangs, $hidedetails, $hidedesc, $hideref);
- }
- unset($_POST['prod_entry_mode']);
- unset($_POST['qty']);
- unset($_POST['type']);
- unset($_POST['remise_percent']);
- unset($_POST['price_ht']);
- unset($_POST['multicurrency_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']);
- unset($_POST['buying_price']);
- unset($_POST['np_marginRate']);
- unset($_POST['np_markRate']);
- unset($_POST['dp_desc']);
- unset($_POST['idprod']);
- unset($_POST['date_starthour']);
- unset($_POST['date_startmin']);
- unset($_POST['date_startsec']);
- unset($_POST['date_startday']);
- unset($_POST['date_startmonth']);
- unset($_POST['date_startyear']);
- unset($_POST['date_endhour']);
- unset($_POST['date_endmin']);
- unset($_POST['date_endsec']);
- unset($_POST['date_endday']);
- unset($_POST['date_endmonth']);
- unset($_POST['date_endyear']);
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- } elseif ($action == 'updateline' && $user->rights->contrat->creer && !GETPOST('cancel', 'alpha')) {
- $error = 0;
- if (!empty($date_start_update) && !empty($date_end_update) && $date_start_update > $date_end_update) {
- setEventMessages($langs->trans("Error").': '.$langs->trans("DateStartPlanned").' > '.$langs->trans("DateEndPlanned"), null, 'errors');
- $action = 'editline';
- $_GET['rowid'] = GETPOST('elrowid');
- $error++;
- }
- if (!$error) {
- $objectline = new ContratLigne($db);
- if ($objectline->fetch(GETPOST('elrowid', 'int')) < 0) {
- setEventMessages($objectline->error, $objectline->errors, 'errors');
- $error++;
- }
- $objectline->fetch_optionals();
- }
- $db->begin();
- if (!$error) {
- if ($date_start_real_update == '') {
- $date_start_real_update = $objectline->date_ouverture;
- }
- if ($date_end_real_update == '') {
- $date_end_real_update = $objectline->date_cloture;
- }
- $vat_rate = GETPOST('eltva_tx');
- // Define info_bits
- $info_bits = 0;
- if (preg_match('/\*/', $vat_rate)) {
- $info_bits |= 0x01;
- }
- // Define vat_rate
- $vat_rate = str_replace('*', '', $vat_rate);
- $localtax1_tx = get_localtax($vat_rate, 1, $object->thirdparty, $mysoc);
- $localtax2_tx = get_localtax($vat_rate, 2, $object->thirdparty, $mysoc);
- $txtva = $vat_rate;
- // Clean vat code
- $reg = array();
- $vat_src_code = '';
- if (preg_match('/\((.*)\)/', $txtva, $reg)) {
- $vat_src_code = $reg[1];
- $txtva = preg_replace('/\s*\(.*\)/', '', $txtva); // Remove code into vatrate.
- }
- // ajout prix d'achat
- if (GETPOST('buying_price')) {
- $pa_ht = price2num(GETPOST('buying_price'), '', 2);
- } else {
- $pa_ht = null;
- }
- $fk_unit = GETPOST('unit', 'alpha');
- $objectline->fk_product = GETPOST('idprod', 'int');
- $objectline->description = GETPOST('product_desc', 'restricthtml');
- $objectline->price_ht = price2num(GETPOST('elprice'), 'MU');
- $objectline->subprice = price2num(GETPOST('elprice'), 'MU');
- $objectline->qty = price2num(GETPOST('elqty'), 'MS');
- $objectline->remise_percent = price2num(GETPOST('elremise_percent'), 2);
- $objectline->tva_tx = ($txtva ? $txtva : 0); // Field may be disabled, so we use vat rate 0
- $objectline->vat_src_code = $vat_src_code;
- $objectline->localtax1_tx = is_numeric($localtax1_tx) ? $localtax1_tx : 0;
- $objectline->localtax2_tx = is_numeric($localtax2_tx) ? $localtax2_tx : 0;
- $objectline->date_ouverture_prevue = $date_start_update;
- $objectline->date_ouverture = $date_start_real_update;
- $objectline->date_fin_validite = $date_end_update;
- $objectline->date_cloture = $date_end_real_update;
- $objectline->fk_user_cloture = $user->id;
- $objectline->fk_fournprice = $fk_fournprice;
- $objectline->pa_ht = $pa_ht;
- if ($fk_unit > 0) {
- $objectline->fk_unit = GETPOST('unit');
- } else {
- $objectline->fk_unit = null;
- }
- // Extrafields
- $extralabelsline = $extrafields->fetch_name_optionals_label($objectline->table_element);
- $array_options = $extrafields->getOptionalsFromPost($object->table_element_line, $predef);
- if (is_array($array_options) && count($array_options) > 0) {
- // We replace values in this->line->array_options only for entries defined into $array_options
- foreach ($array_options as $key => $value) {
- $objectline->array_options[$key] = $array_options[$key];
- }
- }
- // TODO verifier price_min si fk_product et multiprix
- $result = $objectline->update($user);
- if ($result < 0) {
- $error++;
- setEventMessages($objectline->error, $objectline->errors, 'errors');
- }
- }
- if (!$error) {
- $db->commit();
- } else {
- $db->rollback();
- }
- } elseif ($action == 'confirm_deleteline' && $confirm == 'yes' && $user->rights->contrat->creer) {
- $result = $object->deleteline(GETPOST('lineid', 'int'), $user);
- if ($result >= 0) {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- } elseif ($action == 'confirm_valid' && $confirm == 'yes' && $user->rights->contrat->creer) {
- $result = $object->validate($user);
- if ($result > 0) {
- // Define output language
- if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
- $outputlangs = $langs;
- $newlang = '';
- if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id', 'aZ09')) {
- $newlang = GETPOST('lang_id', 'aZ09');
- }
- if ($conf->global->MAIN_MULTILANGS && empty($newlang)) {
- $newlang = $object->thirdparty->default_lang;
- }
- if (!empty($newlang)) {
- $outputlangs = new Translate("", $conf);
- $outputlangs->setDefaultLang($newlang);
- }
- $model = $object->model_pdf;
- $ret = $object->fetch($id); // Reload to get new records
- $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
- }
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- } elseif ($action == 'reopen' && $user->rights->contrat->creer) {
- $result = $object->reopen($user);
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- } elseif ($action == 'confirm_close' && $confirm == 'yes' && $user->rights->contrat->creer) {
- // Close all lines
- $result = $object->closeAll($user);
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- } elseif ($action == 'confirm_activate' && $confirm == 'yes' && $user->rights->contrat->creer) {
- // Close all lines
- $result = $object->activateAll($user);
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- } elseif ($action == 'confirm_delete' && $confirm == 'yes' && $user->rights->contrat->supprimer) {
- $result = $object->delete($user);
- if ($result >= 0) {
- header("Location: list.php?restore_lastsearch_values=1");
- return;
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- } elseif ($action == 'confirm_move' && $confirm == 'yes' && $user->rights->contrat->creer) {
- if (GETPOST('newcid') > 0) {
- $contractline = new ContratLigne($db);
- $result = $contractline->fetch(GETPOSTINT('lineid'));
- $contractline->fk_contrat = GETPOSTINT('newcid');
- $result = $contractline->update($user, 1);
- if ($result >= 0) {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
- return;
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- } else {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("RefNewContract")), null, 'errors');
- }
- } elseif ($action == 'update_extras') {
- $object->oldcopy = dol_clone($object);
- // Fill array 'array_options' with data from update form
- $ret = $extrafields->setOptionalsFromPost(null, $object, GETPOST('attribute', 'restricthtml'));
- if ($ret < 0) {
- $error++;
- }
- if (!$error) {
- $result = $object->insertExtraFields('CONTRACT_MODIFY');
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- $error++;
- }
- }
- if ($error) {
- $action = 'edit_extras';
- }
- } elseif ($action == 'setref_supplier') {
- if (!$cancel) {
- $object->oldcopy = dol_clone($object);
- $result = $object->setValueFrom('ref_supplier', GETPOST('ref_supplier', 'alpha'), '', null, 'text', '', $user, 'CONTRACT_MODIFY');
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- $action = 'editref_supplier';
- } else {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- }
- } else {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
- exit;
- }
- } elseif ($action == 'setref_customer') {
- if (!$cancel) {
- $object->oldcopy = dol_clone($object);
- $result = $object->setValueFrom('ref_customer', GETPOST('ref_customer', 'alpha'), '', null, 'text', '', $user, 'CONTRACT_MODIFY');
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- $action = 'editref_customer';
- } else {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- }
- } else {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
- exit;
- }
- } elseif ($action == 'setref') {
- if (!$cancel) {
- $result = $object->fetch($id);
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- $old_ref = $object->ref;
- $result = $object->setValueFrom('ref', GETPOST('ref', 'alpha'), '', null, 'text', '', $user, 'CONTRACT_MODIFY');
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- $action = 'editref';
- } else {
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- $old_filedir = $conf->contrat->multidir_output[$object->entity].'/'.dol_sanitizeFileName($old_ref);
- $new_filedir = $conf->contrat->multidir_output[$object->entity].'/'.dol_sanitizeFileName($object->ref);
- $files = dol_dir_list($old_filedir);
- if (!empty($files)) {
- if (!is_dir($new_filedir)) {
- dol_mkdir($new_filedir);
- }
- foreach ($files as $file) {
- dol_move($file['fullname'], $new_filedir.'/'.$file['name']);
- }
- }
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- }
- } else {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
- exit;
- }
- } elseif ($action == 'setdate_contrat') {
- if (!$cancel) {
- $result = $object->fetch($id);
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- $datacontrat = dol_mktime(GETPOST('date_contrathour'), GETPOST('date_contratmin'), 0, GETPOST('date_contratmonth'), GETPOST('date_contratday'), GETPOST('date_contratyear'));
- $result = $object->setValueFrom('date_contrat', $datacontrat, '', null, 'date', '', $user, 'CONTRACT_MODIFY');
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- $action = 'editdate_contrat';
- } else {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- }
- } else {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
- exit;
- }
- }
- // Actions when printing a doc from card
- include DOL_DOCUMENT_ROOT.'/core/actions_printing.inc.php';
- // Actions to build doc
- $upload_dir = $conf->contrat->multidir_output[$object->entity];
- $permissiontoadd = $user->rights->contrat->creer;
- include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php';
- // Actions to send emails
- $triggersendname = 'CONTRACT_SENTBYMAIL';
- $paramname = 'id';
- $mode = 'emailfromcontract';
- $trackid = 'con'.$object->id;
- include DOL_DOCUMENT_ROOT.'/core/actions_sendmails.inc.php';
- if (!empty($conf->global->MAIN_DISABLE_CONTACTS_TAB) && $user->rights->contrat->creer) {
- if ($action == 'addcontact') {
- $contactid = (GETPOST('userid') ? GETPOST('userid') : GETPOST('contactid'));
- $typeid = (GETPOST('typecontact') ? GETPOST('typecontact') : GETPOST('type'));
- $result = $object->add_contact($contactid, $typeid, GETPOST("source", 'aZ09'));
- if ($result >= 0) {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- } else {
- if ($object->error == 'DB_ERROR_RECORD_ALREADY_EXISTS') {
- $langs->load("errors");
- setEventMessages($langs->trans("ErrorThisContactIsAlreadyDefinedAsThisType"), null, 'errors');
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- } elseif ($action == 'swapstatut') {
- // bascule du statut d'un contact
- $result = $object->swapContactStatus(GETPOST('ligne', 'int'));
- } elseif ($action == 'deletecontact') {
- // Efface un contact
- $result = $object->delete_contact(GETPOST('lineid', 'int'));
- if ($result >= 0) {
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- }
- // Action clone object
- if ($action == 'confirm_clone' && $confirm == 'yes') {
- if (!GETPOST('socid', 3)) {
- setEventMessages($langs->trans("NoCloneOptionsSpecified"), null, 'errors');
- } else {
- if ($object->id > 0) {
- $result = $object->createFromClone($user, $socid);
- if ($result > 0) {
- header("Location: ".$_SERVER['PHP_SELF'].'?id='.$result);
- exit();
- } else {
- if (count($object->errors) > 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- $action = '';
- }
- }
- }
- }
- }
- /*
- * View
- */
- $help_url = 'EN:Module_Contracts|FR:Module_Contrat';
- llxHeader('', $langs->trans("Contract"), $help_url);
- $form = new Form($db);
- $formfile = new FormFile($db);
- if (!empty($conf->project->enabled)) {
- $formproject = new FormProjets($db);
- }
- // Load object modContract
- $module = (!empty($conf->global->CONTRACT_ADDON) ? $conf->global->CONTRACT_ADDON : 'mod_contract_serpis');
- if (substr($module, 0, 13) == 'mod_contract_' && substr($module, -3) == 'php') {
- $module = substr($module, 0, dol_strlen($module) - 4);
- }
- $result = dol_include_once('/core/modules/contract/'.$module.'.php');
- if ($result > 0) {
- $modCodeContract = new $module();
- }
- // Create
- if ($action == 'create') {
- print load_fiche_titre($langs->trans('AddContract'), '', 'contract');
- $soc = new Societe($db);
- if ($socid > 0) {
- $soc->fetch($socid);
- }
- if (GETPOST('origin') && GETPOST('originid', 'int')) {
- // Parse element/subelement (ex: project_task)
- $regs = array();
- $element = $subelement = GETPOST('origin');
- if (preg_match('/^([^_]+)_([^_]+)/i', GETPOST('origin'), $regs)) {
- $element = $regs[1];
- $subelement = $regs[2];
- }
- if ($element == 'project') {
- $projectid = GETPOST('originid', 'int');
- } else {
- // For compatibility
- if ($element == 'order' || $element == 'commande') {
- $element = $subelement = 'commande';
- }
- if ($element == 'propal') {
- $element = 'comm/propal'; $subelement = 'propal';
- }
- if ($element == 'invoice' || $element == 'facture') {
- $element = 'compta/facture';
- $subelement = 'facture';
- }
- dol_include_once('/'.$element.'/class/'.$subelement.'.class.php');
- $classname = ucfirst($subelement);
- $objectsrc = new $classname($db);
- $objectsrc->fetch($originid);
- if (empty($objectsrc->lines) && method_exists($objectsrc, 'fetch_lines')) {
- $objectsrc->fetch_lines();
- }
- $objectsrc->fetch_thirdparty();
- // Replicate extrafields
- $objectsrc->fetch_optionals();
- $object->array_options = $objectsrc->array_options;
- $projectid = (!empty($objectsrc->fk_project) ? $objectsrc->fk_project : '');
- $soc = $objectsrc->thirdparty;
- $note_private = (!empty($objectsrc->note_private) ? $objectsrc->note_private : '');
- $note_public = (!empty($objectsrc->note_public) ? $objectsrc->note_public : '');
- // Object source contacts list
- $srccontactslist = $objectsrc->liste_contact(-1, 'external', 1);
- }
- } else {
- $projectid = GETPOST('projectid', 'int');
- $note_private = GETPOST("note_private");
- $note_public = GETPOST("note_public");
- }
- $object->date_contrat = dol_now();
- print '<form name="form_contract" action="'.$_SERVER["PHP_SELF"].'" method="post">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="action" value="add">';
- print '<input type="hidden" name="socid" value="'.$soc->id.'">'."\n";
- print '<input type="hidden" name="remise_percent" value="0">';
- print dol_get_fiche_head();
- print '<table class="border centpercent">';
- // Ref
- print '<tr><td class="titlefieldcreate fieldrequired">'.$langs->trans('Ref').'</td><td>';
- if (!empty($modCodeContract->code_auto)) {
- $tmpcode = $langs->trans("Draft");
- } else {
- $tmpcode = '<input name="ref" class="maxwidth100" maxlength="128" value="'.dol_escape_htmltag(GETPOST('ref') ?GETPOST('ref') : $tmpcode).'">';
- }
- print $tmpcode;
- print '</td></tr>';
- // Ref customer
- print '<tr><td>'.$langs->trans('RefCustomer').'</td>';
- print '<td><input type="text" class="maxwidth150" name="ref_customer" id="ref_customer" value="'.dol_escape_htmltag(GETPOST('ref_customer', 'alpha')).'"></td></tr>';
- // Ref supplier
- print '<tr><td>'.$langs->trans('RefSupplier').'</td>';
- print '<td><input type="text" class="maxwidth150" name="ref_supplier" id="ref_supplier" value="'.dol_escape_htmltag(GETPOST('ref_supplier', 'alpha')).'"></td></tr>';
- // Thirdparty
- print '<tr>';
- print '<td class="fieldrequired">'.$langs->trans('ThirdParty').'</td>';
- if ($socid > 0) {
- print '<td>';
- print $soc->getNomUrl(1);
- print '<input type="hidden" name="socid" value="'.$soc->id.'">';
- print '</td>';
- } else {
- print '<td>';
- print img_picto('', 'company', 'class="pictofixedwidth"');
- print $form->select_company('', 'socid', '', 'SelectThirdParty', 1, 0, null, 0, 'minwidth300 widthcentpercentminusxx maxwidth500');
- print ' <a href="'.DOL_URL_ROOT.'/societe/card.php?action=create&backtopage='.urlencode($_SERVER["PHP_SELF"].'?action=create').'"><span class="fa fa-plus-circle valignmiddle paddingleft" title="'.$langs->trans("AddThirdParty").'"></span></a>';
- print '</td>';
- }
- print '</tr>'."\n";
- if ($socid > 0) {
- // Ligne info remises tiers
- print '<tr><td>'.$langs->trans('Discounts').'</td><td>';
- if ($soc->remise_percent) {
- print $langs->trans("CompanyHasRelativeDiscount", $soc->remise_percent).' ';
- } else {
- print '<span class="hideonsmartphone">'.$langs->trans("CompanyHasNoRelativeDiscount").'. </span>';
- }
- $absolute_discount = $soc->getAvailableDiscounts();
- if ($absolute_discount) {
- print $langs->trans("CompanyHasAbsoluteDiscount", price($absolute_discount), $langs->trans("Currency".$conf->currency)).'.';
- } else {
- print '<span class="hideonsmartphone">'.$langs->trans("CompanyHasNoAbsoluteDiscount").'.</span>';
- }
- print '</td></tr>';
- }
- // Commercial suivi
- print '<tr><td class="nowrap"><span class="fieldrequired">'.$langs->trans("TypeContact_contrat_internal_SALESREPFOLL").'</span></td><td>';
- print img_picto('', 'user', 'class="pictofixedwidth"');
- print $form->select_dolusers(GETPOST("commercial_suivi_id") ?GETPOST("commercial_suivi_id") : $user->id, 'commercial_suivi_id', 1, '');
- print '</td></tr>';
- // Commercial signature
- print '<tr><td class="nowrap"><span class="fieldrequired">'.$langs->trans("TypeContact_contrat_internal_SALESREPSIGN").'</span></td><td>';
- print img_picto('', 'user', 'class="pictofixedwidth"');
- print $form->select_dolusers(GETPOST("commercial_signature_id") ?GETPOST("commercial_signature_id") : $user->id, 'commercial_signature_id', 1, '');
- print '</td></tr>';
- print '<tr><td><span class="fieldrequired">'.$langs->trans("Date").'</span></td><td>';
- print $form->selectDate($datecontrat, '', 0, 0, '', "contrat");
- print "</td></tr>";
- // Project
- if (!empty($conf->project->enabled)) {
- $langs->load('projects');
- $formproject = new FormProjets($db);
- print '<tr><td>'.$langs->trans("Project").'</td><td>';
- $formproject->select_projects(($soc->id > 0 ? $soc->id : -1), $projectid, "projectid", 0, 0, 1, 1);
- print ' <a href="'.DOL_URL_ROOT.'/projet/card.php?socid='.$soc->id.'&action=create&status=1&backtopage='.urlencode($_SERVER["PHP_SELF"].'?action=create&socid='.$soc->id).'"><span class="fa fa-plus-circle valignmiddle" title="'.$langs->trans("AddProject").'"></span></a>';
- print "</td></tr>";
- }
- print '<tr><td>'.$langs->trans("NotePublic").'</td><td class="tdtop">';
- $doleditor = new DolEditor('note_public', $note_public, '', '100', 'dolibarr_notes', 'In', 1, true, empty($conf->global->FCKEDITOR_ENABLE_NOTE_PUBLIC) ? 0 : 1, ROWS_3, '90%');
- print $doleditor->Create(1);
- print '</td></tr>';
- if (empty($user->socid)) {
- print '<tr><td>'.$langs->trans("NotePrivate").'</td><td class="tdtop">';
- $doleditor = new DolEditor('note_private', $note_private, '', '100', 'dolibarr_notes', 'In', 1, true, empty($conf->global->FCKEDITOR_ENABLE_NOTE_PRIVATE) ? 0 : 1, ROWS_3, '90%');
- print $doleditor->Create(1);
- print '</td></tr>';
- }
- // Other attributes
- $parameters = array('objectsrc' => $objectsrc, 'colspan' => ' colspan="3"', 'cols' => '3');
- $reshook = $hookmanager->executeHooks('formObjectOptions', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- // Other attributes
- if (empty($reshook)) {
- print $object->showOptionals($extrafields, 'create', $parameters);
- }
- print "</table>\n";
- print dol_get_fiche_end();
- print $form->buttonsSaveCancel("Create");
- if (is_object($objectsrc)) {
- print '<input type="hidden" name="origin" value="'.$objectsrc->element.'">';
- print '<input type="hidden" name="originid" value="'.$objectsrc->id.'">';
- if (empty($conf->global->CONTRACT_SUPPORT_PRODUCTS)) {
- print '<br>'.$langs->trans("Note").': '.$langs->trans("OnlyLinesWithTypeServiceAreUsed");
- }
- }
- print "</form>\n";
- } else {
- // View and edit mode
- $now = dol_now();
- if ($object->id > 0) {
- $object->fetch_thirdparty();
- $soc = $object->thirdparty; // $soc is used later
- $result = $object->fetch_lines(); // This also init $this->nbofserviceswait, $this->nbofservicesopened, $this->nbofservicesexpired=, $this->nbofservicesclosed
- if ($result < 0) {
- dol_print_error($db, $object->error);
- }
- $nbofservices = count($object->lines);
- $author = new User($db);
- $author->fetch($object->user_author_id);
- $commercial_signature = new User($db);
- $commercial_signature->fetch($object->commercial_signature_id);
- $commercial_suivi = new User($db);
- $commercial_suivi->fetch($object->commercial_suivi_id);
- $head = contract_prepare_head($object);
- $hselected = 0;
- $formconfirm = '';
- print dol_get_fiche_head($head, $hselected, $langs->trans("Contract"), -1, 'contract');
- if ($action == 'delete') {
- //Confirmation de la suppression du contrat
- $formconfirm = $form->formconfirm($_SERVER['PHP_SELF']."?id=".$object->id, $langs->trans("DeleteAContract"), $langs->trans("ConfirmDeleteAContract"), "confirm_delete", '', 0, 1);
- } elseif ($action == 'valid') {
- //Confirmation de la validation
- $ref = substr($object->ref, 1, 4);
- if ($ref == 'PROV' && !empty($modCodeContract->code_auto)) {
- $numref = $object->getNextNumRef($object->thirdparty);
- } else {
- $numref = $object->ref;
- }
- $text = $langs->trans('ConfirmValidateContract', $numref);
- $formconfirm = $form->formconfirm($_SERVER['PHP_SELF']."?id=".$object->id, $langs->trans("ValidateAContract"), $text, "confirm_valid", '', 0, 1);
- } elseif ($action == 'close') {
- // Confirmation de la fermeture
- $formconfirm = $form->formconfirm($_SERVER['PHP_SELF']."?id=".$object->id, $langs->trans("CloseAContract"), $langs->trans("ConfirmCloseContract"), "confirm_close", '', 0, 1);
- } elseif ($action == 'activate') {
- $formconfirm = $form->formconfirm($_SERVER['PHP_SELF']."?id=".$object->id, $langs->trans("ActivateAllOnContract"), $langs->trans("ConfirmActivateAllOnContract"), "confirm_activate", '', 0, 1);
- } elseif ($action == 'clone') {
- // Clone confirmation
- $formquestion = array(array('type' => 'other', 'name' => 'socid', 'label' => $langs->trans("SelectThirdParty"), 'value' => $form->select_company(GETPOST('socid', 'int'), 'socid', '(s.client=1 OR s.client=2 OR s.client=3)')));
- $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id, $langs->trans('ToClone'), $langs->trans('ConfirmCloneContract', $object->ref), 'confirm_clone', $formquestion, 'yes', 1);
- }
- // Call Hook formConfirm
- $parameters = array(
- 'formConfirm' => $formconfirm,
- 'id' => $id,
- //'lineid' => $lineid,
- );
- // Note that $action and $object may have been modified by hook
- $reshook = $hookmanager->executeHooks('formConfirm', $parameters, $object, $action);
- if (empty($reshook)) {
- $formconfirm .= $hookmanager->resPrint;
- } elseif ($reshook > 0) {
- $formconfirm = $hookmanager->resPrint;
- }
- // Print form confirm
- print $formconfirm;
- // Contract
- if (!empty($object->brouillon) && $user->rights->contrat->creer) {
- print '<form action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'" method="POST">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="action" value="setremise">';
- }
- // Contract card
- $linkback = '<a href="'.DOL_URL_ROOT.'/contrat/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
- $morehtmlref = '';
- if (!empty($modCodeContract->code_auto)) {
- $morehtmlref .= $object->ref;
- } else {
- $morehtmlref .= $form->editfieldkey("", 'ref', $object->ref, $object, $user->rights->contrat->creer, 'string', '', 0, 3);
- $morehtmlref .= $form->editfieldval("", 'ref', $object->ref, $object, $user->rights->contrat->creer, 'string', '', 0, 2);
- }
- $morehtmlref .= '<div class="refidno">';
- // Ref customer
- $morehtmlref .= $form->editfieldkey("RefCustomer", 'ref_customer', $object->ref_customer, $object, $user->rights->contrat->creer, 'string', '', 0, 1);
- $morehtmlref .= $form->editfieldval("RefCustomer", 'ref_customer', $object->ref_customer, $object, $user->rights->contrat->creer, 'string', '', null, null, '', 1, 'getFormatedCustomerRef');
- // Ref supplier
- $morehtmlref .= '<br>';
- $morehtmlref .= $form->editfieldkey("RefSupplier", 'ref_supplier', $object->ref_supplier, $object, $user->rights->contrat->creer, 'string', '', 0, 1);
- $morehtmlref .= $form->editfieldval("RefSupplier", 'ref_supplier', $object->ref_supplier, $object, $user->rights->contrat->creer, 'string', '', null, null, '', 1, 'getFormatedSupplierRef');
- // Thirdparty
- $morehtmlref .= '<br>'.$langs->trans('ThirdParty').' : '.$object->thirdparty->getNomUrl(1);
- if (empty($conf->global->MAIN_DISABLE_OTHER_LINK) && $object->thirdparty->id > 0) {
- $morehtmlref .= ' (<a href="'.DOL_URL_ROOT.'/contrat/list.php?socid='.$object->thirdparty->id.'&search_name='.urlencode($object->thirdparty->name).'">'.$langs->trans("OtherContracts").'</a>)';
- }
- // Project
- if (!empty($conf->project->enabled)) {
- $langs->load("projects");
- $morehtmlref .= '<br>'.$langs->trans('Project').' ';
- if ($user->rights->contrat->creer) {
- if ($action != 'classify') {
- $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&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="'.newToken().'">';
- $morehtmlref .= $formproject->select_projects($object->thirdparty->id, $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->thirdparty->id, $object->fk_project, 'none', 0, 0, 0, 1);
- }
- } else {
- if (!empty($object->fk_project)) {
- $proj = new Project($db);
- $proj->fetch($object->fk_project);
- $morehtmlref .= ' : '.$proj->getNomUrl(1);
- if ($proj->title) {
- $morehtmlref .= ' - '.$proj->title;
- }
- } else {
- $morehtmlref .= '';
- }
- }
- }
- $morehtmlref .= '</div>';
- dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'none', $morehtmlref);
- print '<div class="fichecenter">';
- print '<div class="underbanner clearboth"></div>';
- print '<table class="border tableforfield" width="100%">';
- // Line info of thirdparty discounts
- print '<tr><td class="titlefield">'.$langs->trans('Discount').'</td><td colspan="3">';
- if ($object->thirdparty->remise_percent) {
- print $langs->trans("CompanyHasRelativeDiscount", $object->thirdparty->remise_percent).'. ';
- } else {
- print '<span class="hideonsmartphone">'.$langs->trans("CompanyHasNoRelativeDiscount").'. </span>';
- }
- $absolute_discount = $object->thirdparty->getAvailableDiscounts();
- if ($absolute_discount) {
- print $langs->trans("CompanyHasAbsoluteDiscount", price($absolute_discount), $langs->trans("Currency".$conf->currency)).'.';
- } else {
- print '<span class="hideonsmartphone">'.$langs->trans("CompanyHasNoAbsoluteDiscount").'.</span>';
- }
- print '</td></tr>';
- // Date
- print '<tr>';
- print '<td class="titlefield">';
- print $form->editfieldkey("Date", 'date_contrat', $object->date_contrat, $object, $user->rights->contrat->creer);
- print '</td><td>';
- print $form->editfieldval("Date", 'date_contrat', $object->date_contrat, $object, $user->rights->contrat->creer, 'datehourpicker');
- print '</td>';
- print '</tr>';
- // Other attributes
- $cols = 3;
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php';
- print "</table>";
- print '</div>';
- if (!empty($object->brouillon) && $user->rights->contrat->creer) {
- print '</form>';
- }
- echo '<br>';
- if (!empty($conf->global->MAIN_DISABLE_CONTACTS_TAB)) {
- $blocname = 'contacts';
- $title = $langs->trans('ContactsAddresses');
- include DOL_DOCUMENT_ROOT.'/core/tpl/bloc_showhide.tpl.php';
- }
- if (!empty($conf->global->MAIN_DISABLE_NOTES_TAB)) {
- $blocname = 'notes';
- $title = $langs->trans('Notes');
- include DOL_DOCUMENT_ROOT.'/core/tpl/bloc_showhide.tpl.php';
- }
- $arrayothercontracts = $object->getListOfContracts('others'); // array or -1 if technical error
- /*
- * Lines of contracts
- */
- $productstatic = new Product($db);
- $usemargins = 0;
- if (!empty($conf->margin->enabled) && !empty($object->element) && in_array($object->element, array('facture', 'propal', 'commande'))) {
- $usemargins = 1;
- }
- // Title line for service
- $cursorline = 1;
- print '<div id="contrat-lines-container" data-contractid="'.$object->id.'" data-element="'.$object->element.'" >';
- while ($cursorline <= $nbofservices) {
- print '<div id="contrat-line-container'.$object->lines[$cursorline - 1]->id.'" data-contratlineid = "'.$object->lines[$cursorline - 1]->id.'" data-element="'.$object->lines[$cursorline - 1]->element.'" >';
- print '<form name="update" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'" method="post">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="action" value="updateline">';
- print '<input type="hidden" name="elrowid" value="'.$object->lines[$cursorline - 1]->id.'">';
- print '<input type="hidden" name="fournprice" value="'.(!empty($object->lines[$cursorline - 1]->fk_fournprice) ? $object->lines[$cursorline - 1]->fk_fournprice : 0).'">';
- // Area with common detail of line
- print '<div class="div-table-responsive-no-min">';
- print '<table class="notopnoleftnoright allwidth tableforservicepart1" width="100%">';
- $sql = "SELECT cd.rowid, cd.statut, cd.label as label_det, cd.fk_product, cd.product_type, cd.description, cd.price_ht, cd.qty,";
- $sql .= " cd.tva_tx, cd.vat_src_code, cd.remise_percent, cd.info_bits, cd.subprice, cd.multicurrency_subprice,";
- $sql .= " cd.date_ouverture_prevue as date_debut, cd.date_ouverture as date_debut_reelle,";
- $sql .= " cd.date_fin_validite as date_fin, cd.date_cloture as date_fin_reelle,";
- $sql .= " cd.commentaire as comment, cd.fk_product_fournisseur_price as fk_fournprice, cd.buy_price_ht as pa_ht,";
- $sql .= " cd.fk_unit,";
- $sql .= " p.rowid as pid, p.ref as pref, p.label as plabel, p.fk_product_type as ptype, p.entity as pentity, p.tosell, p.tobuy, p.tobatch";
- $sql .= " FROM ".MAIN_DB_PREFIX."contratdet as cd";
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON cd.fk_product = p.rowid";
- $sql .= " WHERE cd.rowid = ".((int) $object->lines[$cursorline - 1]->id);
- $result = $db->query($sql);
- if ($result) {
- $total = 0;
- print '<tr class="liste_titre'.($cursorline ? ' liste_titre_add' : '').'">';
- print '<td>'.$langs->trans("ServiceNb", $cursorline).'</td>';
- print '<td width="80" class="center">'.$langs->trans("VAT").'</td>';
- print '<td width="80" class="right">'.$langs->trans("PriceUHT").'</td>';
- //if (!empty($conf->multicurrency->enabled)) {
- // print '<td width="80" class="right">'.$langs->trans("PriceUHTCurrency").'</td>';
- //}
- print '<td width="30" class="center">'.$langs->trans("Qty").'</td>';
- if (!empty($conf->global->PRODUCT_USE_UNITS)) {
- print '<td width="30" class="left">'.$langs->trans("Unit").'</td>';
- }
- print '<td width="50" class="right">'.$langs->trans("ReductionShort").'</td>';
- if (!empty($conf->margin->enabled) && !empty($conf->global->MARGIN_SHOW_ON_CONTRACT)) {
- print '<td width="50" class="right">'.$langs->trans("BuyingPrice").'</td>';
- }
- print '<td width="30"> </td>';
- print "</tr>\n";
- $objp = $db->fetch_object($result);
- // Line in view mode
- if ($action != 'editline' || GETPOST('rowid') != $objp->rowid) {
- $moreparam = '';
- if (!empty($conf->global->CONTRACT_HIDE_CLOSED_SERVICES_BY_DEFAULT) && $objp->statut == ContratLigne::STATUS_CLOSED && $action != 'showclosedlines') {
- $moreparam = 'style="display: none;"';
- }
- print '<tr class="tdtop oddeven" '.$moreparam.'>';
- // Label
- if ($objp->fk_product > 0) {
- $productstatic->id = $objp->fk_product;
- $productstatic->type = $objp->ptype;
- $productstatic->ref = $objp->pref;
- $productstatic->entity = $objp->pentity;
- $productstatic->label = $objp->plabel;
- $productstatic->status = $objp->tosell;
- $productstatic->status_buy = $objp->tobuy;
- $productstatic->status_batch = $objp->tobatch;
- print '<td>';
- $text = $productstatic->getNomUrl(1, '', 32);
- if ($objp->plabel) {
- $text .= ' - ';
- $text .= $objp->plabel;
- }
- $description = $objp->description;
- // Add description in form
- if (!empty($conf->global->PRODUIT_DESC_IN_FORM)) {
- $text .= (!empty($objp->description) && $objp->description != $objp->plabel) ? '<br>'.dol_htmlentitiesbr($objp->description) : '';
- $description = ''; // Already added into main visible desc
- }
- echo $form->textwithtooltip($text, $description, 3, '', '', $cursorline, 0, (!empty($line->fk_parent_line) ?img_picto('', 'rightarrow') : ''));
- print '</td>';
- } else {
- print '<td>'.img_object($langs->trans("ShowProductOrService"), ($objp->product_type ? 'service' : 'product')).' '.dol_htmlentitiesbr($objp->description)."</td>\n";
- }
- // VAT
- print '<td class="center">';
- print vatrate($objp->tva_tx.($objp->vat_src_code ? (' ('.$objp->vat_src_code.')') : ''), '%', $objp->info_bits);
- print '</td>';
- // Price
- print '<td class="right">'.($objp->subprice != '' ? price($objp->subprice) : '')."</td>\n";
- // Price multicurrency
- /*if (!empty($conf->multicurrency->enabled)) {
- print '<td class="linecoluht_currency nowrap right">'.price($objp->multicurrency_subprice).'</td>';
- }*/
- // Quantity
- print '<td class="center">'.$objp->qty.'</td>';
- // Unit
- if (!empty($conf->global->PRODUCT_USE_UNITS)) {
- print '<td class="left">'.$langs->trans($object->lines[$cursorline - 1]->getLabelOfUnit()).'</td>';
- }
- // Discount
- if ($objp->remise_percent > 0) {
- print '<td class="right">'.$objp->remise_percent."%</td>\n";
- } else {
- print '<td> </td>';
- }
- // Margin
- if (!empty($conf->margin->enabled) && !empty($conf->global->MARGIN_SHOW_ON_CONTRACT)) {
- print '<td class="right nowraponall">'.price($objp->pa_ht).'</td>';
- }
- // Icon move, update et delete (status contract 0=draft,1=validated,2=closed)
- print '<td class="nowraponall right">';
- if ($user->rights->contrat->creer && is_array($arrayothercontracts) && count($arrayothercontracts) && ($object->statut >= 0)) {
- print '<!-- link to move service line into another contract -->';
- print '<a class="reposition marginrightonly" style="padding-left: 5px;" href="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'&action=move&token='.newToken().'&rowid='.$objp->rowid.'">';
- print img_picto($langs->trans("MoveToAnotherContract"), 'uparrow');
- print '</a>';
- }
- if ($user->rights->contrat->creer && ($object->statut >= 0)) {
- print '<a class="reposition marginrightonly editfielda" href="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'&action=editline&token='.newToken().'&rowid='.$objp->rowid.'">';
- print img_edit();
- print '</a>';
- }
- if ($user->rights->contrat->creer && ($object->statut >= 0)) {
- print '<a class="reposition marginrightonly" href="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'&action=deleteline&token='.newToken().'&rowid='.$objp->rowid.'">';
- print img_delete();
- print '</a>';
- }
- print '</td>';
- print "</tr>\n";
- // Dates of service planed and real
- if ($objp->subprice >= 0) {
- $colspan = 6;
- if ($conf->margin->enabled && $conf->global->PRODUCT_USE_UNITS) {
- $colspan = 8;
- } elseif ($conf->margin->enabled || $conf->global->PRODUCT_USE_UNITS) {
- $colspan = 7;
- }
- print '<tr class="oddeven" '.$moreparam.'>';
- print '<td colspan="'.$colspan.'">';
- // Date planned
- print $langs->trans("DateStartPlanned").': ';
- if ($objp->date_debut) {
- print dol_print_date($db->jdate($objp->date_debut), 'day');
- // Warning si date prevu passee et pas en service
- if ($objp->statut == 0 && $db->jdate($objp->date_debut) < ($now - $conf->contrat->services->inactifs->warning_delay)) {
- $warning_delay = $conf->contrat->services->inactifs->warning_delay / 3600 / 24;
- $textlate = $langs->trans("Late").' = '.$langs->trans("DateReference").' > '.$langs->trans("DateToday").' '.(ceil($warning_delay) >= 0 ? '+' : '').ceil($warning_delay).' '.$langs->trans("days");
- print " ".img_warning($textlate);
- }
- } else {
- print $langs->trans("Unknown");
- }
- print ' - ';
- print $langs->trans("DateEndPlanned").': ';
- if ($objp->date_fin) {
- print dol_print_date($db->jdate($objp->date_fin), 'day');
- if ($objp->statut == 4 && $db->jdate($objp->date_fin) < ($now - $conf->contrat->services->expires->warning_delay)) {
- $warning_delay = $conf->contrat->services->expires->warning_delay / 3600 / 24;
- $textlate = $langs->trans("Late").' = '.$langs->trans("DateReference").' > '.$langs->trans("DateToday").' '.(ceil($warning_delay) >= 0 ? '+' : '').ceil($warning_delay).' '.$langs->trans("days");
- print " ".img_warning($textlate);
- }
- } else {
- print $langs->trans("Unknown");
- }
- print '</td>';
- print '</tr>';
- }
- // Display lines extrafields
- if (is_array($extralabelslines) && count($extralabelslines) > 0) {
- $line = new ContratLigne($db);
- $line->id = $objp->rowid;
- $line->fetch_optionals();
- print $line->showOptionals($extrafields, 'view', array('class'=>'oddeven', 'style'=>$moreparam, 'colspan'=>$colspan), '', '', 1);
- }
- } else {
- // Line in mode update
- // Ligne carac
- print '<tr class="oddeven">';
- print '<td>';
- if ($objp->fk_product > 0) {
- $canchangeproduct = 1;
- if (empty($canchangeproduct)) {
- $productstatic->id = $objp->fk_product;
- $productstatic->type = $objp->ptype;
- $productstatic->ref = $objp->pref;
- $productstatic->entity = $objp->pentity;
- print $productstatic->getNomUrl(1, '', 32);
- print $objp->label ? ' - '.dol_trunc($objp->label, 32) : '';
- print '<input type="hidden" name="idprod" value="'.(!empty($object->lines[$cursorline - 1]->fk_product) ? $object->lines[$cursorline - 1]->fk_product : 0).'">';
- } else {
- $senderissupplier = 0;
- if (empty($senderissupplier)) {
- print $form->select_produits((!empty($object->lines[$cursorline - 1]->fk_product) ? $object->lines[$cursorline - 1]->fk_product : 0), 'idprod');
- } else {
- print $form->select_produits_fournisseurs((!empty($object->lines[$cursorline - 1]->fk_product) ? $object->lines[$cursorline - 1]->fk_product : 0), 'idprod');
- }
- }
- print '<br>';
- } else {
- print $objp->label ? $objp->label.'<br>' : '';
- print '<input type="hidden" name="idprod" value="'.(!empty($object->lines[$cursorline - 1]->fk_product) ? $object->lines[$cursorline - 1]->fk_product : 0).'">';
- }
- // editeur wysiwyg
- require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
- $nbrows = ROWS_2;
- if (!empty($conf->global->MAIN_INPUT_DESC_HEIGHT)) {
- $nbrows = $conf->global->MAIN_INPUT_DESC_HEIGHT;
- }
- $enable = (isset($conf->global->FCKEDITOR_ENABLE_DETAILS) ? $conf->global->FCKEDITOR_ENABLE_DETAILS : 0);
- $doleditor = new DolEditor('product_desc', $objp->description, '', 92, 'dolibarr_details', '', false, true, $enable, $nbrows, '90%');
- $doleditor->Create();
- print '</td>';
- // VAT
- print '<td class="right">';
- print $form->load_tva("eltva_tx", $objp->tva_tx.($objp->vat_src_code ? (' ('.$objp->vat_src_code.')') : ''), $mysoc, $object->thirdparty, $objp->fk_product, $objp->info_bits, $objp->product_type, 0, 1);
- print '</td>';
- // Price
- print '<td class="right"><input size="5" type="text" name="elprice" value="'.price($objp->subprice).'"></td>';
- // Price multicurrency
- /*if (!empty($conf->multicurrency->enabled)) {
- print '<td class="linecoluht_currency nowrap right">'.price($objp->multicurrency_subprice).'</td>';
- }*/
- // Quantity
- print '<td class="center"><input size="2" type="text" name="elqty" value="'.$objp->qty.'"></td>';
- // Unit
- if (!empty($conf->global->PRODUCT_USE_UNITS)) {
- print '<td class="left">';
- print $form->selectUnits($objp->fk_unit, "unit");
- print '</td>';
- }
- // Discount
- print '<td class="nowrap right"><input size="1" type="text" name="elremise_percent" value="'.$objp->remise_percent.'">%</td>';
- if (!empty($usemargins)) {
- print '<td class="right">';
- if ($objp->fk_product) {
- print '<select id="fournprice" name="fournprice"></select>';
- }
- print '<input id="buying_price" type="text" size="5" name="buying_price" value="'.price($objp->pa_ht, 0, '', 0).'"></td>';
- }
- print '<td class="center">';
- print '<input type="submit" class="button margintoponly marginbottomonly" name="save" value="'.$langs->trans("Modify").'">';
- print '<br><input type="submit" class="button margintoponly marginbottomonly button-cancel" name="cancel" value="'.$langs->trans("Cancel").'">';
- print '</td>';
- print '</tr>';
- $colspan = 6;
- if (!empty($conf->margin->enabled) && !empty($conf->global->MARGIN_SHOW_ON_CONTRACT)) {
- $colspan++;
- }
- if (!empty($conf->global->PRODUCT_USE_UNITS)) {
- $colspan++;
- }
- // Line dates planed
- print '<tr class="oddeven">';
- print '<td colspan="'.$colspan.'">';
- print $langs->trans("DateStartPlanned").' ';
- print $form->selectDate($db->jdate($objp->date_debut), "date_start_update", $usehm, $usehm, ($db->jdate($objp->date_debut) > 0 ? 0 : 1), "update");
- print ' '.$langs->trans("DateEndPlanned").' ';
- print $form->selectDate($db->jdate($objp->date_fin), "date_end_update", $usehm, $usehm, ($db->jdate($objp->date_fin) > 0 ? 0 : 1), "update");
- print '</td>';
- print '</tr>';
- if (is_array($extralabelslines) && count($extralabelslines) > 0) {
- $line = new ContratLigne($db);
- $line->id = $objp->rowid;
- $line->fetch_optionals();
- print $line->showOptionals($extrafields, 'edit', array('style'=>'class="oddeven"', 'colspan'=>$colspan), '', '', 1);
- }
- }
- $db->free($result);
- } else {
- dol_print_error($db);
- }
- if ($object->statut > 0) {
- $moreparam = '';
- if (!empty($conf->global->CONTRACT_HIDE_CLOSED_SERVICES_BY_DEFAULT) && $object->lines[$cursorline - 1]->statut == ContratLigne::STATUS_CLOSED && $action != 'showclosedlines') {
- $moreparam = 'style="display: none;"';
- }
- print '<tr class="oddeven" '.$moreparam.'>';
- print '<td class="tdhrthin" colspan="'.($conf->margin->enabled ? 7 : 6).'"><hr class="opacitymedium tdhrthin"></td>';
- print "</tr>\n";
- }
- print "</table>";
- print '</div>';
- print "</form>\n";
- /*
- * Confirmation to delete service line of contract
- */
- if ($action == 'deleteline' && !$_REQUEST["cancel"] && $user->rights->contrat->creer && $object->lines[$cursorline - 1]->id == GETPOST('rowid')) {
- print $form->formconfirm($_SERVER["PHP_SELF"]."?id=".$object->id."&lineid=".GETPOST('rowid'), $langs->trans("DeleteContractLine"), $langs->trans("ConfirmDeleteContractLine"), "confirm_deleteline", '', 0, 1);
- if ($ret == 'html') {
- print '<table class="notopnoleftnoright" width="100%"><tr class="oddeven" height="6"><td></td></tr></table>';
- }
- }
- /*
- * Confirmation to move service toward another contract
- */
- if ($action == 'move' && !$_REQUEST["cancel"] && $user->rights->contrat->creer && $object->lines[$cursorline - 1]->id == GETPOST('rowid')) {
- $arraycontractid = array();
- foreach ($arrayothercontracts as $contractcursor) {
- $arraycontractid[$contractcursor->id] = $contractcursor->ref;
- }
- //var_dump($arraycontractid);
- // Cree un tableau formulaire
- $formquestion = array(
- 'text' => $langs->trans("ConfirmMoveToAnotherContractQuestion"),
- array('type' => 'select', 'name' => 'newcid', 'values' => $arraycontractid));
- print $form->formconfirm($_SERVER["PHP_SELF"]."?id=".$object->id."&lineid=".GETPOST('rowid', 'int'), $langs->trans("MoveToAnotherContract"), $langs->trans("ConfirmMoveToAnotherContract"), "confirm_move", $formquestion);
- print '<table class="notopnoleftnoright" width="100%"><tr class="oddeven" height="6"><td></td></tr></table>';
- }
- /*
- * Confirmation de la validation activation
- */
- if ($action == 'active' && !$cancel && $user->rights->contrat->activer && $object->lines[$cursorline - 1]->id == GETPOST('ligne', 'int')) {
- $dateactstart = dol_mktime(12, 0, 0, GETPOST('remonth'), GETPOST('reday'), GETPOST('reyear'));
- $dateactend = dol_mktime(12, 0, 0, GETPOST('endmonth'), GETPOST('endday'), GETPOST('endyear'));
- $comment = GETPOST('comment', 'alpha');
- print $form->formconfirm($_SERVER["PHP_SELF"]."?id=".$object->id."&ligne=".GETPOST('ligne', 'int')."&date=".$dateactstart."&dateend=".$dateactend."&comment=".urlencode($comment), $langs->trans("ActivateService"), $langs->trans("ConfirmActivateService", dol_print_date($dateactstart, "%A %d %B %Y")), "confirm_active", '', 0, 1);
- print '<table class="notopnoleftnoright" width="100%"><tr class="oddeven" height="6"><td></td></tr></table>';
- }
- /*
- * Confirmation de la validation fermeture
- */
- if ($action == 'closeline' && !$cancel && $user->rights->contrat->activer && $object->lines[$cursorline - 1]->id == GETPOST('ligne', 'int')) {
- $dateactstart = dol_mktime(12, 0, 0, GETPOST('remonth'), GETPOST('reday'), GETPOST('reyear'));
- $dateactend = dol_mktime(12, 0, 0, GETPOST('endmonth'), GETPOST('endday'), GETPOST('endyear'));
- $comment = GETPOST('comment', 'alpha');
- if (empty($dateactend)) {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("DateEndReal")), null, 'errors');
- } else {
- print $form->formconfirm($_SERVER["PHP_SELF"]."?id=".$object->id."&ligne=".GETPOST('ligne', 'int')."&date=".$dateactstart."&dateend=".$dateactend."&comment=".urlencode($comment), $langs->trans("CloseService"), $langs->trans("ConfirmCloseService", dol_print_date($dateactend, "%A %d %B %Y")), "confirm_closeline", '', 0, 1);
- }
- print '<table class="notopnoleftnoright" width="100%"><tr class="oddeven" height="6"><td></td></tr></table>';
- }
- // Area with status and activation info of line
- if ($object->statut > 0) {
- print '<table class="notopnoleftnoright tableforservicepart2'.($cursorline < $nbofservices ? ' boxtablenobottom' : '').'" width="100%">';
- print '<tr class="oddeven" '.$moreparam.'>';
- print '<td><span class="valignmiddle hideonsmartphone">'.$langs->trans("ServiceStatus").':</span> '.$object->lines[$cursorline - 1]->getLibStatut(4).'</td>';
- print '<td width="30" class="right">';
- if ($user->socid == 0) {
- if ($object->statut > 0 && $action != 'activateline' && $action != 'unactivateline') {
- $tmpaction = 'activateline';
- $tmpactionpicto = 'play';
- $tmpactiontext = $langs->trans("Activate");
- if ($objp->statut == 4) {
- $tmpaction = 'unactivateline';
- $tmpactionpicto = 'playstop';
- $tmpactiontext = $langs->trans("Disable");
- }
- if (($tmpaction == 'activateline' && $user->rights->contrat->activer) || ($tmpaction == 'unactivateline' && $user->rights->contrat->desactiver)) {
- print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&ligne='.$object->lines[$cursorline - 1]->id.'&action='.$tmpaction.'">';
- print img_picto($tmpactiontext, $tmpactionpicto);
- print '</a>';
- }
- }
- }
- print '</td>';
- print "</tr>\n";
- print '<tr class="oddeven" '.$moreparam.'>';
- print '<td>';
- // Si pas encore active
- if (!$objp->date_debut_reelle) {
- print $langs->trans("DateStartReal").': ';
- if ($objp->date_debut_reelle) {
- print dol_print_date($db->jdate($objp->date_debut_reelle), 'day');
- } else {
- print $langs->trans("ContractStatusNotRunning");
- }
- }
- // Si active et en cours
- if ($objp->date_debut_reelle && !$objp->date_fin_reelle) {
- print $langs->trans("DateStartReal").': ';
- print dol_print_date($db->jdate($objp->date_debut_reelle), 'day');
- }
- // Si desactive
- if ($objp->date_debut_reelle && $objp->date_fin_reelle) {
- print $langs->trans("DateStartReal").': ';
- print dol_print_date($db->jdate($objp->date_debut_reelle), 'day');
- print ' - ';
- print $langs->trans("DateEndReal").': ';
- print dol_print_date($db->jdate($objp->date_fin_reelle), 'day');
- }
- if (!empty($objp->comment)) {
- print " - ".$objp->comment;
- }
- print '</td>';
- print '<td class="center"> </td>';
- print '</tr>';
- print '</table>';
- }
- // Form to activate line
- if ($user->rights->contrat->activer && $action == 'activateline' && $object->lines[$cursorline - 1]->id == GETPOST('ligne', 'int')) {
- print '<form name="active" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&ligne='.GETPOST('ligne', 'int').'&action=active" method="post">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<table class="noborder tableforservicepart2'.($cursorline < $nbofservices ? ' boxtablenobottom' : '').'" width="100%">';
- // Definie date debut et fin par defaut
- $dateactstart = $objp->date_debut;
- if (GETPOST('remonth')) {
- $dateactstart = dol_mktime(12, 0, 0, GETPOST('remonth'), GETPOST('reday'), GETPOST('reyear'));
- } elseif (!$dateactstart) {
- $dateactstart = time();
- }
- $dateactend = $objp->date_fin;
- if (GETPOST('endmonth')) {
- $dateactend = dol_mktime(12, 0, 0, GETPOST('endmonth'), GETPOST('endday'), GETPOST('endyear'));
- } elseif (!$dateactend) {
- if ($objp->fk_product > 0) {
- $product = new Product($db);
- $product->fetch($objp->fk_product);
- $dateactend = dol_time_plus_duree(time(), $product->duration_value, $product->duration_unit);
- }
- }
- print '<tr class="oddeven">';
- print '<td class="nohover">'.$langs->trans("DateServiceActivate").'</td><td class="nohover">';
- print $form->selectDate($dateactstart, '', $usehm, $usehm, '', "active", 1, 0);
- print '</td>';
- print '<td class="nohover">'.$langs->trans("DateEndPlanned").'</td><td class="nohover">';
- print $form->selectDate($dateactend, "end", $usehm, $usehm, '', "active", 1, 0);
- print '</td>';
- print '<td class="center nohover">';
- print '</td>';
- print '</tr>';
- print '<tr class="oddeven">';
- print '<td class="nohover">'.$langs->trans("Comment").'</td><td colspan="3" class="nohover" colspan="'.($conf->margin->enabled ? 4 : 3).'"><input type="text" class="minwidth300" name="comment" value="'.dol_escape_htmltag(GETPOST("comment", 'alphanohtml')).'"></td>';
- print '<td class="nohover right">';
- print '<input type="submit" class="button" name="activate" value="'.$langs->trans("Activate").'"> ';
- print '<input type="submit" class="button button-cancel" name="cancel" value="'.$langs->trans("Cancel").'">';
- print '</td>';
- print '</tr>';
- print '</table>';
- print '</form>';
- }
- if ($user->rights->contrat->activer && $action == 'unactivateline' && $object->lines[$cursorline - 1]->id == GETPOST('ligne', 'int')) {
- /**
- * Disable a contract line
- */
- print '<!-- Form to disabled a line -->'."\n";
- print '<form name="closeline" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&ligne='.$object->lines[$cursorline - 1]->id.'" method="post">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="action" value="closeline">';
- print '<table class="noborder tableforservicepart2'.($cursorline < $nbofservices ? ' boxtablenobottom' : '').'" width="100%">';
- // Definie date debut et fin par defaut
- $dateactstart = $objp->date_debut_reelle;
- if (GETPOST('remonth')) {
- $dateactstart = dol_mktime(12, 0, 0, GETPOST('remonth'), GETPOST('reday'), GETPOST('reyear'));
- } elseif (!$dateactstart) {
- $dateactstart = time();
- }
- $dateactend = $objp->date_fin_reelle;
- if (GETPOST('endmonth')) {
- $dateactend = dol_mktime(12, 0, 0, GETPOST('endmonth'), GETPOST('endday'), GETPOST('endyear'));
- } elseif (!$dateactend) {
- if ($objp->fk_product > 0) {
- $product = new Product($db);
- $product->fetch($objp->fk_product);
- $dateactend = dol_time_plus_duree(time(), $product->duration_value, $product->duration_unit);
- }
- }
- $now = dol_now();
- if ($dateactend > $now) {
- $dateactend = $now;
- }
- print '<tr class="oddeven"><td colspan="2" class="nohover">';
- if ($objp->statut >= 4) {
- if ($objp->statut == 4) {
- print $langs->trans("DateEndReal").' ';
- print $form->selectDate($dateactend, "end", $usehm, $usehm, ($objp->date_fin_reelle > 0 ? 0 : 1), "closeline", 1, 1);
- }
- }
- print '</td>';
- print '<td class="center nohover">';
- print '</td></tr>';
- print '<tr class="oddeven">';
- print '<td class="nohover">'.$langs->trans("Comment").'</td><td class="nohover"><input size="70" type="text" class="flat" name="comment" value="'.dol_escape_htmltag(GETPOST('comment', 'alpha')).'"></td>';
- print '<td class="nohover right">';
- print '<input type="submit" class="button" name="close" value="'.$langs->trans("Disable").'"> ';
- print '<input type="submit" class="button button-cancel" name="cancel" value="'.$langs->trans("Cancel").'">';
- print '</td>';
- print '</tr>';
- print '</table>';
- print '</form>';
- }
- print '</div>';
- $cursorline++;
- }
- print '</div>';
- // Form to add new line
- if ($user->rights->contrat->creer && ($object->statut == 0)) {
- $dateSelector = 1;
- print "\n";
- print ' <form name="addproduct" id="addproduct" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.(($action != 'editline') ? '#add' : '#line_'.GETPOST('lineid', 'int')).'" method="POST">
- <input type="hidden" name="token" value="'.newToken().'">
- <input type="hidden" name="action" value="'.(($action != 'editline') ? 'addline' : 'updateline').'">
- <input type="hidden" name="mode" value="">
- <input type="hidden" name="id" value="'.$object->id.'">
- ';
- print '<div class="div-table-responsive-no-min">';
- print '<table id="tablelines" class="noborder noshadow" width="100%">'; // Array with (n*2)+1 lines
- // Form to add new line
- if ($action != 'editline') {
- $forcetoshowtitlelines = 1;
- if (empty($object->multicurrency_code)) {
- $object->multicurrency_code = $conf->currency; // TODO Remove this when multicurrency supported on contracts
- }
- // Add free products/services
- $parameters = array();
- $reshook = $hookmanager->executeHooks('formAddObjectLine', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
- if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- if (empty($reshook))
- $object->formAddObjectLine(1, $mysoc, $soc);
- }
- print '</table>';
- print '</div>';
- print '</form>';
- }
- print dol_get_fiche_end();
- /*
- * Buttons
- */
- if ($user->socid == 0) {
- print '<div class="tabsAction">';
- $parameters = array();
- $reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
- if (empty($reshook)) {
- $params = array(
- 'attr' => array(
- 'title' => '',
- 'class' => 'classfortooltip'
- )
- );
- // Send
- if (empty($user->socid)) {
- if ($object->statut == 1) {
- if ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) || $user->rights->contrat->creer)) {
- print dolGetButtonAction($langs->trans('SendMail'), '', 'default', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=presend&token='.newToken().'&mode=init#formmailbeforetitle', '', true, $params);
- } else {
- print dolGetButtonAction($langs->trans('SendMail'), '', 'default', '#', '', false, $params);
- }
- }
- }
- if ($object->statut == 0 && $nbofservices) {
- if ($user->rights->contrat->creer) {
- print dolGetButtonAction($langs->trans('Validate'), '', 'default', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=valid&token='.newToken(), '', true, $params);
- } else {
- $params['attr']['title'] = $langs->trans("NotEnoughPermissions");
- print dolGetButtonAction($langs->trans('Validate'), '', 'default', '#', '', false, $params);
- }
- }
- if ($object->statut == 1) {
- if ($user->rights->contrat->creer) {
- print dolGetButtonAction($langs->trans('Modify'), '', 'default', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=reopen&token='.newToken(), '', true, $params);
- } else {
- $params['attr']['title'] = $langs->trans("NotEnoughPermissions");
- print dolGetButtonAction($langs->trans('Modify'), '', 'default', '#', '', false, $params);
- }
- }
- if (!empty($conf->commande->enabled) && $object->statut > 0 && $object->nbofservicesclosed < $nbofservices) {
- $langs->load("orders");
- if ($user->rights->commande->creer) {
- print dolGetButtonAction($langs->trans('CreateOrder'), '', 'default', DOL_URL_ROOT.'/commande/card.php?action=create&token='.newToken().'&origin='.$object->element.'&originid='.$object->id.'&socid='.$object->thirdparty->id, '', true, $params);
- } else {
- $params['attr']['title'] = $langs->trans("NotEnoughPermissions");
- print dolGetButtonAction($langs->trans('CreateOrder'), '', 'default', '#', '', false, $params);
- }
- }
- if (isModEnabled('facture') && $object->statut > 0) {
- $langs->load("bills");
- if ($user->rights->facture->creer) {
- print dolGetButtonAction($langs->trans('CreateBill'), '', 'default', DOL_URL_ROOT.'/compta/facture/card.php?action=create&origin='.$object->element.'&originid='.$object->id.'&socid='.$object->thirdparty->id, '', true, $params);
- } else {
- $params['attr']['title'] = $langs->trans("NotEnoughPermissions");
- print dolGetButtonAction($langs->trans('CreateBill'), '', 'default', '#', '', false, $params);
- }
- }
- if ($object->nbofservicesclosed > 0 || $object->nbofserviceswait > 0) {
- if ($user->rights->contrat->activer) {
- print dolGetButtonAction($langs->trans('ActivateAllContracts'), '', 'default', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=activate&token='.newToken(), '', true, $params);
- } else {
- print dolGetButtonAction($langs->trans('ActivateAllContracts'), '', 'default', '#', '', false, $params);
- }
- }
- if ($object->nbofservicesclosed < $nbofservices) {
- if ($user->rights->contrat->desactiver) {
- print dolGetButtonAction($langs->trans('CloseAllContracts'), '', 'default', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=close&token='.newToken(), '', true, $params);
- } else {
- print dolGetButtonAction($langs->trans('CloseAllContracts'), '', 'default', '#', '', false, $params);
- }
- //if (! $numactive)
- //{
- //}
- //else
- //{
- // print '<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" href="#" title="'.$langs->trans("CloseRefusedBecauseOneServiceActive").'">'.$langs->trans("Close").'</a></div>';
- //}
- }
- if (!empty($conf->global->CONTRACT_HIDE_CLOSED_SERVICES_BY_DEFAULT) && $object->nbofservicesclosed > 0) {
- if ($action == 'showclosedlines') {
- print '<div class="inline-block divButAction"><a class="butAction" id="btnhideclosedlines" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=hideclosedlines">'.$langs->trans("HideClosedServices").'</a></div>';
- } else {
- print '<div class="inline-block divButAction"><a class="butAction" id="btnshowclosedlines" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=showclosedlines">'.$langs->trans("ShowClosedServices").'</a></div>';
- }
- }
- // Clone
- if ($user->rights->contrat->creer) {
- print dolGetButtonAction($langs->trans('ToClone'), '', 'default', $_SERVER['PHP_SELF'].'?id='.$object->id.'&socid='.$object->socid.'&action=clone&token='.newToken(), '', true, $params);
- }
- // On peut supprimer entite si
- // - Droit de creer + mode brouillon (erreur creation)
- // - Droit de supprimer
- if (($user->rights->contrat->creer && $object->statut == $object::STATUS_DRAFT) || $user->rights->contrat->supprimer) {
- print dolGetButtonAction($langs->trans('Delete'), '', 'delete', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=delete&token='.newToken(), '', true, $params);
- } else {
- $params['attr']['title'] = $langs->trans("NotAllowed");
- print dolGetButtonAction($langs->trans('Delete'), '', 'delete', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=delete&token='.newToken(), '', false, $params);
- }
- }
- print "</div>";
- }
- // Select mail models is same action as presend
- if (GETPOST('modelselected')) {
- $action = 'presend';
- }
- if ($action != 'presend') {
- print '<div class="fichecenter"><div class="fichehalfleft">';
- /*
- * Generated documents
- */
- $filename = dol_sanitizeFileName($object->ref);
- $filedir = $conf->contrat->multidir_output[$object->entity]."/".dol_sanitizeFileName($object->ref);
- $urlsource = $_SERVER["PHP_SELF"]."?id=".$object->id;
- $genallowed = $user->rights->contrat->lire;
- $delallowed = $user->rights->contrat->creer;
- print $formfile->showdocuments('contract', $filename, $filedir, $urlsource, $genallowed, $delallowed, ($object->model_pdf ? $object->model_pdf : $conf->global->CONTRACT_ADDON_PDF), 1, 0, 0, 28, 0, '', 0, '', $soc->default_lang, '', $object);
- // Show links to link elements
- $linktoelem = $form->showLinkToObjectBlock($object, null, array('contrat'));
- $somethingshown = $form->showLinkedObjectBlock($object, $linktoelem);
- print '</div><div class="fichehalfright">';
- $MAXEVENT = 10;
- $morehtmlcenter = dolGetButtonTitle($langs->trans('SeeAll'), '', 'fa fa-bars imgforviewmode', DOL_URL_ROOT.'/contrat/agenda.php?id='.$object->id);
- // List of actions on element
- include_once DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php';
- $formactions = new FormActions($db);
- $somethingshown = $formactions->showactions($object, 'contract', $socid, 1, 'listactions', $MAXEVENT, '', $morehtmlcenter);
- print '</div></div>';
- }
- // Presend form
- $modelmail = 'contract';
- $defaulttopic = 'SendContractRef';
- $diroutput = $conf->contrat->multidir_output[$object->entity];
- $trackid = 'con'.$object->id;
- include DOL_DOCUMENT_ROOT.'/core/tpl/card_presend.tpl.php';
- }
- }
- llxFooter();
- $db->close();
- ?>
- <?php
- if (!empty($conf->margin->enabled) && $action == 'editline') {
- // TODO Why this ? To manage margin on contracts ?
- ?>
- <script type="text/javascript">
- $(document).ready(function() {
- var idprod = $("input[name='idprod']").val();
- var fournprice = $("input[name='fournprice']").val();
- var token = '<?php echo currentToken(); ?>'; // For AJAX Call we use old 'token' and not 'newtoken'
- if (idprod > 0) {
- $.post('<?php echo DOL_URL_ROOT; ?>/fourn/ajax/getSupplierPrices.php', {
- 'idprod': idprod,
- 'token': token
- }, function(data) {
- if (data.length > 0) {
- var options = '';
- var trouve=false;
- $(data).each(function() {
- options += '<option value="'+this.id+'" price="'+this.price+'"';
- if (fournprice > 0) {
- if (this.id == fournprice) {
- options += ' selected';
- $("#buying_price").val(this.price);
- trouve = true;
- }
- }
- options += '>'+this.label+'</option>';
- });
- options += '<option value=null'+(trouve?'':' selected')+'><?php echo $langs->trans("InputPrice"); ?></option>';
- $("#fournprice").html(options);
- if (trouve) {
- $("#buying_price").hide();
- $("#fournprice").show();
- }
- else {
- $("#buying_price").show();
- }
- $("#fournprice").change(function() {
- var selval = $(this).find('option:selected').attr("price");
- if (selval)
- $("#buying_price").val(selval).hide();
- else
- $('#buying_price').show();
- });
- }
- else {
- $("#fournprice").hide();
- $('#buying_price').show();
- }
- },
- 'json');
- }
- else {
- $("#fournprice").hide();
- $('#buying_price').show();
- }
- });
- </script>
- <?php
- }
|