123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010 |
- <?php
- /* Copyright (C) 2001-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2016 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005 Eric Seigne <eric.seigne@ryxeo.com>
- * Copyright (C) 2005-2015 Regis Houssin <regis.houssin@capnetworks.com>
- * Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
- * Copyright (C) 2006 Auguria SARL <info@auguria.org>
- * Copyright (C) 2010-2015 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2013-2016 Marcos García <marcosgdf@gmail.com>
- * Copyright (C) 2012-2013 Cédric Salvador <csalvador@gpcsolutions.fr>
- * Copyright (C) 2011-2017 Alexandre Spangaro <aspangaro.dolibarr@gmail.com>
- * Copyright (C) 2014 Cédric Gross <c.gross@kreiz-it.fr>
- * Copyright (C) 2014-2015 Ferran Marcet <fmarcet@2byte.es>
- * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
- * Copyright (C) 2015 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
- * Copyright (C) 2016 Charlie Benke <charlie@patas-monkey.com>
- * Copyright (C) 2016 Meziane Sof <virtualsof@yahoo.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 <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/product/card.php
- * \ingroup product
- * \brief Page to show product
- */
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/canvas.class.php';
- require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
- require_once DOL_DOCUMENT_ROOT.'/product/class/html.formproduct.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/genericobject.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/product.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/modules/product/modules_product.php';
- if (! empty($conf->propal->enabled)) require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
- if (! empty($conf->facture->enabled)) require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
- if (! empty($conf->commande->enabled)) require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
- if (! empty($conf->accounting->enabled)) require_once DOL_DOCUMENT_ROOT.'/accountancy/class/html.formventilation.class.php';
- if (! empty($conf->accounting->enabled)) require_once DOL_DOCUMENT_ROOT.'/accountancy/class/accountingaccount.class.php';
- $langs->load("products");
- $langs->load("other");
- if (! empty($conf->stock->enabled)) $langs->load("stocks");
- if (! empty($conf->facture->enabled)) $langs->load("bills");
- if (! empty($conf->productbatch->enabled)) $langs->load("productbatch");
- $mesg=''; $error=0; $errors=array();
- $refalreadyexists=0;
- $id=GETPOST('id', 'int');
- $ref=GETPOST('ref', 'alpha');
- $type=GETPOST('type','int');
- $action=(GETPOST('action','alpha') ? GETPOST('action','alpha') : 'view');
- $cancel=GETPOST('cancel');
- $confirm=GETPOST('confirm','alpha');
- $socid=GETPOST('socid','int');
- $duration_value = GETPOST('duration_value');
- $duration_unit = GETPOST('duration_unit');
- if (! empty($user->societe_id)) $socid=$user->societe_id;
- $object = new Product($db);
- $extrafields = new ExtraFields($db);
- // fetch optionals attributes and labels
- $extralabels=$extrafields->fetch_name_optionals_label($object->table_element);
- if ($id > 0 || ! empty($ref))
- {
- $result = $object->fetch($id, $ref);
- if (! empty($conf->product->enabled)) $upload_dir = $conf->product->multidir_output[$object->entity].'/'.get_exdir(0, 0, 0, 0, $object, 'product').dol_sanitizeFileName($object->ref);
- elseif (! empty($conf->service->enabled)) $upload_dir = $conf->service->multidir_output[$object->entity].'/'.get_exdir(0, 0, 0, 0, $object, 'product').dol_sanitizeFileName($object->ref);
- if (! empty($conf->global->PRODUCT_USE_OLD_PATH_FOR_PHOTO)) // For backward compatiblity, we scan also old dirs
- {
- if (! empty($conf->product->enabled)) $upload_dirold = $conf->product->multidir_output[$object->entity].'/'.substr(substr("000".$object->id, -2),1,1).'/'.substr(substr("000".$object->id, -2),0,1).'/'.$object->id."/photos";
- else $upload_dirold = $conf->service->multidir_output[$object->entity].'/'.substr(substr("000".$object->id, -2),1,1).'/'.substr(substr("000".$object->id, -2),0,1).'/'.$object->id."/photos";
- }
- }
- $modulepart='product';
- // Get object canvas (By default, this is not defined, so standard usage of dolibarr)
- $canvas = !empty($object->canvas)?$object->canvas:GETPOST("canvas");
- $objcanvas=null;
- if (! empty($canvas))
- {
- require_once DOL_DOCUMENT_ROOT.'/core/class/canvas.class.php';
- $objcanvas = new Canvas($db,$action);
- $objcanvas->getCanvas('product','card',$canvas);
- }
- // Security check
- $fieldvalue = (! empty($id) ? $id : (! empty($ref) ? $ref : ''));
- $fieldtype = (! empty($ref) ? 'ref' : 'rowid');
- $result=restrictedArea($user,'produit|service',$fieldvalue,'product&product','','',$fieldtype,$objcanvas);
- // Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
- $hookmanager->initHooks(array('productcard','globalcard'));
- /*
- * Actions
- */
- if ($cancel) $action = '';
- $createbarcode=empty($conf->barcode->enabled)?0:1;
- if (! empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->barcode->creer_advance)) $createbarcode=0;
- $parameters=array('id'=>$id, 'ref'=>$ref, 'objcanvas'=>$objcanvas);
- $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))
- {
- // Type
- if ($action == 'setfk_product_type' && $user->rights->produit->creer)
- {
- $result = $object->setValueFrom('fk_product_type', GETPOST('fk_product_type'), '', null, 'text', '', $user, 'PRODUCT_MODIFY');
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- }
- // Actions to build doc
- $upload_dir = $conf->produit->dir_output;
- $permissioncreate = $user->rights->produit->creer;
- include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php';
-
- include DOL_DOCUMENT_ROOT.'/core/actions_printing.inc.php';
-
- // Barcode type
- if ($action == 'setfk_barcode_type' && $createbarcode)
- {
- $result = $object->setValueFrom('fk_barcode_type', GETPOST('fk_barcode_type'), '', null, 'text', '', $user, 'PRODUCT_MODIFY');
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- }
- // Barcode value
- if ($action == 'setbarcode' && $createbarcode)
- {
- $result=$object->check_barcode(GETPOST('barcode'),GETPOST('barcode_type_code'));
- if ($result >= 0)
- {
- $result = $object->setValueFrom('barcode', GETPOST('barcode'));
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- }
- else
- {
- $langs->load("errors");
- if ($result == -1) $errors[] = 'ErrorBadBarCodeSyntax';
- else if ($result == -2) $errors[] = 'ErrorBarCodeRequired';
- else if ($result == -3) $errors[] = 'ErrorBarCodeAlreadyUsed';
- else $errors[] = 'FailedToValidateBarCode';
- $error++;
- setEventMessages($errors, null, 'errors');
- }
- }
- // Add a product or service
- if ($action == 'add' && ($user->rights->produit->creer || $user->rights->service->creer))
- {
- $error=0;
- if (! GETPOST('label'))
- {
- setEventMessages($langs->trans('ErrorFieldRequired',$langs->transnoentities('Label')), null, 'errors');
- $action = "create";
- $error++;
- }
- if (empty($ref))
- {
- setEventMessages($langs->trans('ErrorFieldRequired',$langs->transnoentities('Ref')), null, 'errors');
- $action = "create";
- $error++;
- }
- if (! empty($duration_value) && empty($duration_unit))
- {
- setEventMessages($langs->trans('ErrorFieldRequired',$langs->transnoentities('Unit')), null, 'errors');
- $action = "create";
- $error++;
- }
-
- if (! $error)
- {
- $units = GETPOST('units', 'int');
- $object->ref = $ref;
- $object->label = GETPOST('label');
- $object->price_base_type = GETPOST('price_base_type');
- if ($object->price_base_type == 'TTC')
- $object->price_ttc = GETPOST('price');
- else
- $object->price = GETPOST('price');
- if ($object->price_base_type == 'TTC')
- $object->price_min_ttc = GETPOST('price_min');
- else
- $object->price_min = GETPOST('price_min');
- $object->tva_tx = str_replace('*','',GETPOST('tva_tx'));
- $object->tva_npr = preg_match('/\*/',GETPOST('tva_tx'))?1:0;
- // local taxes.
- $object->localtax1_tx = get_localtax($object->tva_tx,1);
- $object->localtax2_tx = get_localtax($object->tva_tx,2);
- $object->type = $type;
- $object->status = GETPOST('statut');
- $object->status_buy = GETPOST('statut_buy');
- $object->status_batch = GETPOST('status_batch');
- $object->barcode_type = GETPOST('fk_barcode_type');
- $object->barcode = GETPOST('barcode');
- // Set barcode_type_xxx from barcode_type id
- $stdobject=new GenericObject($db);
- $stdobject->element='product';
- $stdobject->barcode_type=GETPOST('fk_barcode_type');
- $result=$stdobject->fetch_barcode();
- if ($result < 0)
- {
- $error++;
- $mesg='Failed to get bar code type information ';
- setEventMessages($mesg.$stdobject->error, $mesg.$stdobject->errors, 'errors');
- }
- $object->barcode_type_code = $stdobject->barcode_type_code;
- $object->barcode_type_coder = $stdobject->barcode_type_coder;
- $object->barcode_type_label = $stdobject->barcode_type_label;
- $object->description = dol_htmlcleanlastbr(GETPOST('desc'));
- $object->url = GETPOST('url');
- $object->note_private = dol_htmlcleanlastbr(GETPOST('note_private'));
- $object->note = $object->note_private; // deprecated
- $object->customcode = GETPOST('customcode');
- $object->country_id = GETPOST('country_id');
- $object->duration_value = $duration_value;
- $object->duration_unit = $duration_unit;
- $object->seuil_stock_alerte = GETPOST('seuil_stock_alerte')?GETPOST('seuil_stock_alerte'):0;
- $object->desiredstock = GETPOST('desiredstock')?GETPOST('desiredstock'):0;
- $object->canvas = GETPOST('canvas');
- $object->weight = GETPOST('weight');
- $object->weight_units = GETPOST('weight_units');
- $object->length = GETPOST('size');
- $object->length_units = GETPOST('size_units');
- $object->width = GETPOST('sizewidth');
- $object->height = GETPOST('sizeheight');
- $object->surface = GETPOST('surface');
- $object->surface_units = GETPOST('surface_units');
- $object->volume = GETPOST('volume');
- $object->volume_units = GETPOST('volume_units');
- $object->finished = GETPOST('finished');
- $object->fk_unit = GETPOST('units');
- $accountancy_code_sell = GETPOST('accountancy_code_sell');
- $accountancy_code_buy = GETPOST('accountancy_code_buy');
- if ($accountancy_code_sell <= 0) { $object->accountancy_code_sell = ''; } else { $object->accountancy_code_sell = $accountancy_code_sell; }
- if ($accountancy_code_buy <= 0) { $object->accountancy_code_buy = ''; } else { $object->accountancy_code_buy = $accountancy_code_buy; }
- // MultiPrix
- if (! empty($conf->global->PRODUIT_MULTIPRICES))
- {
- for($i=2;$i<=$conf->global->PRODUIT_MULTIPRICES_LIMIT;$i++)
- {
- if (isset($_POST["price_".$i]))
- {
- $object->multiprices["$i"] = price2num($_POST["price_".$i],'MU');
- $object->multiprices_base_type["$i"] = $_POST["multiprices_base_type_".$i];
- }
- else
- {
- $object->multiprices["$i"] = "";
- }
- }
- }
- // Fill array 'array_options' with data from add form
- $ret = $extrafields->setOptionalsFromPost($extralabels,$object);
- if ($ret < 0) $error++;
- if (! $error)
- {
- $id = $object->create($user);
- }
- if ($id > 0)
- {
- // Category association
- $categories = GETPOST('categories');
- $object->setCategories($categories);
- header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
- exit;
- }
- else
- {
- if (count($object->errors)) setEventMessages($object->error, $object->errors, 'errors');
- else setEventMessages($langs->trans($object->error), null, 'errors');
- $action = "create";
- }
- }
- }
- // Update a product or service
- if ($action == 'update' && ($user->rights->produit->creer || $user->rights->service->creer))
- {
- if (GETPOST('cancel'))
- {
- $action = '';
- }
- else
- {
- if ($object->id > 0)
- {
- $object->oldcopy= clone $object;
- $object->ref = $ref;
- $object->label = GETPOST('label');
- $object->description = dol_htmlcleanlastbr(GETPOST('desc'));
- $object->url = GETPOST('url');
- if (! empty($conf->global->MAIN_DISABLE_NOTES_TAB))
- {
- $object->note_private = dol_htmlcleanlastbr(GETPOST('note_private'));
- $object->note = $object->note_private;
- }
- $object->customcode = GETPOST('customcode');
- $object->country_id = GETPOST('country_id');
- $object->status = GETPOST('statut');
- $object->status_buy = GETPOST('statut_buy');
- $object->status_batch = GETPOST('status_batch');
- // removed from update view so GETPOST always empty
- /*
- $object->seuil_stock_alerte = GETPOST('seuil_stock_alerte');
- $object->desiredstock = GETPOST('desiredstock');
- */
- $object->duration_value = GETPOST('duration_value');
- $object->duration_unit = GETPOST('duration_unit');
- $object->canvas = GETPOST('canvas');
- $object->weight = GETPOST('weight');
- $object->weight_units = GETPOST('weight_units');
- $object->length = GETPOST('size');
- $object->length_units = GETPOST('size_units');
- $object->width = GETPOST('sizewidth');
- $object->height = GETPOST('sizeheight');
- $object->surface = GETPOST('surface');
- $object->surface_units = GETPOST('surface_units');
- $object->volume = GETPOST('volume');
- $object->volume_units = GETPOST('volume_units');
- $object->finished = GETPOST('finished');
- $units = GETPOST('units', 'int');
- if ($units > 0) {
- $object->fk_unit = $units;
- } else {
- $object->fk_unit = null;
- }
- $object->barcode_type = GETPOST('fk_barcode_type');
- $object->barcode = GETPOST('barcode');
- // Set barcode_type_xxx from barcode_type id
- $stdobject=new GenericObject($db);
- $stdobject->element='product';
- $stdobject->barcode_type=GETPOST('fk_barcode_type');
- $result=$stdobject->fetch_barcode();
- if ($result < 0)
- {
- $error++;
- $mesg='Failed to get bar code type information ';
- setEventMessages($mesg.$stdobject->error, $mesg.$stdobject->errors, 'errors');
- }
- $object->barcode_type_code = $stdobject->barcode_type_code;
- $object->barcode_type_coder = $stdobject->barcode_type_coder;
- $object->barcode_type_label = $stdobject->barcode_type_label;
- $accountancy_code_sell = GETPOST('accountancy_code_sell');
- $accountancy_code_buy = GETPOST('accountancy_code_buy');
- if ($accountancy_code_sell <= 0) { $object->accountancy_code_sell = ''; } else { $object->accountancy_code_sell = $accountancy_code_sell; }
- if ($accountancy_code_buy <= 0) { $object->accountancy_code_buy = ''; } else { $object->accountancy_code_buy = $accountancy_code_buy; }
- // Fill array 'array_options' with data from add form
- $ret = $extrafields->setOptionalsFromPost($extralabels,$object);
- if ($ret < 0) $error++;
- if (! $error && $object->check())
- {
- if ($object->update($object->id, $user) > 0)
- {
- // Category association
- $categories = GETPOST('categories');
- $object->setCategories($categories);
- $action = 'view';
- }
- else
- {
- if (count($object->errors)) setEventMessages($object->error, $object->errors, 'errors');
- else setEventMessages($langs->trans($object->error), null, 'errors');
- $action = 'edit';
- }
- }
- else
- {
- if (count($object->errors)) setEventMessages($object->error, $object->errors, 'errors');
- else setEventMessages($langs->trans("ErrorProductBadRefOrLabel"), null, 'errors');
- $action = 'edit';
- }
- }
- }
- }
- // Action clone object
- if ($action == 'confirm_clone' && $confirm != 'yes') { $action=''; }
- if ($action == 'confirm_clone' && $confirm == 'yes' && ($user->rights->produit->creer || $user->rights->service->creer))
- {
- if (! GETPOST('clone_content') && ! GETPOST('clone_prices') )
- {
- setEventMessages($langs->trans("NoCloneOptionsSpecified"), null, 'errors');
- }
- else
- {
- $db->begin();
- $originalId = $id;
- if ($object->id > 0)
- {
- $object->ref = GETPOST('clone_ref');
- $object->status = 0;
- $object->status_buy = 0;
- $object->id = null;
- $object->barcode = -1;
- if ($object->check())
- {
- $id = $object->create($user);
- if ($id > 0)
- {
- if (GETPOST('clone_composition'))
- {
- $result = $object->clone_associations($originalId, $id);
- if ($result < 1)
- {
- $db->rollback();
- setEventMessages($langs->trans('ErrorProductClone'), null, 'errors');
- header("Location: ".$_SERVER["PHP_SELF"]."?id=".$originalId);
- exit;
- }
- }
- // $object->clone_fournisseurs($originalId, $id);
- $db->commit();
- $db->close();
- header("Location: ".$_SERVER["PHP_SELF"]."?id=".$id);
- exit;
- }
- else
- {
- $id=$originalId;
- if ($object->error == 'ErrorProductAlreadyExists')
- {
- $db->rollback();
- $refalreadyexists++;
- $action = "";
- $mesg=$langs->trans("ErrorProductAlreadyExists",$object->ref);
- $mesg.=' <a href="'.$_SERVER["PHP_SELF"].'?ref='.$object->ref.'">'.$langs->trans("ShowCardHere").'</a>.';
- setEventMessages($mesg, null, 'errors');
- $object->fetch($id);
- }
- else
- {
- $db->rollback();
- if (count($object->errors))
- {
- setEventMessages($object->error, $object->errors, 'errors');
- dol_print_error($db,$object->errors);
- }
- else
- {
- setEventMessages($langs->trans($object->error), null, 'errors');
- dol_print_error($db,$object->error);
- }
- }
- }
- }
- }
- else
- {
- $db->rollback();
- dol_print_error($db,$object->error);
- }
- }
- }
- // Delete a product
- if ($action == 'confirm_delete' && $confirm != 'yes') { $action=''; }
- if ($action == 'confirm_delete' && $confirm == 'yes')
- {
- if (($object->type == Product::TYPE_PRODUCT && $user->rights->produit->supprimer) || ($object->type == Product::TYPE_SERVICE && $user->rights->service->supprimer))
- {
- $result = $object->delete(DolibarrApiAccess::$user);
- }
- if ($result > 0)
- {
- header('Location: '.DOL_URL_ROOT.'/product/list.php?type='.$object->type.'&delprod='.urlencode($object->ref));
- exit;
- }
- else
- {
- setEventMessages($langs->trans($object->error), null, 'errors');
- $reload = 0;
- $action='';
- }
- }
- // Add product into object
- if ($object->id > 0 && $action == 'addin')
- {
- $thirpdartyid =0 ;
- if (GETPOST('propalid') > 0)
- {
- $propal = new Propal($db);
- $result=$propal->fetch(GETPOST('propalid'));
- if ($result <= 0)
- {
- dol_print_error($db,$propal->error);
- exit;
- }
- $thirpdartyid = $propal->socid;
- }
- elseif (GETPOST('commandeid') > 0)
- {
- $commande = new Commande($db);
- $result=$commande->fetch(GETPOST('commandeid'));
- if ($result <= 0)
- {
- dol_print_error($db,$commande->error);
- exit;
- }
- $thirpdartyid = $commande->socid;
- }
- elseif (GETPOST('factureid') > 0)
- {
- $facture = new Facture($db);
- $result=$facture->fetch(GETPOST('factureid'));
- if ($result <= 0)
- {
- dol_print_error($db,$facture->error);
- exit;
- }
- $thirpdartyid = $facture->socid;
- }
- if ( $thirpdartyid > 0) {
- $soc = new Societe($db);
- $result = $soc->fetch($thirpdartyid);
- if ($result <= 0) {
- dol_print_error($db, $soc->error);
- exit;
- }
- $desc = $object->description;
- $tva_tx = get_default_tva($mysoc, $soc, $object->id);
- $tva_npr = get_default_npr($mysoc, $soc, $object->id);
- if (empty($tva_tx)) $tva_npr=0;
- $localtax1_tx = get_localtax($tva_tx, 1, $soc, $mysoc, $tva_npr);
- $localtax2_tx = get_localtax($tva_tx, 2, $soc, $mysoc, $tva_npr);
- $pu_ht = $object->price;
- $pu_ttc = $object->price_ttc;
- $price_base_type = $object->price_base_type;
- // If multiprice
- if ($conf->global->PRODUIT_MULTIPRICES && $soc->price_level) {
- $pu_ht = $object->multiprices[$soc->price_level];
- $pu_ttc = $object->multiprices_ttc[$soc->price_level];
- $price_base_type = $object->multiprices_base_type[$soc->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' => $object->id, 't.fk_soc' => $soc->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;
- }
- }
- }
- $tmpvat = price2num(preg_replace('/\s*\(.*\)/', '', $tva_tx));
- $tmpprodvat = price2num(preg_replace('/\s*\(.*\)/', '', $prod->tva_tx));
-
- // 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');
- }
- }
-
- if (GETPOST('propalid') > 0) {
- // Define cost price for margin calculation
- $buyprice=0;
- if (($result = $propal->defineBuyPrice($pu_ht, GETPOST('remise_percent'), $object->id)) < 0)
- {
- dol_syslog($langs->trans('FailedToGetCostPrice'));
- setEventMessage($langs->trans('FailedToGetCostPrice'), 'errors');
- }
- else
- {
- $buyprice = $result;
- }
-
- $result = $propal->addline(
- $desc,
- $pu_ht,
- GETPOST('qty'),
- $tva_tx,
- $localtax1_tx, // localtax1
- $localtax2_tx, // localtax2
- $object->id,
- GETPOST('remise_percent'),
- $price_base_type,
- $pu_ttc,
- 0,
- 0,
- -1,
- 0,
- 0,
- 0,
- $buyprice,
- '',
- '',
- '',
- 0,
- $object->fk_unit
- );
- if ($result > 0) {
- header("Location: " . DOL_URL_ROOT . "/comm/propal/card.php?id=" . $propal->id);
- return;
- }
- setEventMessages($langs->trans("ErrorUnknown") . ": $result", null, 'errors');
- } elseif (GETPOST('commandeid') > 0) {
- // Define cost price for margin calculation
- $buyprice=0;
- if (($result = $commande->defineBuyPrice($pu_ht, GETPOST('remise_percent'), $object->id)) < 0)
- {
- dol_syslog($langs->trans('FailedToGetCostPrice'));
- setEventMessage($langs->trans('FailedToGetCostPrice'), 'errors');
- }
- else
- {
- $buyprice = $result;
- }
-
- $result = $commande->addline(
- $desc,
- $pu_ht,
- GETPOST('qty'),
- $tva_tx,
- $localtax1_tx, // localtax1
- $localtax2_tx, // localtax2
- $object->id,
- GETPOST('remise_percent'),
- '',
- '',
- $price_base_type,
- $pu_ttc,
- '',
- '',
- 0,
- -1,
- 0,
- 0,
- null,
- $buyprice,
- '',
- 0,
- $object->fk_unit
- );
- if ($result > 0) {
- header("Location: " . DOL_URL_ROOT . "/commande/card.php?id=" . $commande->id);
- exit;
- }
- } elseif (GETPOST('factureid') > 0) {
- // Define cost price for margin calculation
- $buyprice=0;
- if (($result = $facture->defineBuyPrice($pu_ht, GETPOST('remise_percent'), $object->id)) < 0)
- {
- dol_syslog($langs->trans('FailedToGetCostPrice'));
- setEventMessage($langs->trans('FailedToGetCostPrice'), 'errors');
- }
- else
- {
- $buyprice = $result;
- }
- $result = $facture->addline(
- $desc,
- $pu_ht,
- GETPOST('qty'),
- $tva_tx,
- $localtax1_tx,
- $localtax2_tx,
- $object->id,
- GETPOST('remise_percent'),
- '',
- '',
- '',
- '',
- '',
- $price_base_type,
- $pu_ttc,
- Facture::TYPE_STANDARD,
- -1,
- 0,
- '',
- 0,
- 0,
- null,
- $buyprice,
- '',
- 0,
- 100,
- '',
- $object->fk_unit
- );
- if ($result > 0) {
- header("Location: " . DOL_URL_ROOT . "/compta/facture/card.php?facid=" . $facture->id);
- exit;
- }
- }
- }
- else {
- $action="";
- setEventMessages($langs->trans("WarningSelectOneDocument"), null, 'warnings');
- }
- }
- }
- /*
- * View
- */
- $title = $langs->trans('ProductServiceCard');
- $helpurl = '';
- $shortlabel = dol_trunc($object->label,16);
- if (GETPOST("type") == '0' || ($object->type == Product::TYPE_PRODUCT))
- {
- $title = $langs->trans('Product')." ". $shortlabel ." - ".$langs->trans('Card');
- $helpurl='EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos';
- }
- if (GETPOST("type") == '1' || ($object->type == Product::TYPE_SERVICE))
- {
- $title = $langs->trans('Service')." ". $shortlabel ." - ".$langs->trans('Card');
- $helpurl='EN:Module_Services_En|FR:Module_Services|ES:Módulo_Servicios';
- }
- llxHeader('', $title, $helpurl);
- $form = new Form($db);
- $formfile = new FormFile($db);
- $formproduct = new FormProduct($db);
- if (! empty($conf->accounting->enabled)) $formaccountancy = New FormVentilation($db);
- // Load object modBarCodeProduct
- $res=0;
- if (! empty($conf->barcode->enabled) && ! empty($conf->global->BARCODE_PRODUCT_ADDON_NUM))
- {
- $module=strtolower($conf->global->BARCODE_PRODUCT_ADDON_NUM);
- $dirbarcode=array_merge(array('/core/modules/barcode/'),$conf->modules_parts['barcode']);
- foreach ($dirbarcode as $dirroot)
- {
- $res=dol_include_once($dirroot.$module.'.php');
- if ($res) break;
- }
- if ($res > 0)
- {
- $modBarCodeProduct =new $module();
- }
- }
- if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action))
- {
- // -----------------------------------------
- // When used with CANVAS
- // -----------------------------------------
- if (empty($object->error) && $id)
- {
- $object = new Product($db);
- $result=$object->fetch($id);
- if ($result <= 0) dol_print_error('',$object->error);
- }
- $objcanvas->assign_values($action, $object->id, $object->ref); // Set value for templates
- $objcanvas->display_canvas($action); // Show template
- }
- else
- {
- // -----------------------------------------
- // When used in standard mode
- // -----------------------------------------
- if ($action == 'create' && ($user->rights->produit->creer || $user->rights->service->creer))
- {
- //WYSIWYG Editor
- require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
- // Load object modCodeProduct
- $module=(! empty($conf->global->PRODUCT_CODEPRODUCT_ADDON)?$conf->global->PRODUCT_CODEPRODUCT_ADDON:'mod_codeproduct_leopard');
- if (substr($module, 0, 16) == 'mod_codeproduct_' && substr($module, -3) == 'php')
- {
- $module = substr($module, 0, dol_strlen($module)-4);
- }
- $result=dol_include_once('/core/modules/product/'.$module.'.php');
- if ($result > 0)
- {
- $modCodeProduct = new $module();
- }
- print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="action" value="add">';
- print '<input type="hidden" name="type" value="'.$type.'">'."\n";
- if (! empty($modCodeProduct->code_auto))
- print '<input type="hidden" name="code_auto" value="1">';
- if (! empty($modBarCodeProduct->code_auto))
- print '<input type="hidden" name="barcode_auto" value="1">';
- if ($type==1) $title=$langs->trans("NewService");
- else $title=$langs->trans("NewProduct");
- $linkback="";
- print load_fiche_titre($title,$linkback,'title_products.png');
- dol_fiche_head('');
- print '<table class="border centpercent">';
-
- print '<tr>';
- $tmpcode='';
- if (! empty($modCodeProduct->code_auto)) $tmpcode=$modCodeProduct->getNextValue($object,$type);
- print '<td class="titlefieldcreate fieldrequired">'.$langs->trans("Ref").'</td><td colspan="3"><input name="ref" class="maxwidth200" maxlength="128" value="'.dol_escape_htmltag(GETPOST('ref')?GETPOST('ref'):$tmpcode).'">';
- if ($refalreadyexists)
- {
- print $langs->trans("RefAlreadyExists");
- }
- print '</td></tr>';
- // Label
- print '<tr><td class="fieldrequired">'.$langs->trans("Label").'</td><td colspan="3"><input name="label" class="minwidth300 maxwidth400onsmartphone" maxlength="255" value="'.dol_escape_htmltag(GETPOST('label')).'"></td></tr>';
- // On sell
- print '<tr><td class="fieldrequired">'.$langs->trans("Status").' ('.$langs->trans("Sell").')</td><td colspan="3">';
- $statutarray=array('1' => $langs->trans("OnSell"), '0' => $langs->trans("NotOnSell"));
- print $form->selectarray('statut',$statutarray,GETPOST('statut'));
- print '</td></tr>';
- // To buy
- print '<tr><td class="fieldrequired">'.$langs->trans("Status").' ('.$langs->trans("Buy").')</td><td colspan="3">';
- $statutarray=array('1' => $langs->trans("ProductStatusOnBuy"), '0' => $langs->trans("ProductStatusNotOnBuy"));
- print $form->selectarray('statut_buy',$statutarray,GETPOST('statut_buy'));
- print '</td></tr>';
- // Batch number management
- if (! empty($conf->productbatch->enabled))
- {
- print '<tr><td>'.$langs->trans("ManageLotSerial").'</td><td colspan="3">';
- $statutarray=array('0' => $langs->trans("ProductStatusNotOnBatch"), '1' => $langs->trans("ProductStatusOnBatch"));
- print $form->selectarray('status_batch',$statutarray,GETPOST('status_batch'));
- print '</td></tr>';
- }
- $showbarcode=empty($conf->barcode->enabled)?0:1;
- if (! empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->barcode->lire_advance)) $showbarcode=0;
- if ($showbarcode)
- {
- print '<tr><td>'.$langs->trans('BarcodeType').'</td><td>';
- if (isset($_POST['fk_barcode_type']))
- {
- $fk_barcode_type=GETPOST('fk_barcode_type');
- }
- else
- {
- if (empty($fk_barcode_type) && ! empty($conf->global->PRODUIT_DEFAULT_BARCODE_TYPE)) $fk_barcode_type = $conf->global->PRODUIT_DEFAULT_BARCODE_TYPE;
- }
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formbarcode.class.php';
- $formbarcode = new FormBarCode($db);
- print $formbarcode->select_barcode_type($fk_barcode_type, 'fk_barcode_type', 1);
- print '</td><td>'.$langs->trans("BarcodeValue").'</td><td>';
- $tmpcode=isset($_POST['barcode'])?GETPOST('barcode'):$object->barcode;
- if (empty($tmpcode) && ! empty($modBarCodeProduct->code_auto)) $tmpcode=$modBarCodeProduct->getNextValue($object,$type);
- print '<input class="maxwidth100" type="text" name="barcode" value="'.dol_escape_htmltag($tmpcode).'">';
- print '</td></tr>';
- }
- // Description (used in invoice, propal...)
- print '<tr><td class="tdtop">'.$langs->trans("Description").'</td><td colspan="3">';
- $doleditor = new DolEditor('desc', GETPOST('desc'), '', 160, 'dolibarr_details', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, ROWS_4, '90%');
- $doleditor->Create();
- print "</td></tr>";
- // Public URL
- print '<tr><td>'.$langs->trans("PublicUrl").'</td><td colspan="3">';
- print '<input type="text" name="url" class="quatrevingtpercent" value="'.GETPOST('url').'">';
- print '</td></tr>';
- // Stock min level
- if ($type != 1 && ! empty($conf->stock->enabled))
- {
- print '<tr><td>'.$langs->trans("StockLimit").'</td><td>';
- print '<input name="seuil_stock_alerte" class="maxwidth50" value="'.GETPOST('seuil_stock_alerte').'">';
- print '</td>';
- // Stock desired level
- print '<td>'.$langs->trans("DesiredStock").'</td><td>';
- print '<input name="desiredstock" class="maxwidth50" value="'.GETPOST('desiredstock').'">';
- print '</td></tr>';
- }
- else
- {
- print '<input name="seuil_stock_alerte" type="hidden" value="0">';
- print '<input name="desiredstock" type="hidden" value="0">';
- }
- // Nature
- if ($type != 1)
- {
- print '<tr><td>'.$langs->trans("Nature").'</td><td colspan="3">';
- $statutarray=array('1' => $langs->trans("Finished"), '0' => $langs->trans("RowMaterial"));
- print $form->selectarray('finished',$statutarray,GETPOST('finished'),1);
- print '</td></tr>';
- }
- // Duration
- if ($type == 1)
- {
- print '<tr><td>' . $langs->trans("Duration") . '</td><td colspan="3"><input name="duration_value" size="6" maxlength="5" value="' . $duration_value . '"> ';
- print '<input name="duration_unit" type="radio" value="h">'.$langs->trans("Hour").' ';
- print '<input name="duration_unit" type="radio" value="d">'.$langs->trans("Day").' ';
- print '<input name="duration_unit" type="radio" value="w">'.$langs->trans("Week").' ';
- print '<input name="duration_unit" type="radio" value="m">'.$langs->trans("Month").' ';
- print '<input name="duration_unit" type="radio" value="y">'.$langs->trans("Year").' ';
- print '</td></tr>';
- }
- if ($type != 1) // Le poids et le volume ne concerne que les produits et pas les services
- {
- // Weight
- print '<tr><td>'.$langs->trans("Weight").'</td><td colspan="3">';
- print '<input name="weight" size="4" value="'.GETPOST('weight').'">';
- print $formproduct->select_measuring_units("weight_units","weight");
- print '</td></tr>';
- // Length
- if (empty($conf->global->PRODUCT_DISABLE_SIZE))
- {
- print '<tr><td>'.$langs->trans("Length").' x '.$langs->trans("Width").' x '.$langs->trans("Height").'</td><td colspan="3">';
- print '<input name="size" size="4" value="'.GETPOST('size').'"> x ';
- print '<input name="sizewidth" size="4" value="'.GETPOST('sizewidth').'"> x ';
- print '<input name="sizeheight" size="4" value="'.GETPOST('sizeheight').'">';
- print $formproduct->select_measuring_units("size_units","size");
- print '</td></tr>';
- }
- if (empty($conf->global->PRODUCT_DISABLE_SURFACE))
- {
- // Surface
- print '<tr><td>'.$langs->trans("Surface").'</td><td colspan="3">';
- print '<input name="surface" size="4" value="'.GETPOST('surface').'">';
- print $formproduct->select_measuring_units("surface_units","surface");
- print '</td></tr>';
- }
- // Volume
- print '<tr><td>'.$langs->trans("Volume").'</td><td colspan="3">';
- print '<input name="volume" size="4" value="'.GETPOST('volume').'">';
- print $formproduct->select_measuring_units("volume_units","volume");
- print '</td></tr>';
- }
- // Units
- if($conf->global->PRODUCT_USE_UNITS)
- {
- print '<tr><td>'.$langs->trans('DefaultUnitToShow').'</td>';
- print '<td colspan="3">';
- print $form->selectUnits('','units');
- print '</td></tr>';
- }
- // Custom code
- if (empty($conf->global->PRODUCT_DISABLE_CUSTOM_INFO) && empty($type))
- {
- print '<tr><td>'.$langs->trans("CustomCode").'</td><td><input name="customcode" class="maxwidth100onsmartphone" value="'.GETPOST('customcode').'"></td>';
- // Origin country
- print '<td>'.$langs->trans("CountryOrigin").'</td><td>';
- print $form->select_country(GETPOST('country_id','int'),'country_id');
- if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
- print '</td></tr>';
- }
- // Other attributes
- $parameters=array('colspan' => 3);
- $reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action); // Note that $action and $object may have been modified by hook
- if (empty($reshook) && ! empty($extrafields->attribute_label))
- {
- print $object->showOptionals($extrafields,'edit',$parameters);
- }
- // Note (private, no output on invoices, propales...)
- //if (! empty($conf->global->MAIN_DISABLE_NOTES_TAB)) available in create mode
- //{
- print '<tr><td class="tdtop">'.$langs->trans("NoteNotVisibleOnBill").'</td><td colspan="3">';
-
- // We use dolibarr_details as type of DolEditor here, because we must not accept images as description is included into PDF and not accepted by TCPDF.
- $doleditor = new DolEditor('note_private', GETPOST('note_private'), '', 140, 'dolibarr_details', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, ROWS_8, '90%');
- $doleditor->Create();
-
- print "</td></tr>";
- //}
-
- if($conf->categorie->enabled) {
- // Categories
- print '<tr><td>'.$langs->trans("Categories").'</td><td colspan="3">';
- $cate_arbo = $form->select_all_categories(Categorie::TYPE_PRODUCT, '', 'parent', 64, 0, 1);
- print $form->multiselectarray('categories', $cate_arbo, $arrayselected, '', 0, '', 0, '100%');
- print "</td></tr>";
- }
- print '</table>';
- print '<br>';
- if (! empty($conf->global->PRODUIT_MULTIPRICES))
- {
- // We do no show price array on create when multiprices enabled.
- // We must set them on prices tab.
- }
- else
- {
- print '<table class="border" width="100%">';
- // Price
- print '<tr><td class="titlefieldcreate">'.$langs->trans("SellingPrice").'</td>';
- print '<td><input name="price" class="maxwidth50" value="'.$object->price.'">';
- print $form->selectPriceBaseType($object->price_base_type, "price_base_type");
- print '</td></tr>';
- // Min price
- print '<tr><td>'.$langs->trans("MinPrice").'</td>';
- print '<td><input name="price_min" class="maxwidth50" value="'.$object->price_min.'">';
- print '</td></tr>';
- // VAT
- print '<tr><td>'.$langs->trans("VATRate").'</td><td>';
- print $form->load_tva("tva_tx",-1,$mysoc,'');
- print '</td></tr>';
- print '</table>';
- print '<br>';
- }
- // Accountancy codes
- print '<table class="border" width="100%">';
- if (! empty($conf->accounting->enabled))
- {
- // Accountancy_code_sell
- print '<tr><td class="titlefieldcreate">'.$langs->trans("ProductAccountancySellCode").'</td>';
- print '<td>';
- print $formaccountancy->select_account(GETPOST('accountancy_code_sell'), 'accountancy_code_sell', 1, null, 1, 1, '');
- print '</td></tr>';
- // Accountancy_code_buy
- print '<tr><td>'.$langs->trans("ProductAccountancyBuyCode").'</td>';
- print '<td>';
- print $formaccountancy->select_account(GETPOST('accountancy_code_buy'), 'accountancy_code_buy', 1, null, 1, 1, '');
- print '</td></tr>';
- }
- else // For external software
- {
- // Accountancy_code_sell
- print '<tr><td class="titlefieldcreate">'.$langs->trans("ProductAccountancySellCode").'</td>';
- print '<td class="maxwidthonsmartphone"><input class="minwidth100" name="accountancy_code_sell" value="'.$object->accountancy_code_sell.'">';
- print '</td></tr>';
- // Accountancy_code_buy
- print '<tr><td>'.$langs->trans("ProductAccountancyBuyCode").'</td>';
- print '<td class="maxwidthonsmartphone"><input class="minwidth100" name="accountancy_code_buy" value="'.$object->accountancy_code_buy.'">';
- print '</td></tr>';
- }
- print '</table>';
- dol_fiche_end();
- print '<div class="center">';
- print '<input type="submit" class="button" value="' . $langs->trans("Create") . '">';
- print ' ';
- print '<input type="button" class="button" value="' . $langs->trans("Cancel") . '" onClick="javascript:history.go(-1)">';
- print '</div>';
- print '</form>';
- }
- /*
- * Product card
- */
- else if ($object->id > 0)
- {
- // Fiche en mode edition
- if ($action == 'edit' && ((($object->type == Product::TYPE_PRODUCT && $user->rights->produit->creer) || ($object->type == Product::TYPE_SERVICE && $user->rights->service->creer))))
- {
- //WYSIWYG Editor
- require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
- $type = $langs->trans('Product');
- if ($object->isService()) $type = $langs->trans('Service');
- //print load_fiche_titre($langs->trans('Modify').' '.$type.' : '.(is_object($object->oldcopy)?$object->oldcopy->ref:$object->ref), "");
- // Main official, simple, and not duplicated code
- print '<form action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'" method="POST">'."\n";
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="action" value="update">';
- print '<input type="hidden" name="id" value="'.$object->id.'">';
- print '<input type="hidden" name="canvas" value="'.$object->canvas.'">';
- $head=product_prepare_head($object);
- $titre=$langs->trans("CardProduct".$object->type);
- $picto=($object->type== Product::TYPE_SERVICE?'service':'product');
- dol_fiche_head($head, 'card', $titre, 0, $picto);
- print '<table class="border allwidth">';
- // Ref
- print '<tr><td class="titlefield fieldrequired">'.$langs->trans("Ref").'</td><td colspan="3"><input name="ref" class="maxwidth200" maxlength="128" value="'.dol_escape_htmltag($object->ref).'"></td></tr>';
- // Label
- print '<tr><td class="fieldrequired">'.$langs->trans("Label").'</td><td colspan="3"><input name="label" class="minwidth300 maxwidth400onsmartphone" maxlength="255" value="'.dol_escape_htmltag($object->label).'"></td></tr>';
- // Status To sell
- print '<tr><td class="fieldrequired">'.$langs->trans("Status").' ('.$langs->trans("Sell").')</td><td colspan="3">';
- print '<select class="flat" name="statut">';
- if ($object->status)
- {
- print '<option value="1" selected>'.$langs->trans("OnSell").'</option>';
- print '<option value="0">'.$langs->trans("NotOnSell").'</option>';
- }
- else
- {
- print '<option value="1">'.$langs->trans("OnSell").'</option>';
- print '<option value="0" selected>'.$langs->trans("NotOnSell").'</option>';
- }
- print '</select>';
- print '</td></tr>';
- // Status To Buy
- print '<tr><td class="fieldrequired">'.$langs->trans("Status").' ('.$langs->trans("Buy").')</td><td colspan="3">';
- print '<select class="flat" name="statut_buy">';
- if ($object->status_buy)
- {
- print '<option value="1" selected>'.$langs->trans("ProductStatusOnBuy").'</option>';
- print '<option value="0">'.$langs->trans("ProductStatusNotOnBuy").'</option>';
- }
- else
- {
- print '<option value="1">'.$langs->trans("ProductStatusOnBuy").'</option>';
- print '<option value="0" selected>'.$langs->trans("ProductStatusNotOnBuy").'</option>';
- }
- print '</select>';
- print '</td></tr>';
- // Batch number managment
- if ($conf->productbatch->enabled) {
- print '<tr><td>'.$langs->trans("ManageLotSerial").'</td><td colspan="3">';
- $statutarray=array('0' => $langs->trans("ProductStatusNotOnBatch"), '1' => $langs->trans("ProductStatusOnBatch"));
- print $form->selectarray('status_batch',$statutarray,$object->status_batch);
- print '</td></tr>';
- }
- // Barcode
- $showbarcode=empty($conf->barcode->enabled)?0:1;
- if (! empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->barcode->lire_advance)) $showbarcode=0;
- if ($showbarcode)
- {
- print '<tr><td>'.$langs->trans('BarcodeType').'</td><td>';
- if (isset($_POST['fk_barcode_type']))
- {
- $fk_barcode_type=GETPOST('fk_barcode_type');
- }
- else
- {
- $fk_barcode_type=$object->barcode_type;
- if (empty($fk_barcode_type) && ! empty($conf->global->PRODUIT_DEFAULT_BARCODE_TYPE)) $fk_barcode_type = $conf->global->PRODUIT_DEFAULT_BARCODE_TYPE;
- }
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formbarcode.class.php';
- $formbarcode = new FormBarCode($db);
- print $formbarcode->select_barcode_type($fk_barcode_type, 'fk_barcode_type', 1);
- print '</td><td>'.$langs->trans("BarcodeValue").'</td><td>';
- $tmpcode=isset($_POST['barcode'])?GETPOST('barcode'):$object->barcode;
- if (empty($tmpcode) && ! empty($modBarCodeProduct->code_auto)) $tmpcode=$modBarCodeProduct->getNextValue($object,$type);
- print '<input size="40" class="maxwidthonsmartphone" type="text" name="barcode" value="'.dol_escape_htmltag($tmpcode).'">';
- print '</td></tr>';
- }
- // Description (used in invoice, propal...)
- print '<tr><td class="tdtop">'.$langs->trans("Description").'</td><td colspan="3">';
- // We use dolibarr_details as type of DolEditor here, because we must not accept images as description is included into PDF and not accepted by TCPDF.
- $doleditor = new DolEditor('desc', $object->description, '', 160, 'dolibarr_details', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, ROWS_4, '90%');
- $doleditor->Create();
- print "</td></tr>";
- print "\n";
- // Public Url
- print '<tr><td>'.$langs->trans("PublicUrl").'</td><td colspan="3">';
- print '<input type="text" name="url" class="quatrevingtpercent" value="'.$object->url.'">';
- print '</td></tr>';
- // Stock
- /*
- if ($object->isProduct() && ! empty($conf->stock->enabled))
- {
- print "<tr>".'<td>'.$langs->trans("StockLimit").'</td><td>';
- print '<input name="seuil_stock_alerte" size="4" value="'.$object->seuil_stock_alerte.'">';
- print '</td>';
- print '<td>'.$langs->trans("DesiredStock").'</td><td>';
- print '<input name="desiredstock" size="4" value="'.$object->desiredstock.'">';
- print '</td></tr>';
- }
- else
- {
- print '<input name="seuil_stock_alerte" type="hidden" value="'.$object->seuil_stock_alerte.'">';
- print '<input name="desiredstock" type="hidden" value="'.$object->desiredstock.'">';
- }*/
- // Nature
- if($object->type!= Product::TYPE_SERVICE)
- {
- print '<tr><td>'.$langs->trans("Nature").'</td><td colspan="3">';
- $statutarray=array('-1'=>' ', '1' => $langs->trans("Finished"), '0' => $langs->trans("RowMaterial"));
- print $form->selectarray('finished',$statutarray,$object->finished);
- print '</td></tr>';
- }
- if ($object->isService())
- {
- // Duration
- print '<tr><td>'.$langs->trans("Duration").'</td><td colspan="3"><input name="duration_value" size="3" maxlength="5" value="'.$object->duration_value.'">';
- print ' ';
- print '<input name="duration_unit" type="radio" value="h"'.($object->duration_unit=='h'?' checked':'').'>'.$langs->trans("Hour");
- print ' ';
- print '<input name="duration_unit" type="radio" value="d"'.($object->duration_unit=='d'?' checked':'').'>'.$langs->trans("Day");
- print ' ';
- print '<input name="duration_unit" type="radio" value="w"'.($object->duration_unit=='w'?' checked':'').'>'.$langs->trans("Week");
- print ' ';
- print '<input name="duration_unit" type="radio" value="m"'.($object->duration_unit=='m'?' checked':'').'>'.$langs->trans("Month");
- print ' ';
- print '<input name="duration_unit" type="radio" value="y"'.($object->duration_unit=='y'?' checked':'').'>'.$langs->trans("Year");
- print '</td></tr>';
- }
- else
- {
- // Weight
- print '<tr><td>'.$langs->trans("Weight").'</td><td colspan="3">';
- print '<input name="weight" size="5" value="'.$object->weight.'"> ';
- print $formproduct->select_measuring_units("weight_units", "weight", $object->weight_units);
- print '</td></tr>';
- if (empty($conf->global->PRODUCT_DISABLE_SIZE))
- {
- // Length
- print '<tr><td>'.$langs->trans("Length").' x '.$langs->trans("Width").' x '.$langs->trans("Height").'</td><td colspan="3">';
- print '<input name="size" size="5" value="'.$object->length.'">x';
- print '<input name="sizewidth" size="5" value="'.$object->width.'">x';
- print '<input name="sizeheight" size="5" value="'.$object->height.'"> ';
- print $formproduct->select_measuring_units("size_units", "size", $object->length_units);
- print '</td></tr>';
- }
- if (empty($conf->global->PRODUCT_DISABLE_SURFACE))
- {
- // Surface
- print '<tr><td>'.$langs->trans("Surface").'</td><td colspan="3">';
- print '<input name="surface" size="5" value="'.$object->surface.'"> ';
- print $formproduct->select_measuring_units("surface_units", "surface", $object->surface_units);
- print '</td></tr>';
- }
- if (empty($conf->global->PRODUCT_DISABLE_VOLUME))
- {
- // Volume
- print '<tr><td>'.$langs->trans("Volume").'</td><td colspan="3">';
- print '<input name="volume" size="5" value="'.$object->volume.'"> ';
- print $formproduct->select_measuring_units("volume_units", "volume", $object->volume_units);
- print '</td></tr>';
- }
- }
- // Units
- if($conf->global->PRODUCT_USE_UNITS)
- {
- print '<tr><td>'.$langs->trans('DefaultUnitToShow').'</td>';
- print '<td colspan="3">';
- print $form->selectUnits($object->fk_unit, 'units');
- print '</td></tr>';
- }
- // Custom code
- if (! $object->isService() && empty($conf->global->PRODUCT_DISABLE_CUSTOM_INFO))
- {
- print '<tr><td>'.$langs->trans("CustomCode").'</td><td><input name="customcode" class="maxwidth100onsmartphone" value="'.$object->customcode.'"></td>';
- // Origin country
- print '<td>'.$langs->trans("CountryOrigin").'</td><td>';
- print $form->select_country($object->country_id, 'country_id', '', 0, 'minwidth100 maxwidthonsmartphone');
- if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
- print '</td></tr>';
- }
- // Other attributes
- $parameters=array('colspan' => ' colspan="2"');
- $reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action); // Note that $action and $object may have been modified by hook
- if (empty($reshook) && ! empty($extrafields->attribute_label))
- {
- print $object->showOptionals($extrafields,'edit');
- }
- // Tags-Categories
- if ($conf->categorie->enabled)
- {
- print '<tr><td class="tdtop">'.$langs->trans("Categories").'</td><td colspan="3">';
- $cate_arbo = $form->select_all_categories(Categorie::TYPE_PRODUCT, '', 'parent', 64, 0, 1);
- $c = new Categorie($db);
- $cats = $c->containing($object->id,Categorie::TYPE_PRODUCT);
- foreach($cats as $cat) {
- $arrayselected[] = $cat->id;
- }
- print $form->multiselectarray('categories', $cate_arbo, $arrayselected, '', 0, '', 0, '100%');
- print "</td></tr>";
- }
- // Note private
- if (! empty($conf->global->MAIN_DISABLE_NOTES_TAB))
- {
- print '<tr><td class="tdtop">'.$langs->trans("NoteNotVisibleOnBill").'</td><td colspan="3">';
-
- $doleditor = new DolEditor('note_private', $object->note_private, '', 140, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, ROWS_4, '90%');
- $doleditor->Create();
-
- print "</td></tr>";
- }
-
- print '</table>';
- print '<br>';
- print '<table class="border" width="100%">';
- if (! empty($conf->accounting->enabled))
- {
- // Accountancy_code_sell
- print '<tr><td class="titlefield">'.$langs->trans("ProductAccountancySellCode").'</td>';
- print '<td>';
- print $formaccountancy->select_account($object->accountancy_code_sell, 'accountancy_code_sell', 1, '', 1, 1);
- print '</td></tr>';
- // Accountancy_code_buy
- print '<tr><td>'.$langs->trans("ProductAccountancyBuyCode").'</td>';
- print '<td>';
- print $formaccountancy->select_account($object->accountancy_code_buy, 'accountancy_code_buy', 1, '', 1, 1);
- print '</td></tr>';
- }
- else // For external software
- {
- // Accountancy_code_sell
- print '<tr><td class="titlefield">'.$langs->trans("ProductAccountancySellCode").'</td>';
- print '<td><input name="accountancy_code_sell" class="maxwidth200" value="'.$object->accountancy_code_sell.'">';
- print '</td></tr>';
- // Accountancy_code_buy
- print '<tr><td>'.$langs->trans("ProductAccountancyBuyCode").'</td>';
- print '<td><input name="accountancy_code_buy" class="maxwidth200" value="'.$object->accountancy_code_buy.'">';
- print '</td></tr>';
- }
- print '</table>';
- dol_fiche_end();
- print '<div class="center">';
- print '<input type="submit" class="button" value="'.$langs->trans("Save").'">';
- print ' ';
- print '<input type="submit" class="button" name="cancel" value="'.$langs->trans("Cancel").'">';
- print '</div>';
- print '</form>';
- }
- // Fiche en mode visu
- else
- {
- $showbarcode=empty($conf->barcode->enabled)?0:1;
- if (! empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->barcode->lire_advance)) $showbarcode=0;
- $head=product_prepare_head($object);
- $titre=$langs->trans("CardProduct".$object->type);
- $picto=($object->type== Product::TYPE_SERVICE?'service':'product');
-
- dol_fiche_head($head, 'card', $titre, -1, $picto);
- $linkback = '<a href="'.DOL_URL_ROOT.'/product/list.php?type='.$object->type.'">'.$langs->trans("BackToList").'</a>';
- $object->next_prev_filter=" fk_product_type = ".$object->type;
- dol_banner_tab($object, 'ref', $linkback, ($user->societe_id?0:1), 'ref');
-
-
- print '<div class="fichecenter">';
- print '<div class="fichehalfleft">';
-
- print '<div class="underbanner clearboth"></div>';
- print '<table class="border tableforfield" width="100%">';
-
- // Type
- if (! empty($conf->produit->enabled) && ! empty($conf->service->enabled))
- {
- // TODO change for compatibility with edit in place
- $typeformat='select;0:'.$langs->trans("Product").',1:'.$langs->trans("Service");
- print '<tr><td class="titlefield">'.$form->editfieldkey("Type",'fk_product_type',$object->type,$object,$user->rights->produit->creer||$user->rights->service->creer,$typeformat).'</td><td colspan="2">';
- print $form->editfieldval("Type",'fk_product_type',$object->type,$object,$user->rights->produit->creer||$user->rights->service->creer,$typeformat);
- print '</td></tr>';
- }
- if ($showbarcode)
- {
- // Barcode type
- print '<tr><td class="nowrap">';
- print '<table width="100%" class="nobordernopadding"><tr><td class="nowrap">';
- print $langs->trans("BarcodeType");
- print '</td>';
- if (($action != 'editbarcodetype') && ! empty($user->rights->produit->creer) && $createbarcode) print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editbarcodetype&id='.$object->id.'">'.img_edit($langs->trans('Edit'),1).'</a></td>';
- print '</tr></table>';
- print '</td><td colspan="2">';
- if ($action == 'editbarcodetype' || $action == 'editbarcode')
- {
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formbarcode.class.php';
- $formbarcode = new FormBarCode($db);
- }
- if ($action == 'editbarcodetype')
- {
- $formbarcode->form_barcode_type($_SERVER['PHP_SELF'].'?id='.$object->id,$object->barcode_type,'fk_barcode_type');
- }
- else
- {
- $object->fetch_barcode();
- print $object->barcode_type_label?$object->barcode_type_label:($object->barcode?'<div class="warning">'.$langs->trans("SetDefaultBarcodeType").'<div>':'');
- }
- print '</td></tr>'."\n";
- // Barcode value
- print '<tr><td class="nowrap">';
- print '<table width="100%" class="nobordernopadding"><tr><td class="nowrap">';
- print $langs->trans("BarcodeValue");
- print '</td>';
- if (($action != 'editbarcode') && ! empty($user->rights->produit->creer) && $createbarcode) print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editbarcode&id='.$object->id.'">'.img_edit($langs->trans('Edit'),1).'</a></td>';
- print '</tr></table>';
- print '</td><td colspan="2">';
- if ($action == 'editbarcode')
- {
- $tmpcode=isset($_POST['barcode'])?GETPOST('barcode'):$object->barcode;
- if (empty($tmpcode) && ! empty($modBarCodeProduct->code_auto)) $tmpcode=$modBarCodeProduct->getNextValue($object,$type);
- print '<form method="post" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="action" value="setbarcode">';
- print '<input type="hidden" name="barcode_type_code" value="'.$object->barcode_type_code.'">';
- print '<input size="40" class="maxwidthonsmartphone" type="text" name="barcode" value="'.$tmpcode.'">';
- print ' <input type="submit" class="button" value="'.$langs->trans("Modify").'">';
- print '</form>';
- }
- else
- {
- print $object->barcode;
- }
- print '</td></tr>'."\n";
- }
- // Accountancy sell code
- print '<tr><td class="nowrap">';
- print $langs->trans("ProductAccountancySellCode");
- print '</td><td colspan="2">';
- if (! empty($conf->accounting->enabled))
- {
- $accountingaccount = new AccountingAccount($db);
- $accountingaccount->fetch('',$object->accountancy_code_sell);
- print $accountingaccount->getNomUrl(0,1,1,'',1);
- } else {
- print $object->accountancy_code_sell;
- }
- print '</td></tr>';
- // Accountancy buy code
- print '<tr><td class="nowrap">';
- print $langs->trans("ProductAccountancyBuyCode");
- print '</td><td colspan="2">';
- if (! empty($conf->accounting->enabled))
- {
- $accountingaccount2 = new AccountingAccount($db);
- $accountingaccount2->fetch('',$object->accountancy_code_buy);
- print $accountingaccount2->getNomUrl(0,1,1,'',1);
- } else {
- print $object->accountancy_code_buy;
- }
- print '</td></tr>';
- // Status (to sell)
- /*
- print '<tr><td>'.$langs->trans("Status").' ('.$langs->trans("Sell").')</td><td colspan="2">';
- if (! empty($conf->use_javascript_ajax) && $user->rights->produit->creer && ! empty($conf->global->MAIN_DIRECT_STATUS_UPDATE)) {
- print ajax_object_onoff($object, 'status', 'tosell', 'ProductStatusOnSell', 'ProductStatusNotOnSell');
- } else {
- print $object->getLibStatut(2,0);
- }
- print '</td></tr>';
- // Status (to buy)
- print '<tr><td>'.$langs->trans("Status").' ('.$langs->trans("Buy").')</td><td colspan="2">';
- if (! empty($conf->use_javascript_ajax) && $user->rights->produit->creer && ! empty($conf->global->MAIN_DIRECT_STATUS_UPDATE)) {
- print ajax_object_onoff($object, 'status_buy', 'tobuy', 'ProductStatusOnBuy', 'ProductStatusNotOnBuy');
- } else {
- print $object->getLibStatut(2,1);
- }
- print '</td></tr>';
- */
-
- // Batch number management (to batch)
- if (! empty($conf->productbatch->enabled)) {
- print '<tr><td>'.$langs->trans("ManageLotSerial").'</td><td colspan="2">';
- if (! empty($conf->use_javascript_ajax) && $user->rights->produit->creer && ! empty($conf->global->MAIN_DIRECT_STATUS_UPDATE)) {
- print ajax_object_onoff($object, 'status_batch', 'tobatch', 'ProductStatusOnBatch', 'ProductStatusNotOnBatch');
- } else {
- print $object->getLibStatut(0,2);
- }
- print '</td></tr>';
- }
- // Description
- print '<tr><td class="tdtop">'.$langs->trans("Description").'</td><td colspan="2">'.(dol_textishtml($object->description)?$object->description:dol_nl2br($object->description,1,true)).'</td></tr>';
- // Public URL
- print '<tr><td>'.$langs->trans("PublicUrl").'</td><td colspan="2">';
- print dol_print_url($object->url);
- print '</td></tr>';
- //Parent product.
- if (!empty($conf->variants->enabled) && $object->isProduct()) {
- $combination = new ProductCombination($db);
- if ($combination->fetchByFkProductChild($object->id) > 0) {
- $prodstatic = new Product($db);
- $prodstatic->fetch($combination->fk_product_parent);
- // Parent product
- print '<tr><td>'.$langs->trans("ParentProduct").'</td><td colspan="2">';
- print $prodstatic->getNomUrl(1);
- print '</td></tr>';
- }
- }
- print '</table>';
- print '</div>';
- print '<div class="fichehalfright"><div class="ficheaddleft">';
-
- print '<div class="underbanner clearboth"></div>';
- print '<table class="border tableforfield" width="100%">';
-
- // Nature
- if($object->type!= Product::TYPE_SERVICE)
- {
- print '<tr><td class="titlefield">'.$langs->trans("Nature").'</td><td colspan="2">';
- print $object->getLibFinished();
- print '</td></tr>';
- }
- if ($object->isService())
- {
- // Duration
- print '<tr><td class="titlefield">'.$langs->trans("Duration").'</td><td colspan="2">'.$object->duration_value.' ';
- if ($object->duration_value > 1)
- {
- $dur=array("h"=>$langs->trans("Hours"),"d"=>$langs->trans("Days"),"w"=>$langs->trans("Weeks"),"m"=>$langs->trans("Months"),"y"=>$langs->trans("Years"));
- }
- else if ($object->duration_value > 0)
- {
- $dur=array("h"=>$langs->trans("Hour"),"d"=>$langs->trans("Day"),"w"=>$langs->trans("Week"),"m"=>$langs->trans("Month"),"y"=>$langs->trans("Year"));
- }
- print (! empty($object->duration_unit) && isset($dur[$object->duration_unit]) ? $langs->trans($dur[$object->duration_unit]) : '')." ";
- print '</td></tr>';
- }
- else
- {
- // Weight
- print '<tr><td class="titlefield">'.$langs->trans("Weight").'</td><td colspan="2">';
- if ($object->weight != '')
- {
- print $object->weight." ".measuring_units_string($object->weight_units,"weight");
- }
- else
- {
- print ' ';
- }
- print "</td></tr>\n";
- if (empty($conf->global->PRODUCT_DISABLE_SIZE))
- {
- // Length
- print '<tr><td>'.$langs->trans("Length").' x '.$langs->trans("Width").' x '.$langs->trans("Height").'</td><td colspan="2">';
- if ($object->length != '' || $object->width != '' || $object->height != '')
- {
- print $object->length;
- if ($object->width) print " x ".$object->width;
- if ($object->height) print " x ".$object->height;
- print ' '.measuring_units_string($object->length_units,"size");
- }
- else
- {
- print ' ';
- }
- print "</td></tr>\n";
- }
- if (empty($conf->global->PRODUCT_DISABLE_SURFACE))
- {
- // Surface
- print '<tr><td>'.$langs->trans("Surface").'</td><td colspan="2">';
- if ($object->surface != '')
- {
- print $object->surface." ".measuring_units_string($object->surface_units,"surface");
- }
- else
- {
- print ' ';
- }
- print "</td></tr>\n";
- }
- if (empty($conf->global->PRODUCT_DISABLE_VOLUME))
- {
- // Volume
- print '<tr><td>'.$langs->trans("Volume").'</td><td colspan="2">';
- if ($object->volume != '')
- {
- print $object->volume." ".measuring_units_string($object->volume_units,"volume");
- }
- else
- {
- print ' ';
- }
- print "</td></tr>\n";
- }
- }
- // Unit
- if (! empty($conf->global->PRODUCT_USE_UNITS))
- {
- $unit = $object->getLabelOfUnit();
- print '<tr><td>'.$langs->trans('DefaultUnitToShow').'</td><td>';
- if ($unit !== '') {
- print $langs->trans($unit);
- }
- print '</td></tr>';
- }
- // Custom code
- if (empty($conf->global->PRODUCT_DISABLE_CUSTOM_INFO))
- {
- print '<tr><td>'.$langs->trans("CustomCode").'</td><td colspan="2">'.$object->customcode.'</td>';
- // Origin country code
- print '<tr><td>'.$langs->trans("CountryOrigin").'</td><td colspan="2">'.getCountry($object->country_id,0,$db).'</td>';
- }
- // Other attributes
- $parameters=array('colspan' => ' colspan="'.(2+(($showphoto||$showbarcode)?1:0)).'"');
- $reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action); // Note that $action and $object may have been modified by hook
- if (empty($reshook) && ! empty($extrafields->attribute_label))
- {
- print $object->showOptionals($extrafields);
- }
- // Categories
- if($conf->categorie->enabled) {
- print '<tr><td valign="middle">'.$langs->trans("Categories").'</td><td colspan="3">';
- print $form->showCategories($object->id,'product',1);
- print "</td></tr>";
- }
- // Note private
- if (! empty($conf->global->MAIN_DISABLE_NOTES_TAB))
- {
- print '<!-- show Note --> '."\n";
- print '<tr><td class="tdtop">'.$langs->trans("NotePrivate").'</td><td colspan="'.(2+(($showphoto||$showbarcode)?1:0)).'">'.(dol_textishtml($object->note_private)?$object->note_private:dol_nl2br($object->note_private,1,true)).'</td></tr>'."\n";
- print '<!-- End show Note --> '."\n";
- }
-
- print "</table>\n";
- print '</div>';
-
- print '</div></div>';
- print '<div style="clear:both"></div>';
-
- dol_fiche_end();
- }
- }
- else if ($action != 'create')
- {
- exit;
- }
- }
- // Load object modCodeProduct
- $module=(! empty($conf->global->PRODUCT_CODEPRODUCT_ADDON)?$conf->global->PRODUCT_CODEPRODUCT_ADDON:'mod_codeproduct_leopard');
- if (substr($module, 0, 16) == 'mod_codeproduct_' && substr($module, -3) == 'php')
- {
- $module = substr($module, 0, dol_strlen($module)-4);
- }
- $result=dol_include_once('/core/modules/product/'.$module.'.php');
- if ($result > 0)
- {
- $modCodeProduct = new $module();
- }
- $tmpcode='';
- if (! empty($modCodeProduct->code_auto)) $tmpcode=$modCodeProduct->getNextValue($object,$object->type);
- // Define confirmation messages
- $formquestionclone=array(
- 'text' => $langs->trans("ConfirmClone"),
- array('type' => 'text', 'name' => 'clone_ref','label' => $langs->trans("NewRefForClone"), 'value' => empty($tmpcode) ? $langs->trans("CopyOf").' '.$object->ref : $tmpcode, 'size'=>24),
- array('type' => 'checkbox', 'name' => 'clone_content','label' => $langs->trans("CloneContentProduct"), 'value' => 1),
- array('type' => 'checkbox', 'name' => 'clone_prices', 'label' => $langs->trans("ClonePricesProduct").' ('.$langs->trans("FeatureNotYetAvailable").')', 'value' => 0, 'disabled' => true),
- );
- if (! empty($conf->global->PRODUIT_SOUSPRODUITS))
- {
- $formquestionclone[]=array('type' => 'checkbox', 'name' => 'clone_composition', 'label' => $langs->trans('CloneCompositionProduct'), 'value' => 1);
- }
- // Confirm delete product
- if (($action == 'delete' && (empty($conf->use_javascript_ajax) || ! empty($conf->dol_use_jmobile))) // Output when action = clone if jmobile or no js
- || (! empty($conf->use_javascript_ajax) && empty($conf->dol_use_jmobile))) // Always output when not jmobile nor js
- {
- print $form->formconfirm("card.php?id=".$object->id,$langs->trans("DeleteProduct"),$langs->trans("ConfirmDeleteProduct"),"confirm_delete",'',0,"action-delete");
- }
- // Clone confirmation
- if (($action == 'clone' && (empty($conf->use_javascript_ajax) || ! empty($conf->dol_use_jmobile))) // Output when action = clone if jmobile or no js
- || (! empty($conf->use_javascript_ajax) && empty($conf->dol_use_jmobile))) // Always output when not jmobile nor js
- {
- print $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id,$langs->trans('CloneProduct'),$langs->trans('ConfirmCloneProduct',$object->ref),'confirm_clone',$formquestionclone,'yes','action-clone',250,600);
- }
- /* ************************************************************************** */
- /* */
- /* Barre d'action */
- /* */
- /* ************************************************************************** */
- if ($action != 'create' && $action != 'edit')
- {
- print "\n".'<div class="tabsAction">'."\n";
-
- $parameters=array();
- $reshook=$hookmanager->executeHooks('addMoreActionsButtons',$parameters,$object,$action); // Note that $action and $object may have been modified by hook
- if (empty($reshook))
- {
- if (($object->type == Product::TYPE_PRODUCT && $user->rights->produit->creer ) ||
- ($object->type == Product::TYPE_SERVICE && $user->rights->service->creer))
- {
- if (! isset($object->no_button_edit) || $object->no_button_edit <> 1) print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&id='.$object->id.'">'.$langs->trans("Modify").'</a></div>';
-
- if (! isset($object->no_button_copy) || $object->no_button_copy <> 1)
- {
- if (! empty($conf->use_javascript_ajax) && empty($conf->dol_use_jmobile))
- {
- print '<div class="inline-block divButAction"><span id="action-clone" class="butAction">'.$langs->trans('ToClone').'</span></div>'."\n";
- }
- else
- {
- print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=clone&id='.$object->id.'">'.$langs->trans("ToClone").'</a></div>';
- }
- }
- }
- $object_is_used = $object->isObjectUsed($object->id);
-
- if (($object->type == Product::TYPE_PRODUCT && $user->rights->produit->supprimer)
- || ($object->type == Product::TYPE_SERVICE && $user->rights->service->supprimer))
- {
- if (empty($object_is_used) && (! isset($object->no_button_delete) || $object->no_button_delete <> 1))
- {
- if (! empty($conf->use_javascript_ajax) && empty($conf->dol_use_jmobile))
- {
- print '<div class="inline-block divButAction"><span id="action-delete" class="butActionDelete">'.$langs->trans('Delete').'</span></div>'."\n";
- }
- else
- {
- print '<div class="inline-block divButAction"><a class="butActionDelete" href="'.$_SERVER["PHP_SELF"].'?action=delete&id='.$object->id.'">'.$langs->trans("Delete").'</a></div>';
- }
- }
- else
- {
- print '<div class="inline-block divButAction"><a class="butActionRefused" href="#" title="'.$langs->trans("ProductIsUsed").'">'.$langs->trans("Delete").'</a></div>';
- }
- }
- else
- {
- print '<div class="inline-block divButAction"><a class="butActionRefused" href="#" title="'.$langs->trans("NotEnoughPermissions").'">'.$langs->trans("Delete").'</a></div>';
- }
- }
-
- print "\n</div>\n";
- }
- /*
- * All the "Add to" areas
- */
- if (! empty($conf->global->PRODUCT_ADD_FORM_ADD_TO) && $object->id && ($action == '' || $action == 'view') && $object->status)
- {
- //Variable used to check if any text is going to be printed
- $html = '';
- //print '<div class="fichecenter"><div class="fichehalfleft">';
- // Propals
- if (! empty($conf->propal->enabled) && $user->rights->propale->creer)
- {
- $propal = new Propal($db);
- $langs->load("propal");
- $otherprop = $propal->liste_array(2,1,0);
- if (is_array($otherprop) && count($otherprop))
- {
- $html .= '<tr><td style="width: 200px;">';
- $html .= $langs->trans("AddToDraftProposals").'</td><td>';
- $html .= $form->selectarray("propalid", $otherprop, 0, 1);
- $html .= '</td></tr>';
- }
- else
- {
- $html .= '<tr><td style="width: 200px;">';
- $html .= $langs->trans("AddToDraftProposals").'</td><td>';
- $html .= $langs->trans("NoDraftProposals");
- $html .= '</td></tr>';
- }
- }
- // Commande
- if (! empty($conf->commande->enabled) && $user->rights->commande->creer)
- {
- $commande = new Commande($db);
- $langs->load("orders");
- $othercom = $commande->liste_array(2, 1, null);
- if (is_array($othercom) && count($othercom))
- {
- $html .= '<tr><td style="width: 200px;">';
- $html .= $langs->trans("AddToDraftOrders").'</td><td>';
- $html .= $form->selectarray("commandeid", $othercom, 0, 1);
- $html .= '</td></tr>';
- }
- else
- {
- $html .= '<tr><td style="width: 200px;">';
- $html .= $langs->trans("AddToDraftOrders").'</td><td>';
- $html .= $langs->trans("NoDraftOrders");
- $html .= '</td></tr>';
- }
- }
- // Factures
- if (! empty($conf->facture->enabled) && $user->rights->facture->creer)
- {
- $invoice = new Facture($db);
- $langs->load("bills");
- $otherinvoice = $invoice->liste_array(2, 1, null);
- if (is_array($otherinvoice) && count($otherinvoice))
- {
- $html .= '<tr><td style="width: 200px;">';
- $html .= $langs->trans("AddToDraftInvoices").'</td><td>';
- $html .= $form->selectarray("factureid", $otherinvoice, 0, 1);
- $html .= '</td></tr>';
- }
- else
- {
- $html .= '<tr><td style="width: 200px;">';
- $html .= $langs->trans("AddToDraftInvoices").'</td><td>';
- $html .= $langs->trans("NoDraftInvoices");
- $html .= '</td></tr>';
- }
- }
- //If any text is going to be printed, then we show the table
- if (!empty($html))
- {
- print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="action" value="addin">';
- print load_fiche_titre($langs->trans("AddToDraft"),'','');
-
- dol_fiche_head('');
- $html .= '<tr><td class="nowrap">'.$langs->trans("Quantity").' ';
- $html .= '<input type="text" class="flat" name="qty" size="1" value="1"></td>';
- $html .= '<td class="nowrap">'.$langs->trans("ReductionShort").'(%) ';
- $html .= '<input type="text" class="flat" name="remise_percent" size="1" value="0">';
- $html .= '</td></tr>';
- print '<table width="100%" class="border">';
- print $html;
- print '</table>';
-
- print '<div class="center">';
- print '<input type="submit" class="button" value="'.$langs->trans("Add").'">';
- print '</div>';
- dol_fiche_end();
- print '</form>';
- }
- }
- /*
- * Documents generes
- */
- if ($action != 'create' && $action != 'edit' && $action != 'delete')
- {
- print '<div class="fichecenter"><div class="fichehalfleft">';
- print '<a name="builddoc"></a>'; // ancre
- // Documents
- $objectref = dol_sanitizeFileName($object->ref);
- $relativepath = $comref . '/' . $objectref . '.pdf';
- $filedir = $conf->produit->dir_output . '/' . $objectref;
- $urlsource=$_SERVER["PHP_SELF"]."?id=".$object->id;
- $genallowed=$user->rights->produit->creer;
- $delallowed=$user->rights->produit->supprimer;
- print $formfile->showdocuments($modulepart,$object->ref,$filedir,$urlsource,$genallowed,$delallowed,'',0,0,0,28,0,'',0,'',$object->default_lang, '', $object);
- $somethingshown=$formfile->numoffiles;
-
- print '</div><div class="fichehalfright"><div class="ficheaddleft">';
- print '</div></div></div>';
- }
- llxFooter();
- $db->close();
|