dolibarr  18.0.0-alpha
card.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2001-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2022 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
5  * Copyright (C) 2005 Marc Barilley / Ocebo <marc@ocebo.com>
6  * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
7  * Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
8  * Copyright (C) 2010-2023 Juanjo Menent <jmenent@2byte.es>
9  * Copyright (C) 2010-2022 Philippe Grand <philippe.grand@atoo-net.com>
10  * Copyright (C) 2012-2013 Christophe Battarel <christophe.battarel@altairis.fr>
11  * Copyright (C) 2012 Cedric Salvador <csalvador@gpcsolutions.fr>
12  * Copyright (C) 2013-2014 Florian Henry <florian.henry@open-concept.pro>
13  * Copyright (C) 2014 Ferran Marcet <fmarcet@2byte.es>
14  * Copyright (C) 2016 Marcos García <marcosgdf@gmail.com>
15  * Copyright (C) 2018-2021 Frédéric France <frederic.france@netlogic.fr>
16  * Copyright (C) 2020 Nicolas ZABOURI <info@inovea-conseil.com>
17  * Copyright (C) 2022 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
18  * Copyright (C) 2023 Lenin Rivas <lenin.rivas777@gmail.com>
19  *
20  * This program is free software; you can redistribute it and/or modify
21  * it under the terms of the GNU General Public License as published by
22  * the Free Software Foundation; either version 3 of the License, or
23  * (at your option) any later version.
24  *
25  * This program is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28  * GNU General Public License for more details.
29  *
30  * You should have received a copy of the GNU General Public License
31  * along with this program. If not, see <https://www.gnu.org/licenses/>.
32  */
33 
34 
41 // Load Dolibarr environment
42 require '../../main.inc.php';
43 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
44 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
45 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formpropal.class.php';
46 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formmargin.class.php';
47 require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
48 require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
49 require_once DOL_DOCUMENT_ROOT.'/core/modules/propale/modules_propale.php';
50 require_once DOL_DOCUMENT_ROOT.'/core/lib/propal.lib.php';
51 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
52 require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
53 require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
54 if (isModEnabled('project')) {
55  require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
56  require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
57 }
58 
59 if (isModEnabled('variants')) {
60  require_once DOL_DOCUMENT_ROOT.'/variants/class/ProductCombination.class.php';
61 }
62 
63 // Load translation files required by the page
64 $langs->loadLangs(array('companies', 'propal', 'compta', 'bills', 'orders', 'products', 'deliveries', 'sendings', 'other'));
65 if (isModEnabled('incoterm')) {
66  $langs->load('incoterm');
67 }
68 if (isModEnabled('margin')) {
69  $langs->load('margins');
70 }
71 
72 $error = 0;
73 
74 $id = GETPOST('id', 'int');
75 $ref = GETPOST('ref', 'alpha');
76 $socid = GETPOST('socid', 'int');
77 $action = GETPOST('action', 'aZ09');
78 $cancel = GETPOST('cancel', 'alpha');
79 $origin = GETPOST('origin', 'alpha');
80 $originid = GETPOST('originid', 'int');
81 $confirm = GETPOST('confirm', 'alpha');
82 $lineid = GETPOST('lineid', 'int');
83 $contactid = GETPOST('contactid', 'int');
84 $projectid = GETPOST('projectid', 'int');
85 $rank = (GETPOST('rank', 'int') > 0) ? GETPOST('rank', 'int') : -1;
86 
87 // PDF
88 $hidedetails = (GETPOST('hidedetails', 'int') ? GETPOST('hidedetails', 'int') : (!empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS) ? 1 : 0));
89 $hidedesc = (GETPOST('hidedesc', 'int') ? GETPOST('hidedesc', 'int') : (!empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DESC) ? 1 : 0));
90 $hideref = (GETPOST('hideref', 'int') ? GETPOST('hideref', 'int') : (!empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_REF) ? 1 : 0));
91 
92 $object = new Propal($db);
93 $extrafields = new ExtraFields($db);
94 
95 // fetch optionals attributes and labels
96 $extrafields->fetch_name_optionals_label($object->table_element);
97 
98 // Load object
99 if ($id > 0 || !empty($ref)) {
100  $ret = $object->fetch($id, $ref);
101  if ($ret > 0) {
102  $ret = $object->fetch_thirdparty();
103  }
104  if ($ret <= 0) {
105  setEventMessages($object->error, $object->errors, 'errors');
106  $action = '';
107  }
108 }
109 
110 // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
111 $hookmanager->initHooks(array('propalcard', 'globalcard'));
112 
113 $usercanread = $user->hasRight("propal", "lire");
114 $usercancreate = $user->hasRight("propal", "creer");
115 $usercandelete = $user->hasRight("propal", "supprimer");
116 
117 $usercanclose = ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $usercancreate) || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->propal->propal_advance->close)));
118 $usercanvalidate = ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $usercancreate) || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->propal->propal_advance->validate)));
119 $usercansend = (empty($conf->global->MAIN_USE_ADVANCED_PERMS) || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->propal->propal_advance->send)));
120 
121 $usermustrespectpricemin = ((!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->produit->ignore_price_min_advance)) || empty($conf->global->MAIN_USE_ADVANCED_PERMS));
122 $usercancreateorder = $user->hasRight('commande', 'creer');
123 $usercancreateinvoice = $user->hasRight('facture', 'creer');
124 $usercancreatecontract = $user->hasRight('contrat', 'creer');
125 $usercancreateintervention = $user->hasRight('ficheinter', 'creer');
126 $usercancreatepurchaseorder = ($user->hasRight('fournisseur', 'commande', 'creer') || $user->hasRight('supplier_order', 'creer'));
127 
128 $permissionnote = $usercancreate; // Used by the include of actions_setnotes.inc.php
129 $permissiondellink = $usercancreate; // Used by the include of actions_dellink.inc.php
130 $permissiontoedit = $usercancreate; // Used by the include of actions_lineupdown.inc.php
131 
132 // Security check
133 if (!empty($user->socid)) {
134  $socid = $user->socid;
135 }
136 restrictedArea($user, 'propal', $object->id);
137 
138 
139 /*
140  * Actions
141  */
142 
143 $parameters = array('socid' => $socid);
144 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
145 if ($reshook < 0) {
146  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
147 }
148 
149 if (empty($reshook)) {
150  $backurlforlist = DOL_URL_ROOT.'/comm/propal/list.php';
151 
152  if (empty($backtopage) || ($cancel && empty($id))) {
153  if (empty($backtopage) || ($cancel && strpos($backtopage, '__ID__'))) {
154  if (empty($id) && (($action != 'add' && $action != 'create') || $cancel)) {
155  $backtopage = $backurlforlist;
156  } else {
157  $backtopage = DOL_URL_ROOT.'/comm/propal/card.php?id='.((!empty($id) && $id > 0) ? $id : '__ID__');
158  }
159  }
160  }
161 
162  if ($cancel) {
163  if (!empty($backtopageforcancel)) {
164  header("Location: ".$backtopageforcancel);
165  exit;
166  } elseif (!empty($backtopage)) {
167  header("Location: ".$backtopage);
168  exit;
169  }
170  $action = '';
171  }
172 
173  include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not includ_once
174 
175  include DOL_DOCUMENT_ROOT.'/core/actions_dellink.inc.php'; // Must be include, not include_once
176 
177  include DOL_DOCUMENT_ROOT.'/core/actions_lineupdown.inc.php'; // Must be include, not include_once
178 
179  // Action clone object
180  if ($action == 'confirm_clone' && $confirm == 'yes' && $usercancreate) {
181  if (!GETPOST('socid', 3)) {
182  setEventMessages($langs->trans("NoCloneOptionsSpecified"), null, 'errors');
183  } else {
184  if ($object->id > 0) {
185  if (!empty($conf->global->PROPAL_CLONE_DATE_DELIVERY)) {
186  //Get difference between old and new delivery date and change lines according to difference
187  $date_delivery = dol_mktime(
188  12,
189  0,
190  0,
191  GETPOST('date_deliverymonth', 'int'),
192  GETPOST('date_deliveryday', 'int'),
193  GETPOST('date_deliveryyear', 'int')
194  );
195  $date_delivery_old = (empty($object->delivery_date) ? $object->date_livraison : $object->delivery_date);
196  if (!empty($date_delivery_old) && !empty($date_delivery)) {
197  //Attempt to get the date without possible hour rounding errors
198  $old_date_delivery = dol_mktime(
199  12,
200  0,
201  0,
202  dol_print_date($date_delivery_old, '%m'),
203  dol_print_date($date_delivery_old, '%d'),
204  dol_print_date($date_delivery_old, '%Y')
205  );
206  //Calculate the difference and apply if necessary
207  $difference = $date_delivery - $old_date_delivery;
208  if ($difference != 0) {
209  $object->date_livraison = $date_delivery;
210  $object->delivery_date = $date_delivery;
211  foreach ($object->lines as $line) {
212  if (isset($line->date_start)) {
213  $line->date_start = $line->date_start + $difference;
214  }
215  if (isset($line->date_end)) {
216  $line->date_end = $line->date_end + $difference;
217  }
218  }
219  }
220  }
221  }
222 
223  $result = $object->createFromClone($user, $socid, (GETPOSTISSET('entity') ? GETPOST('entity', 'int') : null), (GETPOST('update_prices', 'aZ') ? true : false));
224  if ($result > 0) {
225  header("Location: ".$_SERVER['PHP_SELF'].'?id='.$result);
226  exit();
227  } else {
228  if (count($object->errors) > 0) {
229  setEventMessages($object->error, $object->errors, 'errors');
230  }
231  $action = '';
232  }
233  }
234  }
235  } elseif ($action == 'confirm_delete' && $confirm == 'yes' && $usercandelete) {
236  // Delete proposal
237  $result = $object->delete($user);
238  if ($result > 0) {
239  header('Location: '.DOL_URL_ROOT.'/comm/propal/list.php?restore_lastsearch_values=1');
240  exit();
241  } else {
242  $langs->load("errors");
243  setEventMessages($object->error, $object->errors, 'errors');
244  }
245  } elseif ($action == 'confirm_deleteline' && $confirm == 'yes' && $usercancreate) {
246  // Remove line
247  $result = $object->deleteline($lineid);
248  // reorder lines
249  if ($result > 0) {
250  $object->line_order(true);
251  } else {
252  $langs->load("errors");
253  setEventMessages($object->error, $object->errors, 'errors');
254  }
255 
256  if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
257  // Define output language
258  $outputlangs = $langs;
259  if (getDolGlobalInt('MAIN_MULTILANGS')) {
260  $outputlangs = new Translate("", $conf);
261  $newlang = (GETPOST('lang_id', 'aZ09') ? GETPOST('lang_id', 'aZ09') : $object->thirdparty->default_lang);
262  $outputlangs->setDefaultLang($newlang);
263  }
264  $ret = $object->fetch($id); // Reload to get new records
265  if ($ret > 0) {
266  $object->fetch_thirdparty();
267  }
268  $object->generateDocument($object->model_pdf, $outputlangs, $hidedetails, $hidedesc, $hideref);
269  }
270 
271  header('Location: '.$_SERVER["PHP_SELF"].'?id='.$object->id);
272  exit();
273  } elseif ($action == 'confirm_validate' && $confirm == 'yes' && $usercanvalidate) {
274  // Validation
275  $idwarehouse = GETPOST('idwarehouse', 'int');
276  $result = $object->valid($user);
277  if ( $result > 0 && ! empty($conf->global->PROPAL_SKIP_ACCEPT_REFUSE) ) {
278  $result = $object->closeProposal($user, $object::STATUS_SIGNED);
279  }
280  if ($result >= 0) {
281  if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
282  $outputlangs = $langs;
283  $newlang = '';
284  if (getDolGlobalInt('MAIN_MULTILANGS') && empty($newlang) && GETPOST('lang_id', 'aZ09')) {
285  $newlang = GETPOST('lang_id', 'aZ09');
286  }
287  if (getDolGlobalInt('MAIN_MULTILANGS') && empty($newlang)) {
288  $newlang = $object->thirdparty->default_lang;
289  }
290  if (!empty($newlang)) {
291  $outputlangs = new Translate("", $conf);
292  $outputlangs->setDefaultLang($newlang);
293  }
294  $model = $object->model_pdf;
295  $ret = $object->fetch($id); // Reload to get new records
296  if ($ret > 0) {
297  $object->fetch_thirdparty();
298  }
299 
300  $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
301  }
302  } else {
303  $langs->load("errors");
304  if (count($object->errors) > 0) {
305  setEventMessages($object->error, $object->errors, 'errors');
306  } else {
307  setEventMessages($langs->trans($object->error), null, 'errors');
308  }
309  }
310  } elseif ($action == 'setdate' && $usercancreate) {
311  $datep = dol_mktime(12, 0, 0, GETPOST('remonth', 'int'), GETPOST('reday', 'int'), GETPOST('reyear', 'int'));
312 
313  if (empty($datep)) {
314  $error++;
315  setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Date")), null, 'errors');
316  }
317 
318  if (!$error) {
319  $result = $object->set_date($user, $datep);
320  if ($result > 0 && !empty($object->duree_validite) && !empty($object->fin_validite)) {
321  $datev = $datep + ($object->duree_validite * 24 * 3600);
322  $result = $object->set_echeance($user, $datev, 1);
323  }
324  if ($result < 0) {
325  dol_print_error($db, $object->error);
326  } elseif (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
327  $outputlangs = $langs;
328  $newlang = '';
329  if (getDolGlobalInt('MAIN_MULTILANGS') && empty($newlang) && GETPOST('lang_id', 'aZ09')) $newlang = GETPOST('lang_id', 'aZ09');
330  if (getDolGlobalInt('MAIN_MULTILANGS') && empty($newlang)) $newlang = $object->thirdparty->default_lang;
331  if (!empty($newlang)) {
332  $outputlangs = new Translate("", $conf);
333  $outputlangs->setDefaultLang($newlang);
334  }
335  $model = $object->model_pdf;
336  $ret = $object->fetch($id); // Reload to get new records
337  if ($ret > 0) {
338  $object->fetch_thirdparty();
339  }
340 
341  $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
342  }
343  }
344  } elseif ($action == 'setecheance' && $usercancreate) {
345  $result = $object->set_echeance($user, dol_mktime(12, 0, 0, GETPOST('echmonth', 'int'), GETPOST('echday', 'int'), GETPOST('echyear', 'int')));
346  if ($result >= 0) {
347  if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
348  $outputlangs = $langs;
349  $newlang = '';
350  if (getDolGlobalInt('MAIN_MULTILANGS') && empty($newlang) && GETPOST('lang_id', 'aZ09')) $newlang = GETPOST('lang_id', 'aZ09');
351  if (getDolGlobalInt('MAIN_MULTILANGS') && empty($newlang)) $newlang = $object->thirdparty->default_lang;
352  if (!empty($newlang)) {
353  $outputlangs = new Translate("", $conf);
354  $outputlangs->setDefaultLang($newlang);
355  }
356  $model = $object->model_pdf;
357  $ret = $object->fetch($id); // Reload to get new records
358  if ($ret > 0) {
359  $object->fetch_thirdparty();
360  }
361 
362  $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
363  }
364  } else {
365  setEventMessages($object->error, $object->errors, 'errors');
366  }
367  } elseif ($action == 'setdate_livraison' && $usercancreate) {
368  $result = $object->setDeliveryDate($user, dol_mktime(12, 0, 0, GETPOST('date_livraisonmonth', 'int'), GETPOST('date_livraisonday', 'int'), GETPOST('date_livraisonyear', 'int')));
369  if ($result < 0) {
370  dol_print_error($db, $object->error);
371  }
372  } elseif ($action == 'setref_client' && $usercancreate) {
373  // Positionne ref client
374  $result = $object->set_ref_client($user, GETPOST('ref_client'));
375  if ($result < 0) {
376  setEventMessages($object->error, $object->errors, 'errors');
377  }
378  } elseif ($action == 'set_incoterms' && isModEnabled('incoterm') && $usercancreate) {
379  // Set incoterm
380  $result = $object->setIncoterms(GETPOST('incoterm_id', 'int'), GETPOST('location_incoterms', 'alpha'));
381  } elseif ($action == 'add' && $usercancreate) {
382  // Create proposal
383  $object->socid = $socid;
384  $object->fetch_thirdparty();
385 
386  $datep = dol_mktime(12, 0, 0, GETPOST('remonth'), GETPOST('reday'), GETPOST('reyear'));
387  $date_delivery = dol_mktime(12, 0, 0, GETPOST('date_livraisonmonth'), GETPOST('date_livraisonday'), GETPOST('date_livraisonyear'));
388  $duration = GETPOST('duree_validite', 'int');
389 
390  if (empty($datep)) {
391  setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("DatePropal")), null, 'errors');
392  $action = 'create';
393  $error++;
394  }
395  if (empty($duration)) {
396  setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("ValidityDuration")), null, 'errors');
397  $action = 'create';
398  $error++;
399  }
400 
401  if ($socid < 1) {
402  setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Customer")), null, 'errors');
403 
404  $action = 'create';
405  $error++;
406  }
407 
408  if (!$error) {
409  $db->begin();
410 
411  // If we select proposal to clone during creation (when option PROPAL_CLONE_ON_CREATE_PAGE is on)
412  if (GETPOST('createmode') == 'copy' && GETPOST('copie_propal')) {
413  if ($object->fetch(GETPOST('copie_propal', 'int')) > 0) {
414  $object->ref = GETPOST('ref');
415  $object->datep = $datep;
416  $object->date = $datep;
417  $object->date_livraison = $date_delivery; // deprecated
418  $object->delivery_date = $date_delivery;
419  $object->availability_id = GETPOST('availability_id');
420  $object->demand_reason_id = GETPOST('demand_reason_id');
421  $object->fk_delivery_address = GETPOST('fk_address', 'int');
422  $object->shipping_method_id = GETPOST('shipping_method_id', 'int');
423  $object->warehouse_id = GETPOST('warehouse_id', 'int');
424  $object->duree_validite = $duration;
425  $object->cond_reglement_id = GETPOST('cond_reglement_id');
426  $object->deposit_percent = GETPOST('cond_reglement_id_deposit_percent', 'alpha');
427  $object->mode_reglement_id = GETPOST('mode_reglement_id');
428  $object->fk_account = GETPOST('fk_account', 'int');
429  $object->remise_absolue = price2num(GETPOST('remise_absolue'), 'MU', 2); // deprecated
430  $object->remise_percent = price2num(GETPOST('remise_percent'), '', 2);
431  $object->socid = GETPOST('socid', 'int');
432  $object->contact_id = GETPOST('contactid', 'int');
433  $object->fk_project = GETPOST('projectid', 'int');
434  $object->model_pdf = GETPOST('model', 'alphanohtml');
435  $object->author = $user->id; // deprecated
436  $object->user_author_id = $user->id;
437  $object->note_private = GETPOST('note_private', 'restricthtml');
438  $object->note_public = GETPOST('note_public', 'restricthtml');
439  $object->statut = Propal::STATUS_DRAFT;
440  $object->fk_incoterms = GETPOST('incoterm_id', 'int');
441  $object->location_incoterms = GETPOST('location_incoterms', 'alpha');
442  } else {
443  setEventMessages($langs->trans("ErrorFailedToCopyProposal", GETPOST('copie_propal')), null, 'errors');
444  }
445  } else {
446  $object->ref = GETPOST('ref');
447  $object->ref_client = GETPOST('ref_client');
448  $object->datep = $datep;
449  $object->date = $datep;
450  $object->date_livraison = $date_delivery;
451  $object->delivery_date = $date_delivery;
452  $object->availability_id = GETPOST('availability_id', 'int');
453  $object->demand_reason_id = GETPOST('demand_reason_id', 'int');
454  $object->fk_delivery_address = GETPOST('fk_address', 'int');
455  $object->shipping_method_id = GETPOST('shipping_method_id', 'int');
456  $object->warehouse_id = GETPOST('warehouse_id', 'int');
457  $object->duree_validite = price2num(GETPOST('duree_validite', 'alpha'));
458  $object->cond_reglement_id = GETPOST('cond_reglement_id', 'int');
459  $object->deposit_percent = GETPOST('cond_reglement_id_deposit_percent', 'alpha');
460  $object->mode_reglement_id = GETPOST('mode_reglement_id', 'int');
461  $object->fk_account = GETPOST('fk_account', 'int');
462  $object->contact_id = GETPOST('contactid', 'int');
463  $object->fk_project = GETPOST('projectid', 'int');
464  $object->model_pdf = GETPOST('model');
465  $object->author = $user->id; // deprecated
466  $object->note_private = GETPOST('note_private', 'restricthtml');
467  $object->note_public = GETPOST('note_public', 'restricthtml');
468  $object->fk_incoterms = GETPOST('incoterm_id', 'int');
469  $object->location_incoterms = GETPOST('location_incoterms', 'alpha');
470 
471  $object->origin = GETPOST('origin');
472  $object->origin_id = GETPOST('originid');
473 
474  // Multicurrency
475  if (isModEnabled("multicurrency")) {
476  $object->multicurrency_code = GETPOST('multicurrency_code', 'alpha');
477  }
478 
479  // Fill array 'array_options' with data from add form
480  $ret = $extrafields->setOptionalsFromPost(null, $object);
481  if ($ret < 0) {
482  $error++;
483  $action = 'create';
484  }
485  }
486 
487  if (!$error) {
488  if ($origin && $originid) {
489  // Parse element/subelement (ex: project_task)
490  $element = $subelement = $origin;
491  if (preg_match('/^([^_]+)_([^_]+)/i', $origin, $regs)) {
492  $element = $regs [1];
493  $subelement = $regs [2];
494  }
495 
496  // For compatibility
497  if ($element == 'order') {
498  $element = $subelement = 'commande';
499  }
500  if ($element == 'propal') {
501  $element = 'comm/propal';
502  $subelement = 'propal';
503  }
504  if ($element == 'contract') {
505  $element = $subelement = 'contrat';
506  }
507  if ($element == 'inter') {
508  $element = $subelement = 'ficheinter';
509  }
510  if ($element == 'shipping') {
511  $element = $subelement = 'expedition';
512  }
513 
514  $object->origin = $origin;
515  $object->origin_id = $originid;
516 
517  // Possibility to add external linked objects with hooks
518  $object->linked_objects [$object->origin] = $object->origin_id;
519  if (is_array($_POST['other_linked_objects']) && !empty($_POST['other_linked_objects'])) {
520  $object->linked_objects = array_merge($object->linked_objects, $_POST['other_linked_objects']);
521  }
522 
523  $id = $object->create($user);
524  if ($id > 0) {
525  dol_include_once('/'.$element.'/class/'.$subelement.'.class.php');
526 
527  $classname = ucfirst($subelement);
528  $srcobject = new $classname($db);
529 
530  dol_syslog("Try to find source object origin=".$object->origin." originid=".$object->origin_id." to add lines");
531  $result = $srcobject->fetch($object->origin_id);
532 
533  if ($result > 0) {
534  $lines = $srcobject->lines;
535  if (empty($lines) && method_exists($srcobject, 'fetch_lines')) {
536  $srcobject->fetch_lines();
537  $lines = $srcobject->lines;
538  }
539 
540  $fk_parent_line = 0;
541  $num = count($lines);
542  for ($i = 0; $i < $num; $i++) {
543  $label = (!empty($lines[$i]->label) ? $lines[$i]->label : '');
544  $desc = (!empty($lines[$i]->desc) ? $lines[$i]->desc : $lines[$i]->libelle);
545 
546  // Positive line
547  $product_type = ($lines[$i]->product_type ? $lines[$i]->product_type : 0);
548 
549  // Date start
550  $date_start = false;
551  if ($lines[$i]->date_debut_prevue) {
552  $date_start = $lines[$i]->date_debut_prevue;
553  }
554  if ($lines[$i]->date_debut_reel) {
555  $date_start = $lines[$i]->date_debut_reel;
556  }
557  if ($lines[$i]->date_start) {
558  $date_start = $lines[$i]->date_start;
559  }
560 
561  // Date end
562  $date_end = false;
563  if ($lines[$i]->date_fin_prevue) {
564  $date_end = $lines[$i]->date_fin_prevue;
565  }
566  if ($lines[$i]->date_fin_reel) {
567  $date_end = $lines[$i]->date_fin_reel;
568  }
569  if ($lines[$i]->date_end) {
570  $date_end = $lines[$i]->date_end;
571  }
572 
573  // Reset fk_parent_line for no child products and special product
574  if (($lines[$i]->product_type != 9 && empty($lines[$i]->fk_parent_line)) || $lines[$i]->product_type == 9) {
575  $fk_parent_line = 0;
576  }
577 
578  // Extrafields
579  if (method_exists($lines[$i], 'fetch_optionals')) {
580  $lines[$i]->fetch_optionals();
581  $array_options = $lines[$i]->array_options;
582  }
583 
584  $tva_tx = $lines[$i]->tva_tx;
585  if (!empty($lines[$i]->vat_src_code) && !preg_match('/\(/', $tva_tx)) {
586  $tva_tx .= ' ('.$lines[$i]->vat_src_code.')';
587  }
588 
589  $result = $object->addline($desc, $lines[$i]->subprice, $lines[$i]->qty, $tva_tx, $lines[$i]->localtax1_tx, $lines[$i]->localtax2_tx, $lines[$i]->fk_product, $lines[$i]->remise_percent, 'HT', 0, $lines[$i]->info_bits, $product_type, $lines[$i]->rang, $lines[$i]->special_code, $fk_parent_line, $lines[$i]->fk_fournprice, $lines[$i]->pa_ht, $label, $date_start, $date_end, $array_options, $lines[$i]->fk_unit);
590 
591  if ($result > 0) {
592  $lineid = $result;
593  } else {
594  $lineid = 0;
595  $error++;
596  break;
597  }
598 
599  // Defined the new fk_parent_line
600  if ($result > 0 && $lines[$i]->product_type == 9) {
601  $fk_parent_line = $result;
602  }
603  }
604 
605  // Hooks
606  $parameters = array('objFrom' => $srcobject);
607  $reshook = $hookmanager->executeHooks('createFrom', $parameters, $object, $action); // Note that $action and $object may have been
608  // modified by hook
609  if ($reshook < 0) {
610  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
611  $error++;
612  }
613  } else {
614  setEventMessages($srcobject->error, $srcobject->errors, 'errors');
615  $error++;
616  }
617  } else {
618  setEventMessages($object->error, $object->errors, 'errors');
619  $error++;
620  }
621  } else {
622  // Standard creation
623  $id = $object->create($user);
624  }
625 
626  if ($id > 0) {
627  // Insert default contacts if defined
628  if (GETPOST('contactid') > 0) {
629  $result = $object->add_contact(GETPOST('contactid'), 'CUSTOMER', 'external');
630  if ($result < 0) {
631  $error++;
632  setEventMessages($langs->trans("ErrorFailedToAddContact"), null, 'errors');
633  }
634  }
635 
636  if (!empty($conf->global->PROPOSAL_AUTO_ADD_AUTHOR_AS_CONTACT)) {
637  $result = $object->add_contact($user->id, 'SALESREPFOLL', 'internal');
638  if ($result < 0) {
639  $error++;
640  setEventMessages($langs->trans("ErrorFailedToAddUserAsContact"), null, 'errors');
641  }
642  }
643 
644  if (!$error) {
645  $db->commit();
646 
647  // Define output language
648  if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
649  $outputlangs = $langs;
650  $newlang = '';
651  if (getDolGlobalInt('MAIN_MULTILANGS') && empty($newlang) && GETPOST('lang_id', 'aZ09')) {
652  $newlang = GETPOST('lang_id', 'aZ09');
653  }
654  if (getDolGlobalInt('MAIN_MULTILANGS') && empty($newlang)) {
655  $newlang = $object->thirdparty->default_lang;
656  }
657  if (!empty($newlang)) {
658  $outputlangs = new Translate("", $conf);
659  $outputlangs->setDefaultLang($newlang);
660  }
661  $model = $object->model_pdf;
662 
663  $ret = $object->fetch($id); // Reload to get new records
664  $result = $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
665  if ($result < 0) {
666  dol_print_error($db, $result);
667  }
668  }
669 
670  header('Location: '.$_SERVER["PHP_SELF"].'?id='.$id);
671  exit();
672  } else {
673  $db->rollback();
674  $action = 'create';
675  }
676  } else {
677  setEventMessages($object->error, $object->errors, 'errors');
678  $db->rollback();
679  $action = 'create';
680  }
681  }
682  }
683  } elseif ($action == 'classifybilled' && $usercanclose) {
684  // Classify billed
685  $db->begin();
686 
687  $result = $object->classifyBilled($user, 0, '');
688  if ($result < 0) {
689  setEventMessages($object->error, $object->errors, 'errors');
690  $error++;
691  }
692 
693  if (!$error) {
694  $db->commit();
695  } else {
696  $db->rollback();
697  }
698  } elseif ($action == 'confirm_closeas' && $usercanclose && !GETPOST('cancel', 'alpha')) {
699  // Close proposal
700  if (!(GETPOST('statut', 'int') > 0)) {
701  setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CloseAs")), null, 'errors');
702  $action = 'closeas';
703  } elseif (GETPOST('statut', 'int') == $object::STATUS_SIGNED || GETPOST('statut', 'int') == $object::STATUS_NOTSIGNED) {
704  // prevent browser refresh from closing proposal several times
705  if ($object->statut == $object::STATUS_VALIDATED || ( ! empty($conf->global->PROPAL_SKIP_ACCEPT_REFUSE) && $object->statut == $object::STATUS_DRAFT)) {
706  $db->begin();
707 
708  $result = $object->closeProposal($user, GETPOST('statut', 'int'), GETPOST('note_private', 'restricthtml'));
709  if ($result < 0) {
710  setEventMessages($object->error, $object->errors, 'errors');
711  $error++;
712  }
713 
714  $deposit = null;
715  $locationTarget = '';
716 
717  $deposit_percent_from_payment_terms = getDictionaryValue('c_payment_term', 'deposit_percent', $object->cond_reglement_id);
718 
719  if (
720  !$error && GETPOST('statut', 'int') == $object::STATUS_SIGNED && GETPOST('generate_deposit', 'alpha') == 'on'
721  && !empty($deposit_percent_from_payment_terms) && isModEnabled('facture') && !empty($user->rights->facture->creer)
722  ) {
723  require_once DOL_DOCUMENT_ROOT . '/compta/facture/class/facture.class.php';
724 
725  $date = dol_mktime(0, 0, 0, GETPOST('datefmonth', 'int'), GETPOST('datefday', 'int'), GETPOST('datefyear', 'int'));
726  $forceFields = array();
727 
728  if (GETPOSTISSET('date_pointoftax')) {
729  $forceFields['date_pointoftax'] = dol_mktime(0, 0, 0, GETPOST('date_pointoftaxmonth', 'int'), GETPOST('date_pointoftaxday', 'int'), GETPOST('date_pointoftaxyear', 'int'));
730  }
731 
732  $deposit = Facture::createDepositFromOrigin($object, $date, GETPOST('cond_reglement_id', 'int'), $user, 0, GETPOST('validate_generated_deposit', 'alpha') == 'on', $forceFields);
733 
734  if ($deposit) {
735  setEventMessage('DepositGenerated');
736  $locationTarget = DOL_URL_ROOT . '/compta/facture/card.php?id=' . $deposit->id;
737  } else {
738  $error++;
739  setEventMessages($object->error, $object->errors, 'errors');
740  }
741  }
742 
743  if (!$error) {
744  $db->commit();
745 
746  if ($deposit && empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
747  $ret = $deposit->fetch($deposit->id); // Reload to get new records
748  $outputlangs = $langs;
749 
750  if (getDolGlobalInt('MAIN_MULTILANGS')) {
751  $outputlangs = new Translate('', $conf);
752  $outputlangs->setDefaultLang($deposit->thirdparty->default_lang);
753  $outputlangs->load('products');
754  }
755 
756  $result = $deposit->generateDocument($deposit->model_pdf, $outputlangs, $hidedetails, $hidedesc, $hideref);
757 
758  if ($result < 0) {
759  setEventMessages($deposit->error, $deposit->errors, 'errors');
760  }
761  }
762 
763  if ($locationTarget) {
764  header('Location: ' . $locationTarget);
765  exit;
766  }
767  } else {
768  $db->rollback();
769  $action = '';
770  }
771  }
772  }
773  } elseif ($action == 'confirm_reopen' && $usercanclose && !GETPOST('cancel', 'alpha')) {
774  // Reopen proposal
775  // prevent browser refresh from reopening proposal several times
776  if ($object->statut == Propal::STATUS_SIGNED || $object->statut == Propal::STATUS_NOTSIGNED || $object->statut == Propal::STATUS_BILLED) {
777  $db->begin();
778 
779  $result = $object->reopen($user, empty($conf->global->PROPAL_SKIP_ACCEPT_REFUSE));
780  if ($result < 0) {
781  setEventMessages($object->error, $object->errors, 'errors');
782  $error++;
783  }
784 
785  if (!$error) {
786  $db->commit();
787  } else {
788  $db->rollback();
789  }
790  }
791  } elseif ($action == 'import_lines_from_object'
792  && $user->hasRight('propal', 'creer')
793  && $object->statut == Propal::STATUS_DRAFT
794  ) {
795  // add lines from objectlinked
796  $fromElement = GETPOST('fromelement');
797  $fromElementid = GETPOST('fromelementid');
798  $importLines = GETPOST('line_checkbox');
799 
800  if (!empty($importLines) && is_array($importLines) && !empty($fromElement) && ctype_alpha($fromElement) && !empty($fromElementid)) {
801  if ($fromElement == 'commande') {
802  dol_include_once('/'.$fromElement.'/class/'.$fromElement.'.class.php');
803  $lineClassName = 'OrderLine';
804  } elseif ($fromElement == 'propal') {
805  dol_include_once('/comm/'.$fromElement.'/class/'.$fromElement.'.class.php');
806  $lineClassName = 'PropaleLigne';
807  }
808  $nextRang = count($object->lines) + 1;
809  $importCount = 0;
810  $error = 0;
811  foreach ($importLines as $lineId) {
812  $lineId = intval($lineId);
813  $originLine = new $lineClassName($db);
814  if (intval($fromElementid) > 0 && $originLine->fetch($lineId) > 0) {
815  $originLine->fetch_optionals();
816  $desc = $originLine->desc;
817  $pu_ht = $originLine->subprice;
818  $qty = $originLine->qty;
819  $txtva = $originLine->tva_tx;
820  $txlocaltax1 = $originLine->localtax1_tx;
821  $txlocaltax2 = $originLine->localtax2_tx;
822  $fk_product = $originLine->fk_product;
823  $remise_percent = $originLine->remise_percent;
824  $date_start = $originLine->date_start;
825  $date_end = $originLine->date_end;
826  $ventil = 0;
827  $info_bits = $originLine->info_bits;
828  $fk_remise_except = $originLine->fk_remise_except;
829  $price_base_type = 'HT';
830  $pu_ttc = 0;
831  $type = $originLine->product_type;
832  $rang = $nextRang++;
833  $special_code = $originLine->special_code;
834  $origin = $originLine->element;
835  $origin_id = $originLine->id;
836  $fk_parent_line = 0;
837  $fk_fournprice = $originLine->fk_fournprice;
838  $pa_ht = $originLine->pa_ht;
839  $label = $originLine->label;
840  $array_options = $originLine->array_options;
841  $situation_percent = 100;
842  $fk_prev_id = '';
843  $fk_unit = $originLine->fk_unit;
844  $pu_ht_devise = $originLine->multicurrency_subprice;
845 
846  $res = $object->addline($desc, $pu_ht, $qty, $txtva, $txlocaltax1, $txlocaltax2, $fk_product, $remise_percent, $price_base_type, $pu_ttc, $info_bits, $type, $rang, $special_code, $fk_parent_line, $fk_fournprice, $pa_ht, $label, $date_start, $date_end, $array_options, $fk_unit, $origin, $origin_id, $pu_ht_devise, $fk_remise_except);
847 
848  if ($res > 0) {
849  $importCount++;
850  } else {
851  $error++;
852  }
853  } else {
854  $error++;
855  }
856  }
857 
858  if ($error) {
859  setEventMessages($langs->trans('ErrorsOnXLines', $error), null, 'errors');
860  }
861  }
862  }
863 
864  include DOL_DOCUMENT_ROOT.'/core/actions_printing.inc.php';
865 
866  // Actions to send emails
867  $actiontypecode = 'AC_OTH_AUTO';
868  $triggersendname = 'PROPAL_SENTBYMAIL';
869  $autocopy = 'MAIN_MAIL_AUTOCOPY_PROPOSAL_TO';
870  $trackid = 'pro'.$object->id;
871  include DOL_DOCUMENT_ROOT.'/core/actions_sendmails.inc.php';
872 
873 
874  // Go back to draft
875  if ($action == 'modif' && $usercancreate) {
876  $object->setDraft($user);
877 
878  if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
879  // Define output language
880  $outputlangs = $langs;
881  if (getDolGlobalInt('MAIN_MULTILANGS')) {
882  $outputlangs = new Translate("", $conf);
883  $newlang = (GETPOST('lang_id', 'aZ09') ? GETPOST('lang_id', 'aZ09') : $object->thirdparty->default_lang);
884  $outputlangs->setDefaultLang($newlang);
885  }
886  $ret = $object->fetch($id); // Reload to get new records
887  if ($ret > 0) {
888  $object->fetch_thirdparty();
889  }
890  $object->generateDocument($object->model_pdf, $outputlangs, $hidedetails, $hidedesc, $hideref);
891  }
892  } elseif ($action == "setabsolutediscount" && $usercancreate) {
893  if (GETPOST("remise_id", "int")) {
894  if ($object->id > 0) {
895  $result = $object->insert_discount(GETPOST("remise_id", "int"));
896  if ($result < 0) {
897  setEventMessages($object->error, $object->errors, 'errors');
898  }
899  }
900  }
901  } elseif ($action == 'addline' && GETPOST('submitforalllines', 'alpha') && GETPOST('vatforalllines', 'alpha') !== '' && $usercancreate) {
902  // Define a vat_rate for all lines
903  $vat_rate = (GETPOST('vatforalllines') ? GETPOST('vatforalllines') : 0);
904  $vat_rate = str_replace('*', '', $vat_rate);
905  $localtax1_rate = get_localtax($vat_rate, 1, $object->thirdparty, $mysoc);
906  $localtax2_rate = get_localtax($vat_rate, 2, $object->thirdparty, $mysoc);
907  foreach ($object->lines as $line) {
908  $result = $object->updateline($line->id, $line->subprice, $line->qty, $line->remise_percent, $vat_rate, $localtax1_rate, $localtax2_rate, $line->desc, 'HT', $line->info_bits, $line->special_code, $line->fk_parent_line, 0, $line->fk_fournprice, $line->pa_ht, $line->label, $line->product_type, $line->date_start, $line->date_end, $line->array_options, $line->fk_unit, $line->multicurrency_subprice);
909  }
910  } elseif ($action == 'addline' && GETPOST('submitforalllines', 'alpha') && GETPOST('remiseforalllines', 'alpha') !== '' && $usercancreate) {
911  // Define a discount for all lines
912  $remise_percent = (GETPOST('remiseforalllines') ? GETPOST('remiseforalllines') : 0);
913  $remise_percent = str_replace('*', '', $remise_percent);
914  foreach ($object->lines as $line) {
915  $result = $object->updateline($line->id, $line->subprice, $line->qty, $remise_percent, $line->tva_tx, $line->localtax1_tx, $line->localtax2_tx, $line->desc, 'HT', $line->info_bits, $line->special_code, $line->fk_parent_line, 0, $line->fk_fournprice, $line->pa_ht, $line->label, $line->product_type, $line->date_start, $line->date_end, $line->array_options, $line->fk_unit, $line->multicurrency_subprice);
916  }
917  } elseif ($action == 'addline' && GETPOST('submitforallmargins', 'alpha') && GETPOST('marginforalllines') !== '' && $usercancreate) {
918  // Define margin
919  $margin_rate = (GETPOST('marginforalllines') ? GETPOST('marginforalllines') : 0);
920  foreach ($object->lines as &$line) {
921  $subprice = price2num($line->pa_ht * (1 + $margin_rate/100), 'MU');
922  $prod = new Product($db);
923  $prod->fetch($line->fk_product);
924  if ($prod->price_min > $subprice) {
925  $price_subprice = price($subprice, 0, $outlangs, 1, -1, -1, 'auto');
926  $price_price_min = price($prod->price_min, 0, $outlangs, 1, -1, -1, 'auto');
927  setEventMessages($prod->ref.' - '.$prod->label.' ('.$price_subprice.' < '.$price_price_min.' '.strtolower($langs->trans("MinPrice")).')'."\n", null, 'warnings');
928  }
929  // Manage $line->subprice and $line->multicurrency_subprice
930  $multicurrency_subprice = $subprice * $line->multicurrency_subprice / $line->subprice;
931  // Update DB
932  $result = $object->updateline($line->id, $subprice, $line->qty, $line->remise_percent, $line->tva_tx, $line->localtax1_rate, $line->localtax2_rate, $line->desc, 'HT', $line->info_bits, $line->special_code, $line->fk_parent_line, 0, $line->fk_fournprice, $line->pa_ht, $line->label, $line->product_type, $line->date_start, $line->date_end, $line->array_options, $line->fk_unit, $multicurrency_subprice);
933  // Update $object with new margin info
934  $line->price = $subprice;
935  $line->marge_tx = $margin_rate;
936  $line->marque_tx = $margin_rate * $line->pa_ht / $subprice;
937  $line->total_ht = $line->qty * $subprice;
938  $line->total_tva = $line->tva_tx * $line->qty * $subprice;
939  $line->total_ttc = (1 + $line->tva_tx) * $line->qty * $subprice;
940  // Manage $line->subprice and $line->multicurrency_subprice
941  $line->multicurrency_total_ht = $line->qty * $subprice * $line->multicurrency_subprice / $line->subprice;
942  $line->multicurrency_total_tva = $line->tva_tx * $line->qty * $subprice * $line->multicurrency_subprice / $line->subprice;
943  $line->multicurrency_total_ttc = (1 + $line->tva_tx) * $line->qty * $subprice * $line->multicurrency_subprice / $line->subprice;
944  // Used previous $line->subprice and $line->multicurrency_subprice above, now they can be set to their new values
945  $line->subprice = $subprice;
946  $line->multicurrency_subprice = $multicurrency_subprice;
947  }
948  } elseif ($action == 'addline' && $usercancreate) { // Add line
949  // Set if we used free entry or predefined product
950  $predef = '';
951  $product_desc = (GETPOSTISSET('dp_desc') ? GETPOST('dp_desc', 'restricthtml') : '');
952 
953  $price_ht = '';
954  $price_ht_devise = '';
955  $price_ttc = '';
956  $price_ttc_devise = '';
957 
958  if (GETPOST('price_ht') !== '') {
959  $price_ht = price2num(GETPOST('price_ht'), 'MU', 2);
960  }
961  if (GETPOST('multicurrency_price_ht') !== '') {
962  $price_ht_devise = price2num(GETPOST('multicurrency_price_ht'), 'CU', 2);
963  }
964  if (GETPOST('price_ttc') !== '') {
965  $price_ttc = price2num(GETPOST('price_ttc'), 'MU', 2);
966  }
967  if (GETPOST('multicurrency_price_ttc') !== '') {
968  $price_ttc_devise = price2num(GETPOST('multicurrency_price_ttc'), 'CU', 2);
969  }
970 
971  $prod_entry_mode = GETPOST('prod_entry_mode', 'aZ09');
972  if ($prod_entry_mode == 'free') {
973  $idprod = 0;
974  } else {
975  $idprod = GETPOST('idprod', 'int');
976  }
977 
978  $tva_tx = GETPOST('tva_tx', 'alpha');
979 
980  $qty = price2num(GETPOST('qty'.$predef, 'alpha'), 'MS', 2);
981  $remise_percent = (GETPOSTISSET('remise_percent'.$predef) ? price2num(GETPOST('remise_percent'.$predef, 'alpha'), '', 2) : 0);
982  if (empty($remise_percent)) {
983  $remise_percent = 0;
984  }
985 
986  // Extrafields
987  $extralabelsline = $extrafields->fetch_name_optionals_label($object->table_element_line);
988  $array_options = $extrafields->getOptionalsFromPost($object->table_element_line, $predef);
989  // Unset extrafield
990  if (is_array($extralabelsline)) {
991  // Get extra fields
992  foreach ($extralabelsline as $key => $value) {
993  unset($_POST["options_".$key]);
994  }
995  }
996 
997  if ($prod_entry_mode == 'free' && (empty($idprod) || $idprod < 0) && GETPOST('type') < 0) {
998  setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Type")), null, 'errors');
999  $error++;
1000  }
1001 
1002  if ($prod_entry_mode == 'free' && (empty($idprod) || $idprod < 0) && $price_ht === '' && $price_ht_devise === '' && $price_ttc === '' && $price_ttc_devise === '') { // Unit price can be 0 but not ''. Also price can be negative for proposal.
1003  setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("UnitPriceHT")), null, 'errors');
1004  $error++;
1005  }
1006  if ($prod_entry_mode == 'free' && (empty($idprod) || $idprod < 0) && empty($product_desc)) {
1007  setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Description")), null, 'errors');
1008  $error++;
1009  }
1010 
1011  if (!$error && isModEnabled('variants') && $prod_entry_mode != 'free') {
1012  if ($combinations = GETPOST('combinations', 'array')) {
1013  //Check if there is a product with the given combination
1014  $prodcomb = new ProductCombination($db);
1015 
1016  if ($res = $prodcomb->fetchByProductCombination2ValuePairs($idprod, $combinations)) {
1017  $idprod = $res->fk_product_child;
1018  } else {
1019  setEventMessages($langs->trans('ErrorProductCombinationNotFound'), null, 'errors');
1020  $error++;
1021  }
1022  }
1023  }
1024 
1025  if (!$error && ($qty >= 0) && (!empty($product_desc) || (!empty($idprod) && $idprod > 0))) {
1026  $pu_ht = 0;
1027  $pu_ttc = 0;
1028  $pu_ht_devise = 0;
1029  $pu_ttc_devise = 0;
1030  $price_min = 0;
1031  $price_min_ttc = 0;
1032  $price_base_type = (GETPOST('price_base_type', 'alpha') ? GETPOST('price_base_type', 'alpha') : 'HT');
1033 
1034  $db->begin();
1035 
1036  // $tva_tx can be 'x.x (XXX)'
1037 
1038  // Ecrase $pu par celui du produit
1039  // Ecrase $desc par celui du produit
1040  // Replaces $fk_unit with the product unit
1041  if (!empty($idprod) && $idprod > 0) {
1042  $prod = new Product($db);
1043  $prod->fetch($idprod);
1044 
1045  $label = ((GETPOST('product_label') && GETPOST('product_label') != $prod->label) ? GETPOST('product_label') : '');
1046 
1047  // Update if prices fields are defined
1048  /*$tva_tx = get_default_tva($mysoc, $object->thirdparty, $prod->id);
1049  $tva_npr = get_default_npr($mysoc, $object->thirdparty, $prod->id);
1050  if (empty($tva_tx)) {
1051  $tva_npr = 0;
1052  }*/
1053 
1054  // Price unique per product
1055  $pu_ht = $prod->price;
1056  $pu_ttc = $prod->price_ttc;
1057  $price_min = $prod->price_min;
1058  $price_min_ttc = $prod->price_min_ttc;
1059  $price_base_type = $prod->price_base_type;
1060 
1061  // If price per segment
1062  if (!empty($conf->global->PRODUIT_MULTIPRICES) && $object->thirdparty->price_level) {
1063  $pu_ht = $prod->multiprices[$object->thirdparty->price_level];
1064  $pu_ttc = $prod->multiprices_ttc[$object->thirdparty->price_level];
1065  $price_min = $prod->multiprices_min[$object->thirdparty->price_level];
1066  $price_min_ttc = $prod->multiprices_min_ttc[$object->thirdparty->price_level];
1067  $price_base_type = $prod->multiprices_base_type[$object->thirdparty->price_level];
1068  if (!empty($conf->global->PRODUIT_MULTIPRICES_USE_VAT_PER_LEVEL)) { // using this option is a bug. kept for backward compatibility
1069  if (isset($prod->multiprices_tva_tx[$object->thirdparty->price_level])) {
1070  $tva_tx = $prod->multiprices_tva_tx[$object->thirdparty->price_level];
1071  }
1072  if (isset($prod->multiprices_recuperableonly[$object->thirdparty->price_level])) {
1073  $tva_npr = $prod->multiprices_recuperableonly[$object->thirdparty->price_level];
1074  }
1075  }
1076  } elseif (!empty($conf->global->PRODUIT_CUSTOMER_PRICES)) {
1077  // If price per customer
1078  require_once DOL_DOCUMENT_ROOT.'/product/class/productcustomerprice.class.php';
1079 
1080  $prodcustprice = new Productcustomerprice($db);
1081 
1082  $filter = array('t.fk_product' => $prod->id, 't.fk_soc' => $object->thirdparty->id);
1083 
1084  $result = $prodcustprice->fetchAll('', '', 0, 0, $filter);
1085  if ($result) {
1086  // If there is some prices specific to the customer
1087  if (count($prodcustprice->lines) > 0) {
1088  $pu_ht = price($prodcustprice->lines[0]->price);
1089  $pu_ttc = price($prodcustprice->lines[0]->price_ttc);
1090  $price_min = price($prodcustprice->lines[0]->price_min);
1091  $price_min_ttc = price($prodcustprice->lines[0]->price_min_ttc);
1092  $price_base_type = $prodcustprice->lines[0]->price_base_type;
1093  /*$tva_tx = ($prodcustprice->lines[0]->default_vat_code ? $prodcustprice->lines[0]->tva_tx.' ('.$prodcustprice->lines[0]->default_vat_code.' )' : $prodcustprice->lines[0]->tva_tx);
1094  if ($prodcustprice->lines[0]->default_vat_code && !preg_match('/\(.*\)/', $tva_tx)) {
1095  $tva_tx .= ' ('.$prodcustprice->lines[0]->default_vat_code.')';
1096  }
1097  $tva_npr = $prodcustprice->lines[0]->recuperableonly;
1098  if (empty($tva_tx)) {
1099  $tva_npr = 0;
1100  }*/
1101  }
1102  }
1103  } elseif (!empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY)) {
1104  // If price per quantity
1105  if ($prod->prices_by_qty[0]) { // yes, this product has some prices per quantity
1106  // Search the correct price into loaded array product_price_by_qty using id of array retrieved into POST['pqp'].
1107  $pqp = GETPOST('pbq', 'int');
1108 
1109  // Search price into product_price_by_qty from $prod->id
1110  foreach ($prod->prices_by_qty_list[0] as $priceforthequantityarray) {
1111  if ($priceforthequantityarray['rowid'] != $pqp) {
1112  continue;
1113  }
1114  // We found the price
1115  if ($priceforthequantityarray['price_base_type'] == 'HT') {
1116  $pu_ht = $priceforthequantityarray['unitprice'];
1117  } else {
1118  $pu_ttc = $priceforthequantityarray['unitprice'];
1119  }
1120  // Note: the remise_percent or price by qty is used to set data on form, so we will use value from POST.
1121  break;
1122  }
1123  }
1124  } elseif (!empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY_MULTIPRICES)) {
1125  // If price per quantity and customer
1126  if ($prod->prices_by_qty[$object->thirdparty->price_level]) { // yes, this product has some prices per quantity
1127  // Search the correct price into loaded array product_price_by_qty using id of array retrieved into POST['pqp'].
1128  $pqp = GETPOST('pbq', 'int');
1129 
1130  // Search price into product_price_by_qty from $prod->id
1131  foreach ($prod->prices_by_qty_list[$object->thirdparty->price_level] as $priceforthequantityarray) {
1132  if ($priceforthequantityarray['rowid'] != $pqp) {
1133  continue;
1134  }
1135  // We found the price
1136  if ($priceforthequantityarray['price_base_type'] == 'HT') {
1137  $pu_ht = $priceforthequantityarray['unitprice'];
1138  } else {
1139  $pu_ttc = $priceforthequantityarray['unitprice'];
1140  }
1141  // Note: the remise_percent or price by qty is used to set data on form, so we will use value from POST.
1142  break;
1143  }
1144  }
1145  }
1146 
1147  $tmpvat = price2num(preg_replace('/\s*\(.*\)/', '', $tva_tx));
1148  $tmpprodvat = price2num(preg_replace('/\s*\(.*\)/', '', $prod->tva_tx));
1149 
1150  // Set unit price to use
1151  if (!empty($price_ht) || (string) $price_ht === '0') {
1152  $pu_ht = price2num($price_ht, 'MU');
1153  $pu_ttc = price2num($pu_ht * (1 + ((float) $tmpvat / 100)), 'MU');
1154  } elseif (!empty($price_ttc) || (string) $price_ttc === '0') {
1155  $pu_ttc = price2num($price_ttc, 'MU');
1156  $pu_ht = price2num($pu_ttc / (1 + ((float) $tmpvat / 100)), 'MU');
1157  } elseif ($tmpvat != $tmpprodvat) {
1158  // Is this still used ?
1159  if ($price_base_type != 'HT') {
1160  $pu_ht = price2num($pu_ttc / (1 + ($tmpvat / 100)), 'MU');
1161  } else {
1162  $pu_ttc = price2num($pu_ht * (1 + ($tmpvat / 100)), 'MU');
1163  }
1164  }
1165 
1166  $desc = '';
1167 
1168  // Define output language
1169  if (getDolGlobalInt('MAIN_MULTILANGS') && !empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE)) {
1170  $outputlangs = $langs;
1171  $newlang = '';
1172  if (empty($newlang) && GETPOST('lang_id', 'aZ09')) {
1173  $newlang = GETPOST('lang_id', 'aZ09');
1174  }
1175  if (empty($newlang)) {
1176  $newlang = $object->thirdparty->default_lang;
1177  }
1178  if (!empty($newlang)) {
1179  $outputlangs = new Translate("", $conf);
1180  $outputlangs->setDefaultLang($newlang);
1181  }
1182 
1183  $desc = (!empty($prod->multilangs[$outputlangs->defaultlang]["description"])) ? $prod->multilangs[$outputlangs->defaultlang]["description"] : $prod->description;
1184  } else {
1185  $desc = $prod->description;
1186  }
1187 
1188  //If text set in desc is the same as product description (as now it's preloaded) whe add it only one time
1189  if ($product_desc==$desc && !empty($conf->global->PRODUIT_AUTOFILL_DESC)) {
1190  $product_desc='';
1191  }
1192 
1193  if (!empty($product_desc) && !empty($conf->global->MAIN_NO_CONCAT_DESCRIPTION)) {
1194  $desc = $product_desc;
1195  } else {
1196  $desc = dol_concatdesc($desc, $product_desc, '', !empty($conf->global->MAIN_CHANGE_ORDER_CONCAT_DESCRIPTION));
1197  }
1198 
1199  // Add custom code and origin country into description
1200  if (empty($conf->global->MAIN_PRODUCT_DISABLE_CUSTOMCOUNTRYCODE) && (!empty($prod->customcode) || !empty($prod->country_code))) {
1201  $tmptxt = '(';
1202  // Define output language
1203  if (getDolGlobalInt('MAIN_MULTILANGS') && !empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE)) {
1204  $outputlangs = $langs;
1205  $newlang = '';
1206  if (empty($newlang) && GETPOST('lang_id', 'alpha')) {
1207  $newlang = GETPOST('lang_id', 'alpha');
1208  }
1209  if (empty($newlang)) {
1210  $newlang = $object->thirdparty->default_lang;
1211  }
1212  if (!empty($newlang)) {
1213  $outputlangs = new Translate("", $conf);
1214  $outputlangs->setDefaultLang($newlang);
1215  $outputlangs->load('products');
1216  }
1217  if (!empty($prod->customcode)) {
1218  $tmptxt .= $outputlangs->transnoentitiesnoconv("CustomCode").': '.$prod->customcode;
1219  }
1220  if (!empty($prod->customcode) && !empty($prod->country_code)) {
1221  $tmptxt .= ' - ';
1222  }
1223  if (!empty($prod->country_code)) {
1224  $tmptxt .= $outputlangs->transnoentitiesnoconv("CountryOrigin").': '.getCountry($prod->country_code, 0, $db, $outputlangs, 0);
1225  }
1226  } else {
1227  if (!empty($prod->customcode)) {
1228  $tmptxt .= $langs->transnoentitiesnoconv("CustomCode").': '.$prod->customcode;
1229  }
1230  if (!empty($prod->customcode) && !empty($prod->country_code)) {
1231  $tmptxt .= ' - ';
1232  }
1233  if (!empty($prod->country_code)) {
1234  $tmptxt .= $langs->transnoentitiesnoconv("CountryOrigin").': '.getCountry($prod->country_code, 0, $db, $langs, 0);
1235  }
1236  }
1237  $tmptxt .= ')';
1238  $desc = dol_concatdesc($desc, $tmptxt);
1239  }
1240 
1241  $type = $prod->type;
1242  $fk_unit = $prod->fk_unit;
1243  } else {
1244  $pu_ht = price2num($price_ht, 'MU');
1245  $pu_ttc = price2num($price_ttc, 'MU');
1246  $tva_npr = (preg_match('/\*/', $tva_tx) ? 1 : 0);
1247  if (empty($tva_tx)) {
1248  $tva_npr = 0;
1249  }
1250  $tva_tx = str_replace('*', '', $tva_tx);
1251  $label = (GETPOST('product_label') ? GETPOST('product_label') : '');
1252  $desc = $product_desc;
1253  $type = GETPOST('type');
1254  $fk_unit = GETPOST('units', 'alpha');
1255  $pu_ht_devise = price2num($price_ht_devise, 'MU');
1256  $pu_ttc_devise = price2num($price_ttc_devise, 'MU');
1257 
1258  if ($pu_ttc && !$pu_ht) {
1259  $price_base_type = 'TTC';
1260  }
1261  }
1262 
1263  // Margin
1264  $fournprice = price2num(GETPOST('fournprice'.$predef) ? GETPOST('fournprice'.$predef) : '');
1265  $buyingprice = price2num(GETPOST('buying_price'.$predef) != '' ? GETPOST('buying_price'.$predef) : ''); // If buying_price is '0', we muste keep this value
1266 
1267  $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'));
1268  $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'));
1269 
1270  // Prepare a price equivalent for minimum price check
1271  $pu_equivalent = $pu_ht;
1272  $pu_equivalent_ttc = $pu_ttc;
1273  $currency_tx = $object->multicurrency_tx;
1274 
1275  // Check if we have a foreing currency
1276  // If so, we update the pu_equiv as the equivalent price in base currency
1277  if ($pu_ht == '' && $pu_ht_devise != '' && $currency_tx != '') {
1278  $pu_equivalent = $pu_ht_devise * $currency_tx;
1279  }
1280  if ($pu_ttc == '' && $pu_ttc_devise != '' && $currency_tx != '') {
1281  $pu_equivalent_ttc = $pu_ttc_devise * $currency_tx;
1282  }
1283 
1284  // Local Taxes
1285  $localtax1_tx = get_localtax($tva_tx, 1, $object->thirdparty, $tva_npr);
1286  $localtax2_tx = get_localtax($tva_tx, 2, $object->thirdparty, $tva_npr);
1287 
1288  $info_bits = 0;
1289  if ($tva_npr) {
1290  $info_bits |= 0x01;
1291  }
1292 
1293  //var_dump(price2num($price_min)); var_dump(price2num($pu_ht)); var_dump($remise_percent);
1294  //var_dump(price2num($price_min_ttc)); var_dump(price2num($pu_ttc)); var_dump($remise_percent);exit;
1295 
1296  if ($usermustrespectpricemin) {
1297  if ($pu_equivalent && $price_min && ((price2num($pu_equivalent) * (1 - $remise_percent / 100)) < price2num($price_min))) {
1298  $mesg = $langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, -1, $conf->currency));
1299  setEventMessages($mesg, null, 'errors');
1300  $error++;
1301  } elseif ($pu_equivalent_ttc && $price_min_ttc && ((price2num($pu_equivalent_ttc) * (1 - $remise_percent / 100)) < price2num($price_min_ttc))) {
1302  $mesg = $langs->trans("CantBeLessThanMinPrice", price(price2num($price_min_ttc, 'MU'), 0, $langs, 0, 0, -1, $conf->currency));
1303  setEventMessages($mesg, null, 'errors');
1304  $error++;
1305  }
1306  }
1307 
1308  if (!$error) {
1309  // Insert line
1310  $result = $object->addline($desc, $pu_ht, $qty, $tva_tx, $localtax1_tx, $localtax2_tx, $idprod, $remise_percent, $price_base_type, $pu_ttc, $info_bits, $type, min($rank, count($object->lines) + 1), 0, GETPOST('fk_parent_line'), $fournprice, $buyingprice, $label, $date_start, $date_end, $array_options, $fk_unit, '', 0, $pu_ht_devise);
1311 
1312  if ($result > 0) {
1313  $db->commit();
1314 
1315  if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
1316  // Define output language
1317  $outputlangs = $langs;
1318  if (getDolGlobalInt('MAIN_MULTILANGS')) {
1319  $outputlangs = new Translate("", $conf);
1320  $newlang = (GETPOST('lang_id', 'aZ09') ? GETPOST('lang_id', 'aZ09') : $object->thirdparty->default_lang);
1321  $outputlangs->setDefaultLang($newlang);
1322  }
1323  $ret = $object->fetch($id); // Reload to get new records
1324  if ($ret > 0) {
1325  $object->fetch_thirdparty();
1326  }
1327  $object->generateDocument($object->model_pdf, $outputlangs, $hidedetails, $hidedesc, $hideref);
1328  }
1329 
1330  unset($_POST['prod_entry_mode']);
1331 
1332  unset($_POST['qty']);
1333  unset($_POST['type']);
1334  unset($_POST['remise_percent']);
1335  unset($_POST['price_ht']);
1336  unset($_POST['multicurrency_price_ht']);
1337  unset($_POST['price_ttc']);
1338  unset($_POST['tva_tx']);
1339  unset($_POST['product_ref']);
1340  unset($_POST['product_label']);
1341  unset($_POST['product_desc']);
1342  unset($_POST['fournprice']);
1343  unset($_POST['buying_price']);
1344  unset($_POST['np_marginRate']);
1345  unset($_POST['np_markRate']);
1346  unset($_POST['dp_desc']);
1347  unset($_POST['idprod']);
1348  unset($_POST['units']);
1349 
1350  unset($_POST['date_starthour']);
1351  unset($_POST['date_startmin']);
1352  unset($_POST['date_startsec']);
1353  unset($_POST['date_startday']);
1354  unset($_POST['date_startmonth']);
1355  unset($_POST['date_startyear']);
1356  unset($_POST['date_endhour']);
1357  unset($_POST['date_endmin']);
1358  unset($_POST['date_endsec']);
1359  unset($_POST['date_endday']);
1360  unset($_POST['date_endmonth']);
1361  unset($_POST['date_endyear']);
1362  } else {
1363  $db->rollback();
1364 
1365  setEventMessages($object->error, $object->errors, 'errors');
1366  }
1367  }
1368  }
1369  } elseif ($action == 'updateline' && $usercancreate && GETPOST('save')) {
1370  // Update a line within proposal
1371  // Define info_bits
1372  $info_bits = 0;
1373  if (preg_match('/\*/', GETPOST('tva_tx'))) {
1374  $info_bits |= 0x01;
1375  }
1376 
1377  // Clean parameters
1378  $description = dol_htmlcleanlastbr(GETPOST('product_desc', 'restricthtml'));
1379 
1380  // Define vat_rate
1381  $vat_rate = (GETPOST('tva_tx') ? GETPOST('tva_tx') : 0);
1382  $vat_rate = str_replace('*', '', $vat_rate);
1383  $localtax1_rate = get_localtax($vat_rate, 1, $object->thirdparty, $mysoc);
1384  $localtax2_rate = get_localtax($vat_rate, 2, $object->thirdparty, $mysoc);
1385  $pu_ht = price2num(GETPOST('price_ht'), '', 2);
1386  $pu_ttc = price2num(GETPOST('price_ttc'), '', 2);
1387 
1388  // Add buying price
1389  $fournprice = price2num(GETPOST('fournprice') ? GETPOST('fournprice') : '');
1390  $buyingprice = price2num(GETPOST('buying_price') != '' ? GETPOST('buying_price') : ''); // If buying_price is '0', we muste keep this value
1391 
1392  $pu_ht_devise = price2num(GETPOST('multicurrency_subprice'), '', 2);
1393  $pu_ttc_devise = price2num(GETPOST('multicurrency_subprice_ttc'), '', 2);
1394 
1395  $date_start = dol_mktime(GETPOST('date_starthour'), GETPOST('date_startmin'), GETPOST('date_startsec'), GETPOST('date_startmonth'), GETPOST('date_startday'), GETPOST('date_startyear'));
1396  $date_end = dol_mktime(GETPOST('date_endhour'), GETPOST('date_endmin'), GETPOST('date_endsec'), GETPOST('date_endmonth'), GETPOST('date_endday'), GETPOST('date_endyear'));
1397 
1398  $remise_percent = price2num(GETPOST('remise_percent'), '', 2);
1399  if (empty($remise_percent)) {
1400  $remise_percent = 0;
1401  }
1402 
1403  // Prepare a price equivalent for minimum price check
1404  $pu_equivalent = $pu_ht;
1405  $pu_equivalent_ttc = $pu_ttc;
1406  $currency_tx = $object->multicurrency_tx;
1407 
1408  // Check if we have a foreing currency
1409  // If so, we update the pu_equiv as the equivalent price in base currency
1410  if ($pu_ht == '' && $pu_ht_devise != '' && $currency_tx != '') {
1411  $pu_equivalent = $pu_ht_devise * $currency_tx;
1412  }
1413  if ($pu_ttc == '' && $pu_ttc_devise != '' && $currency_tx != '') {
1414  $pu_equivalent_ttc = $pu_ttc_devise * $currency_tx;
1415  }
1416 
1417  // Extrafields
1418  $extralabelsline = $extrafields->fetch_name_optionals_label($object->table_element_line);
1419  $array_options = $extrafields->getOptionalsFromPost($object->table_element_line);
1420  // Unset extrafield
1421  if (is_array($extralabelsline)) {
1422  // Get extra fields
1423  foreach ($extralabelsline as $key => $value) {
1424  unset($_POST["options_".$key]);
1425  }
1426  }
1427 
1428  // Define special_code for special lines
1429  $special_code = GETPOST('special_code', 'int');
1430  if (!GETPOST('qty')) {
1431  $special_code = 3;
1432  }
1433 
1434  // Check minimum price
1435  $productid = GETPOST('productid', 'int');
1436  if (!empty($productid)) {
1437  $product = new Product($db);
1438  $res = $product->fetch($productid);
1439 
1440  $type = $product->type;
1441  $label = ((GETPOST('update_label') && GETPOST('product_label')) ? GETPOST('product_label') : '');
1442 
1443  $price_min = $product->price_min;
1444  if (!empty($conf->global->PRODUIT_MULTIPRICES) && !empty($object->thirdparty->price_level)) {
1445  $price_min = $product->multiprices_min[$object->thirdparty->price_level];
1446  }
1447  $price_min_ttc = $product->price_min_ttc;
1448  if (!empty($conf->global->PRODUIT_MULTIPRICES) && !empty($object->thirdparty->price_level)) {
1449  $price_min_ttc = $product->multiprices_min_ttc[$object->thirdparty->price_level];
1450  }
1451 
1452  //var_dump(price2num($price_min)); var_dump(price2num($pu_ht)); var_dump($remise_percent);
1453  //var_dump(price2num($price_min_ttc)); var_dump(price2num($pu_ttc)); var_dump($remise_percent);exit;
1454 
1455  if ($usermustrespectpricemin) {
1456  if ($pu_equivalent && $price_min && ((price2num($pu_equivalent) * (1 - (float) $remise_percent / 100)) < price2num($price_min))) {
1457  $mesg = $langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, -1, $conf->currency));
1458  setEventMessages($mesg, null, 'errors');
1459  $error++;
1460  $action = 'editline';
1461  } elseif ($pu_equivalent_ttc && $price_min_ttc && ((price2num($pu_equivalent_ttc) * (1 - (float) $remise_percent / 100)) < price2num($price_min_ttc))) {
1462  $mesg = $langs->trans("CantBeLessThanMinPrice", price(price2num($price_min_ttc, 'MU'), 0, $langs, 0, 0, -1, $conf->currency));
1463  setEventMessages($mesg, null, 'errors');
1464  $error++;
1465  $action = 'editline';
1466  }
1467  }
1468  } else {
1469  $type = GETPOST('type');
1470  $label = (GETPOST('product_label') ? GETPOST('product_label') : '');
1471 
1472  // Check parameters
1473  if (GETPOST('type') < 0) {
1474  setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Type")), null, 'errors');
1475  $error++;
1476  }
1477  }
1478 
1479  if (!$error) {
1480  $db->begin();
1481 
1482  if (empty($user->rights->margins->creer)) {
1483  foreach ($object->lines as &$line) {
1484  if ($line->id == GETPOST('lineid', 'int')) {
1485  $fournprice = $line->fk_fournprice;
1486  $buyingprice = $line->pa_ht;
1487  break;
1488  }
1489  }
1490  }
1491 
1492  $qty = price2num(GETPOST('qty', 'alpha'), 'MS');
1493 
1494  $pu = $pu_ht;
1495  $price_base_type = 'HT';
1496  if (empty($pu) && !empty($pu_ttc)) {
1497  $pu = $pu_ttc;
1498  $price_base_type = 'TTC';
1499  }
1500 
1501  $result = $object->updateline(GETPOST('lineid', 'int'), $pu, $qty, $remise_percent, $vat_rate, $localtax1_rate, $localtax2_rate, $description, $price_base_type, $info_bits, $special_code, GETPOST('fk_parent_line'), 0, $fournprice, $buyingprice, $label, $type, $date_start, $date_end, $array_options, GETPOST("units"), $pu_ht_devise);
1502 
1503  if ($result >= 0) {
1504  $db->commit();
1505 
1506  if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
1507  // Define output language
1508  $outputlangs = $langs;
1509  if (getDolGlobalInt('MAIN_MULTILANGS')) {
1510  $outputlangs = new Translate("", $conf);
1511  $newlang = (GETPOST('lang_id', 'aZ09') ? GETPOST('lang_id', 'aZ09') : $object->thirdparty->default_lang);
1512  $outputlangs->setDefaultLang($newlang);
1513  }
1514  $ret = $object->fetch($id); // Reload to get new records
1515  if ($ret > 0) {
1516  $object->fetch_thirdparty();
1517  }
1518  $object->generateDocument($object->model_pdf, $outputlangs, $hidedetails, $hidedesc, $hideref);
1519  }
1520 
1521  unset($_POST['qty']);
1522  unset($_POST['type']);
1523  unset($_POST['productid']);
1524  unset($_POST['remise_percent']);
1525  unset($_POST['price_ht']);
1526  unset($_POST['multicurrency_price_ht']);
1527  unset($_POST['price_ttc']);
1528  unset($_POST['tva_tx']);
1529  unset($_POST['product_ref']);
1530  unset($_POST['product_label']);
1531  unset($_POST['product_desc']);
1532  unset($_POST['fournprice']);
1533  unset($_POST['buying_price']);
1534 
1535  unset($_POST['date_starthour']);
1536  unset($_POST['date_startmin']);
1537  unset($_POST['date_startsec']);
1538  unset($_POST['date_startday']);
1539  unset($_POST['date_startmonth']);
1540  unset($_POST['date_startyear']);
1541  unset($_POST['date_endhour']);
1542  unset($_POST['date_endmin']);
1543  unset($_POST['date_endsec']);
1544  unset($_POST['date_endday']);
1545  unset($_POST['date_endmonth']);
1546  unset($_POST['date_endyear']);
1547  } else {
1548  $db->rollback();
1549 
1550  setEventMessages($object->error, $object->errors, 'errors');
1551  }
1552  }
1553  } elseif ($action == 'updateline' && $usercancreate && GETPOST('cancel', 'alpha')) {
1554  header('Location: '.$_SERVER['PHP_SELF'].'?id='.$object->id); // Pour reaffichage de la fiche en cours d'edition
1555  exit();
1556  } elseif ($action == 'classin' && $usercancreate) {
1557  // Set project
1558  $object->setProject(GETPOST('projectid', 'int'));
1559  } elseif ($action == 'setavailability' && $usercancreate) {
1560  // Delivery time
1561  $result = $object->set_availability($user, GETPOST('availability_id', 'int'));
1562  } elseif ($action == 'setdemandreason' && $usercancreate) {
1563  // Origin of the commercial proposal
1564  $result = $object->set_demand_reason($user, GETPOST('demand_reason_id', 'int'));
1565  } elseif ($action == 'setconditions' && $usercancreate) {
1566  // Terms of payment
1567  $result = $object->setPaymentTerms(GETPOST('cond_reglement_id', 'int'), GETPOST('cond_reglement_id_deposit_percent', 'alpha'));
1568  } elseif ($action == 'setremisepercent' && $usercancreate) {
1569  $result = $object->set_remise_percent($user, price2num(GETPOST('remise_percent'), '', 2));
1570  } elseif ($action == 'setremiseabsolue' && $usercancreate) {
1571  $result = $object->set_remise_absolue($user, price2num(GETPOST('remise_absolue'), 'MU', 2));
1572  } elseif ($action == 'setmode' && $usercancreate) {
1573  // Payment choice
1574  $result = $object->setPaymentMethods(GETPOST('mode_reglement_id', 'int'));
1575  } elseif ($action == 'setmulticurrencycode' && $usercancreate) {
1576  // Multicurrency Code
1577  $result = $object->setMulticurrencyCode(GETPOST('multicurrency_code', 'alpha'));
1578  } elseif ($action == 'setmulticurrencyrate' && $usercancreate) {
1579  // Multicurrency rate
1580  $result = $object->setMulticurrencyRate(price2num(GETPOST('multicurrency_tx')), GETPOST('calculation_mode', 'int'));
1581  } elseif ($action == 'setbankaccount' && $usercancreate) {
1582  // bank account
1583  $result = $object->setBankAccount(GETPOST('fk_account', 'int'));
1584  } elseif ($action == 'setshippingmethod' && $usercancreate) {
1585  // shipping method
1586  $result = $object->setShippingMethod(GETPOST('shipping_method_id', 'int'));
1587  } elseif ($action == 'setwarehouse' && $usercancreate) {
1588  // warehouse
1589  $result = $object->setWarehouse(GETPOST('warehouse_id', 'int'));
1590  } elseif ($action == 'update_extras') {
1591  $object->oldcopy = dol_clone($object);
1592 
1593  // Fill array 'array_options' with data from update form
1594  $ret = $extrafields->setOptionalsFromPost(null, $object, GETPOST('attribute', 'restricthtml'));
1595  if ($ret < 0) {
1596  $error++;
1597  }
1598  if (!$error) {
1599  $result = $object->updateExtraField(GETPOST('attribute', 'restricthtml'), 'PROPAL_MODIFY', $user);
1600  if ($result < 0) {
1601  setEventMessages($object->error, $object->errors, 'errors');
1602  $error++;
1603  }
1604  }
1605  if ($error) {
1606  $action = 'edit_extras';
1607  }
1608  }
1609 
1610  if (!empty($conf->global->MAIN_DISABLE_CONTACTS_TAB) && $usercancreate) {
1611  if ($action == 'addcontact') {
1612  if ($object->id > 0) {
1613  $contactid = (GETPOST('userid') ? GETPOST('userid') : GETPOST('contactid'));
1614  $typeid = (GETPOST('typecontact') ? GETPOST('typecontact') : GETPOST('type'));
1615  $result = $object->add_contact($contactid, $typeid, GETPOST("source", 'aZ09'));
1616  }
1617 
1618  if ($result >= 0) {
1619  header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
1620  exit();
1621  } else {
1622  if ($object->error == 'DB_ERROR_RECORD_ALREADY_EXISTS') {
1623  $langs->load("errors");
1624  setEventMessages($langs->trans("ErrorThisContactIsAlreadyDefinedAsThisType"), null, 'errors');
1625  } else {
1626  setEventMessages($object->error, $object->errors, 'errors');
1627  }
1628  }
1629  } elseif ($action == 'swapstatut') {
1630  // Toggle the status of a contact
1631  if ($object->fetch($id) > 0) {
1632  $result = $object->swapContactStatus(GETPOST('ligne', 'int'));
1633  } else {
1634  dol_print_error($db);
1635  }
1636  } elseif ($action == 'deletecontact') {
1637  // Delete a contact
1638  $object->fetch($id);
1639  $result = $object->delete_contact($lineid);
1640 
1641  if ($result >= 0) {
1642  header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
1643  exit();
1644  } else {
1645  dol_print_error($db);
1646  }
1647  }
1648  }
1649 
1650  // Actions to build doc
1651  $upload_dir = !empty($conf->propal->multidir_output[$object->entity])?$conf->propal->multidir_output[$object->entity]:$conf->propal->dir_output;
1652  $permissiontoadd = $usercancreate;
1653  include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php';
1654 }
1655 
1656 
1657 /*
1658  * View
1659  */
1660 
1661 $form = new Form($db);
1662 $formfile = new FormFile($db);
1663 $formpropal = new FormPropal($db);
1664 $formmargin = new FormMargin($db);
1665 if (isModEnabled('project')) {
1666  $formproject = new FormProjets($db);
1667 }
1668 
1669 $title = $object->ref." - ".$langs->trans('Card');
1670 if ($action == 'create') {
1671  $title = $langs->trans("NewPropal");
1672 }
1673 $help_url = 'EN:Commercial_Proposals|FR:Proposition_commerciale|ES:Presupuestos|DE:Modul_Angebote';
1674 
1675 llxHeader('', $title, $help_url);
1676 
1677 $now = dol_now();
1678 
1679 // Add new proposal
1680 if ($action == 'create') {
1681  $currency_code = $conf->currency;
1682 
1683  print load_fiche_titre($langs->trans("NewProp"), '', 'propal');
1684 
1685  $soc = new Societe($db);
1686  if ($socid > 0) {
1687  $res = $soc->fetch($socid);
1688  }
1689 
1690  // Load objectsrc
1691  if (!empty($origin) && !empty($originid)) {
1692  // Parse element/subelement (ex: project_task)
1693  $element = $subelement = $origin;
1694  $regs = array();
1695  if (preg_match('/^([^_]+)_([^_]+)/i', $origin, $regs)) {
1696  $element = $regs[1];
1697  $subelement = $regs[2];
1698  }
1699 
1700  if ($element == 'project') {
1701  $projectid = $originid;
1702  } else {
1703  // For compatibility
1704  if ($element == 'order' || $element == 'commande') {
1705  $element = $subelement = 'commande';
1706  }
1707  if ($element == 'propal') {
1708  $element = 'comm/propal';
1709  $subelement = 'propal';
1710  }
1711  if ($element == 'contract') {
1712  $element = $subelement = 'contrat';
1713  }
1714  if ($element == 'shipping') {
1715  $element = $subelement = 'expedition';
1716  }
1717 
1718  dol_include_once('/'.$element.'/class/'.$subelement.'.class.php');
1719 
1720  $classname = ucfirst($subelement);
1721  $objectsrc = new $classname($db);
1722  $objectsrc->fetch($originid);
1723  if (empty($objectsrc->lines) && method_exists($objectsrc, 'fetch_lines')) {
1724  $objectsrc->fetch_lines();
1725  }
1726  $objectsrc->fetch_thirdparty();
1727 
1728  $projectid = (!empty($objectsrc->fk_project) ? $objectsrc->fk_project : 0);
1729  $ref_client = (!empty($objectsrc->ref_client) ? $objectsrc->ref_client : '');
1730 
1731  $soc = $objectsrc->thirdparty;
1732 
1733  $cond_reglement_id = (!empty($objectsrc->cond_reglement_id) ? $objectsrc->cond_reglement_id : (!empty($soc->cond_reglement_id) ? $soc->cond_reglement_id : 0)); // TODO maybe add default value option
1734  $mode_reglement_id = (!empty($objectsrc->mode_reglement_id) ? $objectsrc->mode_reglement_id : (!empty($soc->mode_reglement_id) ? $soc->mode_reglement_id : 0));
1735  $remise_absolue = (!empty($objectsrc->remise_absolue) ? $objectsrc->remise_absolue : (!empty($soc->remise_absolue) ? $soc->remise_absolue : 0)); // deprecated
1736  $remise_percent = (!empty($objectsrc->remise_percent) ? $objectsrc->remise_percent : (!empty($soc->remise_percent) ? $soc->remise_percent : 0));
1737  $warehouse_id = (!empty($objectsrc->warehouse_id) ? $objectsrc->warehouse_id : (!empty($soc->warehouse_id) ? $soc->warehouse_id : 0));
1738  $dateinvoice = (empty($dateinvoice) ? (empty($conf->global->MAIN_AUTOFILL_DATE) ?-1 : '') : $dateinvoice);
1739 
1740  // Replicate extrafields
1741  $objectsrc->fetch_optionals();
1742  $object->array_options = $objectsrc->array_options;
1743 
1744  if (isModEnabled("multicurrency")) {
1745  if (!empty($objectsrc->multicurrency_code)) {
1746  $currency_code = $objectsrc->multicurrency_code;
1747  }
1748  if (!empty($conf->global->MULTICURRENCY_USE_ORIGIN_TX) && !empty($objectsrc->multicurrency_tx)) {
1749  $currency_tx = $objectsrc->multicurrency_tx;
1750  }
1751  }
1752  }
1753  } else {
1754  if (isModEnabled("multicurrency") && !empty($soc->multicurrency_code)) {
1755  $currency_code = $soc->multicurrency_code;
1756  }
1757  }
1758 
1759  //Warehouse default if null
1760  if ($soc->fk_warehouse > 0) {
1761  $warehouse_id = $soc->fk_warehouse;
1762  }
1763  if (isModEnabled('stock') && empty($warehouse_id) && !empty($conf->global->WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER)) {
1764  if (empty($object->warehouse_id) && !empty($conf->global->MAIN_DEFAULT_WAREHOUSE)) {
1765  $warehouse_id = $conf->global->MAIN_DEFAULT_WAREHOUSE;
1766  }
1767  if (empty($object->warehouse_id) && !empty($conf->global->MAIN_DEFAULT_WAREHOUSE_USER)) {
1768  $warehouse_id = $user->fk_warehouse;
1769  }
1770  }
1771 
1772  print '<form name="addprop" action="'.$_SERVER["PHP_SELF"].'" method="POST">';
1773  print '<input type="hidden" name="token" value="'.newToken().'">';
1774  print '<input type="hidden" name="action" value="add">';
1775  if ($origin != 'project' && $originid) {
1776  print '<input type="hidden" name="origin" value="'.$origin.'">';
1777  print '<input type="hidden" name="originid" value="'.$originid.'">';
1778  } elseif ($origin == 'project' && !empty($projectid)) {
1779  print '<input type="hidden" name="projectid" value="'.$projectid.'">';
1780  }
1781 
1782  print dol_get_fiche_head();
1783 
1784  print '<table class="border centpercent">';
1785 
1786  // Reference
1787  print '<tr class="field_ref"><td class="titlefieldcreate fieldrequired">'.$langs->trans('Ref').'</td><td class="valuefieldcreate">'.$langs->trans("Draft").'</td></tr>';
1788 
1789  // Ref customer
1790  print '<tr class="field_ref_client"><td class="titlefieldcreate">'.$langs->trans('RefCustomer').'</td><td class="valuefieldcreate">';
1791  print '<input type="text" name="ref_client" value="'.(!empty($ref_client)?$ref_client:GETPOST('ref_client')).'"></td>';
1792  print '</tr>';
1793 
1794  // Third party
1795  print '<tr class="field_socid">';
1796  print '<td class="titlefieldcreate fieldrequired">'.$langs->trans('Customer').'</td>';
1797  $shipping_method_id = 0;
1798  if ($socid > 0) {
1799  print '<td class="valuefieldcreate">';
1800  print $soc->getNomUrl(1, 'customer');
1801  print '<input type="hidden" name="socid" value="'.$soc->id.'">';
1802  print '</td>';
1803  if (!empty($conf->global->SOCIETE_ASK_FOR_SHIPPING_METHOD) && !empty($soc->shipping_method_id)) {
1804  $shipping_method_id = $soc->shipping_method_id;
1805  }
1806  //$warehouse_id = $soc->warehouse_id;
1807  } else {
1808  print '<td class="valuefieldcreate">';
1809  print img_picto('', 'company').$form->select_company('', 'socid', '((s.client = 1 OR s.client = 2 OR s.client = 3) AND status=1)', 'SelectThirdParty', 1, 0, null, 0, 'minwidth300 maxwidth500 widthcentpercentminusxx');
1810  // reload page to retrieve customer informations
1811  if (empty($conf->global->RELOAD_PAGE_ON_CUSTOMER_CHANGE_DISABLED)) {
1812  print '<script type="text/javascript">
1813  $(document).ready(function() {
1814  $("#socid").change(function() {
1815  console.log("We have changed the company - Reload page");
1816  var socid = $(this).val();
1817  // reload page
1818  $("input[name=action]").val("create");
1819  $("form[name=addprop]").submit();
1820  });
1821  });
1822  </script>';
1823  }
1824  print ' <a href="'.DOL_URL_ROOT.'/societe/card.php?action=create&client=3&fournisseur=0&backtopage='.urlencode($_SERVER["PHP_SELF"].'?action=create').'"><span class="fa fa-plus-circle valignmiddle paddingleft" title="'.$langs->trans("AddThirdParty").'"></span></a>';
1825  print '</td>';
1826  }
1827  print '</tr>'."\n";
1828 
1829  if ($socid > 0) {
1830  // Contacts (ask contact only if thirdparty already defined).
1831  print '<tr class="field_contactid"><td class="titlefieldcreate">'.$langs->trans("DefaultContact").'</td><td class="valuefieldcreate">';
1832  print img_picto('', 'contact');
1833  print $form->selectcontacts($soc->id, $contactid, 'contactid', 1, '', '', 0, 'minwidth300');
1834  print '</td></tr>';
1835 
1836  // Third party discounts info line
1837  print '<tr class="field_discount_info"><td class="titlefieldcreate">'.$langs->trans('Discounts').'</td><td class="valuefieldcreate">';
1838 
1839  $absolute_discount = $soc->getAvailableDiscounts();
1840 
1841  $thirdparty = $soc;
1842  $discount_type = 0;
1843  $backtopage = urlencode($_SERVER["PHP_SELF"].'?socid='.$thirdparty->id.'&action='.$action.'&origin='.GETPOST('origin').'&originid='.GETPOST('originid'));
1844  include DOL_DOCUMENT_ROOT.'/core/tpl/object_discounts.tpl.php';
1845  print '</td></tr>';
1846  }
1847 
1848  // Date
1849  print '<tr class="field_addprop"><td class="titlefieldcreate fieldrequired">'.$langs->trans('DatePropal').'</td><td class="valuefieldcreate">';
1850  print $form->selectDate('', '', '', '', '', "addprop", 1, 1);
1851  print '</td></tr>';
1852 
1853  // Validaty duration
1854  print '<tr class="field_duree_validitee"><td class="titlefieldcreate fieldrequired">'.$langs->trans("ValidityDuration").'</td><td class="valuefieldcreate">'.img_picto('', 'clock', 'class="paddingright"').'<input name="duree_validite" class="width50" value="'.(GETPOSTISSET('duree_validite') ? GETPOST('duree_validite', 'alphanohtml') : $conf->global->PROPALE_VALIDITY_DURATION).'"> '.$langs->trans("days").'</td></tr>';
1855 
1856  // Terms of payment
1857  print '<tr class="field_cond_reglement_id"><td class="nowrap">'.$langs->trans('PaymentConditionsShort').'</td><td>';
1858  print img_picto('', 'paiment');
1859  print $form->getSelectConditionsPaiements((GETPOSTISSET('cond_reglement_id') && GETPOST('cond_reglement_id', 'int') != 0) ? GETPOST('cond_reglement_id', 'int') : $soc->cond_reglement_id, 'cond_reglement_id', 1, 1, 0, '', (GETPOSTISSET('cond_reglement_id_deposit_percent') ? GETPOST('cond_reglement_id_deposit_percent', 'alpha') : $soc->deposit_percent));
1860  print '</td></tr>';
1861 
1862  // Mode of payment
1863  print '<tr class="field_mode_reglement_id"><td class="titlefieldcreate">'.$langs->trans('PaymentMode').'</td><td class="valuefieldcreate">';
1864  print img_picto('', 'bank', 'class="pictofixedwidth"');
1865  print $form->select_types_paiements((GETPOSTISSET('mode_reglement_id') && GETPOST('mode_reglement_id', 'int') != 0) ? GETPOST('mode_reglement_id', 'int') : $soc->mode_reglement_id, 'mode_reglement_id', 'CRDT', 0, 1, 0, 0, 1, 'maxwidth200 widthcentpercentminusx', 1);
1866  print '</td></tr>';
1867 
1868  // Bank Account
1869  if (!empty($conf->global->BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL) && isModEnabled("banque")) {
1870  print '<tr class="field_fk_account"><td class="titlefieldcreate">'.$langs->trans('BankAccount').'</td><td class="valuefieldcreate">';
1871  print img_picto('', 'bank_account', 'class="pictofixedwidth"').$form->select_comptes($soc->fk_account, 'fk_account', 0, '', 1, '', 0, 'maxwidth200 widthcentpercentminusx', 1);
1872  print '</td></tr>';
1873  }
1874 
1875  // Source / Channel - What trigger creation
1876  print '<tr class="field_demand_reason_id"><td class="titlefieldcreate">'.$langs->trans('Source').'</td><td class="valuefieldcreate">';
1877  print img_picto('', 'question', 'class="pictofixedwidth"');
1878  $form->selectInputReason('', 'demand_reason_id', "SRC_PROP", 1, 'maxwidth200 widthcentpercentminusx');
1879  print '</td></tr>';
1880 
1881  // Delivery delay
1882  print '<tr class="field_availability_id"><td class="titlefieldcreate">'.$langs->trans('AvailabilityPeriod');
1883  if (isModEnabled('commande')) {
1884  print ' ('.$langs->trans('AfterOrder').')';
1885  }
1886  print '</td><td class="valuefieldcreate">';
1887  print img_picto('', 'clock', 'class="pictofixedwidth"');
1888  $form->selectAvailabilityDelay('', 'availability_id', '', 1, 'maxwidth200 widthcentpercentminusx');
1889  print '</td></tr>';
1890 
1891  // Shipping Method
1892  if (isModEnabled("expedition")) {
1893  if (!empty($conf->global->SOCIETE_ASK_FOR_SHIPPING_METHOD) && !empty($soc->shipping_method_id)) {
1894  $shipping_method_id = $soc->shipping_method_id;
1895  }
1896  print '<tr class="field_shipping_method_id"><td class="titlefieldcreate">'.$langs->trans('SendingMethod').'</td><td class="valuefieldcreate">';
1897  print img_picto('', 'object_dollyrevert', 'class="pictofixedwidth"');
1898  $form->selectShippingMethod($shipping_method_id, 'shipping_method_id', '', 1, '', 0, 'maxwidth200 widthcentpercentminusx');
1899  print '</td></tr>';
1900  }
1901 
1902  // Warehouse
1903  if (isModEnabled('stock') && !empty($conf->global->WAREHOUSE_ASK_WAREHOUSE_DURING_PROPAL)) {
1904  require_once DOL_DOCUMENT_ROOT.'/product/class/html.formproduct.class.php';
1905  $formproduct = new FormProduct($db);
1906  print '<tr class="field_warehouse_id"><td class="titlefieldcreate">'.$langs->trans('Warehouse').'</td><td class="valuefieldcreate">';
1907  print img_picto('', 'stock', 'class="pictofixedwidth"').$formproduct->selectWarehouses($warehouse_id, 'warehouse_id', '', 1, 0, 0, '', 0, 0, array(), 'maxwidth500 widthcentpercentminusxx');
1908  print '</td></tr>';
1909  }
1910 
1911  // Delivery date (or manufacturing)
1912  print '<tr class="field_date_livraison"><td class="titlefieldcreate">'.$langs->trans("DeliveryDate").'</td>';
1913  print '<td class="valuefieldcreate">';
1914  if (isset($conf->global->DATE_LIVRAISON_WEEK_DELAY) && is_numeric($conf->global->DATE_LIVRAISON_WEEK_DELAY)) {
1915  $tmpdte = time() + ((7 * $conf->global->DATE_LIVRAISON_WEEK_DELAY) * 24 * 60 * 60);
1916  $syear = date("Y", $tmpdte);
1917  $smonth = date("m", $tmpdte);
1918  $sday = date("d", $tmpdte);
1919  print $form->selectDate($syear."-".$smonth."-".$sday, 'date_livraison', '', '', '', "addprop");
1920  } else {
1921  print $form->selectDate(-1, 'date_livraison', '', '', '', "addprop", 1, 1);
1922  }
1923  print '</td></tr>';
1924 
1925  // Project
1926  if (isModEnabled('project')) {
1927  $langs->load("projects");
1928  print '<tr class="field_projectid">';
1929  print '<td class="titlefieldcreate">'.$langs->trans("Project").'</td><td class="valuefieldcreate">';
1930  print img_picto('', 'project', 'class="pictofixedwidth"').$formproject->select_projects(($soc->id > 0 ? $soc->id : -1), $projectid, 'projectid', 0, 0, 1, 1, 0, 0, 0, '', 1, 0, 'maxwidth500 widthcentpercentminusxx');
1931  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 paddingleft" title="'.$langs->trans("AddProject").'"></span></a>';
1932  print '</td>';
1933  print '</tr>';
1934  }
1935 
1936  // Incoterms
1937  if (isModEnabled('incoterm')) {
1938  print '<tr class="field_incoterm_id">';
1939  print '<td class="titlefieldcreate"><label for="incoterm_id">'.$form->textwithpicto($langs->trans("IncotermLabel"), $soc->label_incoterms, 1).'</label></td>';
1940  print '<td class="valuefieldcreate maxwidthonsmartphone">';
1941  print $form->select_incoterms((!empty($soc->fk_incoterms) ? $soc->fk_incoterms : ''), (!empty($soc->location_incoterms) ? $soc->location_incoterms : ''));
1942  print '</td></tr>';
1943  }
1944 
1945  // Template to use by default
1946  print '<tr class="field_model">';
1947  print '<td class="titlefieldcreate">'.$langs->trans("DefaultModel").'</td>';
1948  print '<td class="valuefieldcreate">';
1949  print img_picto('', 'pdf', 'class="pictofixedwidth"');
1950  $liste = ModelePDFPropales::liste_modeles($db);
1951  $preselected = (!empty($conf->global->PROPALE_ADDON_PDF_ODT_DEFAULT) ? $conf->global->PROPALE_ADDON_PDF_ODT_DEFAULT : getDolGlobalString("PROPALE_ADDON_PDF"));
1952  print $form->selectarray('model', $liste, $preselected, 0, 0, 0, '', 0, 0, 0, '', 'maxwidth200 widthcentpercentminusx', 1);
1953  print "</td></tr>";
1954 
1955  // Multicurrency
1956  if (isModEnabled("multicurrency")) {
1957  print '<tr class="field_currency">';
1958  print '<td class="titlefieldcreate">'.$form->editfieldkey('Currency', 'multicurrency_code', '', $object, 0).'</td>';
1959  print '<td class="valuefieldcreate maxwidthonsmartphone">';
1960  print img_picto('', 'currency', 'class="pictofixedwidth"').$form->selectMultiCurrency($currency_code, 'multicurrency_code', 0);
1961  print '</td></tr>';
1962  }
1963 
1964  // Public note
1965  print '<tr class="field_note_public">';
1966  print '<td class="titlefieldcreate tdtop">'.$langs->trans('NotePublic').'</td>';
1967  print '<td class="valuefieldcreate">';
1968  $note_public = $object->getDefaultCreateValueFor('note_public', (!empty($objectsrc) ? $objectsrc->note_public : (!empty($conf->global->PROPALE_ADDON_NOTE_PUBLIC_DEFAULT) ? $conf->global->PROPALE_ADDON_NOTE_PUBLIC_DEFAULT : null)), 'restricthtml');
1969  $doleditor = new DolEditor('note_public', $note_public, '', 80, 'dolibarr_notes', 'In', 0, false, empty($conf->global->FCKEDITOR_ENABLE_NOTE_PUBLIC) ? 0 : 1, ROWS_3, '90%');
1970  print $doleditor->Create(1);
1971 
1972  // Private note
1973  if (empty($user->socid)) {
1974  print '<tr class="field_note_private">';
1975  print '<td class="titlefieldcreate tdtop">'.$langs->trans('NotePrivate').'</td>';
1976  print '<td class="valuefieldcreate">';
1977  $note_private = $object->getDefaultCreateValueFor('note_private', ((!empty($origin) && !empty($originid) && is_object($objectsrc)) ? $objectsrc->note_private : null));
1978  $doleditor = new DolEditor('note_private', $note_private, '', 80, 'dolibarr_notes', 'In', 0, false, empty($conf->global->FCKEDITOR_ENABLE_NOTE_PRIVATE) ? 0 : 1, ROWS_3, '90%');
1979  print $doleditor->Create(1);
1980  // print '<textarea name="note_private" wrap="soft" cols="70" rows="'.ROWS_3.'">'.$note_private.'.</textarea>
1981  print '</td></tr>';
1982  }
1983 
1984  // Other attributes
1985  include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_add.tpl.php';
1986 
1987  // Lines from source
1988  if (!empty($origin) && !empty($originid) && is_object($objectsrc)) {
1989  // TODO for compatibility
1990  if ($origin == 'contrat') {
1991  // Calcul contrat->price (HT), contrat->total (TTC), contrat->tva
1992  $objectsrc->remise_absolue = $remise_absolue; // deprecated
1993  $objectsrc->remise_percent = $remise_percent;
1994  $objectsrc->update_price(1, 'auto', 1);
1995  }
1996 
1997  print "\n<!-- ".$classname." info -->";
1998  print "\n";
1999  print '<input type="hidden" name="amount" value="'.$objectsrc->total_ht.'">'."\n";
2000  print '<input type="hidden" name="total" value="'.$objectsrc->total_ttc.'">'."\n";
2001  print '<input type="hidden" name="tva" value="'.$objectsrc->total_tva.'">'."\n";
2002  print '<input type="hidden" name="origin" value="'.$objectsrc->element.'">';
2003  print '<input type="hidden" name="originid" value="'.$objectsrc->id.'">';
2004 
2005  $newclassname = $classname;
2006  if ($newclassname == 'Propal') {
2007  $newclassname = 'CommercialProposal';
2008  } elseif ($newclassname == 'Commande') {
2009  $newclassname = 'Order';
2010  } elseif ($newclassname == 'Expedition') {
2011  $newclassname = 'Sending';
2012  } elseif ($newclassname == 'Fichinter') {
2013  $newclassname = 'Intervention';
2014  }
2015 
2016  print '<tr><td>'.$langs->trans($newclassname).'</td><td>'.$objectsrc->getNomUrl(1).'</td></tr>';
2017  print '<tr><td>'.$langs->trans('AmountHT').'</td><td>'.price($objectsrc->total_ht, 0, $langs, 1, -1, -1, $conf->currency).'</td></tr>';
2018  print '<tr><td>'.$langs->trans('AmountVAT').'</td><td>'.price($objectsrc->total_tva, 0, $langs, 1, -1, -1, $conf->currency)."</td></tr>";
2019  if ($mysoc->localtax1_assuj == "1" || $objectsrc->total_localtax1 != 0) { // Localtax1
2020  print '<tr><td>'.$langs->transcountry("AmountLT1", $mysoc->country_code).'</td><td>'.price($objectsrc->total_localtax1, 0, $langs, 1, -1, -1, $conf->currency)."</td></tr>";
2021  }
2022 
2023  if ($mysoc->localtax2_assuj == "1" || $objectsrc->total_localtax2 != 0) { // Localtax2
2024  print '<tr><td>'.$langs->transcountry("AmountLT2", $mysoc->country_code).'</td><td>'.price($objectsrc->total_localtax2, 0, $langs, 1, -1, -1, $conf->currency)."</td></tr>";
2025  }
2026  print '<tr><td>'.$langs->trans('AmountTTC').'</td><td>'.price($objectsrc->total_ttc, 0, $langs, 1, -1, -1, $conf->currency)."</td></tr>";
2027 
2028  if (isModEnabled("multicurrency")) {
2029  print '<tr><td>'.$langs->trans('MulticurrencyAmountHT').'</td><td>'.price($objectsrc->multicurrency_total_ht).'</td></tr>';
2030  print '<tr><td>'.$langs->trans('MulticurrencyAmountVAT').'</td><td>'.price($objectsrc->multicurrency_total_tva)."</td></tr>";
2031  print '<tr><td>'.$langs->trans('MulticurrencyAmountTTC').'</td><td>'.price($objectsrc->multicurrency_total_ttc)."</td></tr>";
2032  }
2033  }
2034 
2035  print "</table>\n";
2036 
2037 
2038  /*
2039  * Combobox for copy function
2040  */
2041 
2042  if (empty($conf->global->PROPAL_CLONE_ON_CREATE_PAGE)) {
2043  print '<input type="hidden" name="createmode" value="empty">';
2044  }
2045 
2046  if (!empty($conf->global->PROPAL_CLONE_ON_CREATE_PAGE)) {
2047  print '<br><table>';
2048 
2049  // For backward compatibility
2050  print '<tr>';
2051  print '<td><input type="radio" name="createmode" value="copy"></td>';
2052  print '<td>'.$langs->trans("CopyPropalFrom").' </td>';
2053  print '<td>';
2054  $liste_propal = array();
2055  $liste_propal [0] = '';
2056 
2057  $sql = "SELECT p.rowid as id, p.ref, s.nom";
2058  $sql .= " FROM ".MAIN_DB_PREFIX."propal p";
2059  $sql .= ", ".MAIN_DB_PREFIX."societe s";
2060  $sql .= " WHERE s.rowid = p.fk_soc";
2061  $sql .= " AND p.entity IN (".getEntity('propal').")";
2062  $sql .= " AND p.fk_statut <> 0";
2063  $sql .= " ORDER BY Id";
2064 
2065  $resql = $db->query($sql);
2066  if ($resql) {
2067  $num = $db->num_rows($resql);
2068  $i = 0;
2069  while ($i < $num) {
2070  $row = $db->fetch_row($resql);
2071  $propalRefAndSocName = $row[1]." - ".$row[2];
2072  $liste_propal[$row[0]] = $propalRefAndSocName;
2073  $i++;
2074  }
2075  print $form->selectarray("copie_propal", $liste_propal, 0);
2076  } else {
2077  dol_print_error($db);
2078  }
2079  print '</td></tr>';
2080 
2081  print '<tr><td class="tdtop"><input type="radio" name="createmode" value="empty" checked></td>';
2082  print '<td valign="top" colspan="2">'.$langs->trans("CreateEmptyPropal").'</td></tr>';
2083  print '</table>';
2084  }
2085 
2086  print dol_get_fiche_end();
2087 
2088  $langs->load("bills");
2089 
2090  print $form->buttonsSaveCancel("CreateDraft");
2091 
2092  print "</form>";
2093 
2094 
2095  // Show origin lines
2096  if (!empty($origin) && !empty($originid) && is_object($objectsrc)) {
2097  print '<br>';
2098 
2099  $title = $langs->trans('ProductsAndServices');
2100  print load_fiche_titre($title);
2101 
2102  print '<div class="div-table-responsive-no-min">';
2103  print '<table class="noborder centpercent">';
2104 
2105  $objectsrc->printOriginLinesList();
2106 
2107  print '</table>';
2108  print '</div>';
2109  }
2110 } elseif ($object->id > 0) {
2111  /*
2112  * Show object in view mode
2113  */
2114 
2115  $soc = new Societe($db);
2116  $soc->fetch($object->socid);
2117 
2118  $head = propal_prepare_head($object);
2119  print dol_get_fiche_head($head, 'comm', $langs->trans('Proposal'), -1, 'propal');
2120 
2121  $formconfirm = '';
2122 
2123  // Clone confirmation
2124  if ($action == 'clone') {
2125  // Create an array for form
2126  $formquestion = array(
2127  // 'text' => $langs->trans("ConfirmClone"),
2128  // array('type' => 'checkbox', 'name' => 'clone_content', 'label' => $langs->trans("CloneMainAttributes"), 'value' => 1),
2129  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)', '', 0, 0, null, 0, 'maxwidth300')),
2130  array('type' => 'checkbox', 'name' => 'update_prices', 'label' => $langs->trans('PuttingPricesUpToDate'), 'value' => (!empty($conf->global->PROPOSAL_CLONE_UPDATE_PRICES) ? 1 : 0)),
2131  );
2132  if (!empty($conf->global->PROPAL_CLONE_DATE_DELIVERY) && !empty($object->delivery_date)) {
2133  $formquestion[] = array('type' => 'date', 'name' => 'date_delivery', 'label' => $langs->trans("DeliveryDate"), 'value' => $object->delivery_date);
2134  }
2135  // Incomplete payment. We ask if reason = discount or other
2136  $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id, $langs->trans('ToClone'), $langs->trans('ConfirmClonePropal', $object->ref), 'confirm_clone', $formquestion, 'yes', 1);
2137  }
2138 
2139  if ($action == 'closeas') {
2140  //Form to close proposal (signed or not)
2141  $formquestion = array();
2142  if (empty($conf->global->PROPAL_SKIP_ACCEPT_REFUSE)) {
2143  $formquestion[] = array('type' => 'select', 'name' => 'statut', 'label' => '<span class="fieldrequired">'.$langs->trans("CloseAs").'</span>', 'values' => array($object::STATUS_SIGNED => $object->LibStatut($object::STATUS_SIGNED), $object::STATUS_NOTSIGNED => $object->LibStatut($object::STATUS_NOTSIGNED)));
2144  }
2145  $formquestion[] = array('type' => 'text', 'name' => 'note_private', 'label' => $langs->trans("Note"), 'value' => ''); // Field to complete private note (not replace)
2146 
2147  if (getDolGlobalInt('PROPOSAL_SUGGEST_DOWN_PAYMENT_INVOICE_CREATION')) {
2148  // This is a hidden option:
2149  // Suggestion to create invoice during proposal signature is not enabled by default.
2150  // Such choice should be managed by the workflow module and trigger. This option generates conflicts with some setup.
2151  // It may also break step of creating an order when invoicing must be done from orders and not from proposal
2152  $deposit_percent_from_payment_terms = getDictionaryValue('c_payment_term', 'deposit_percent', $object->cond_reglement_id);
2153 
2154  if (!empty($deposit_percent_from_payment_terms) && isModEnabled('facture') && !empty($user->rights->facture->creer)) {
2155  require_once DOL_DOCUMENT_ROOT . '/compta/facture/class/facture.class.php';
2156 
2157  $object->fetchObjectLinked();
2158 
2159  $eligibleForDepositGeneration = true;
2160 
2161  if (array_key_exists('facture', $object->linkedObjects)) {
2162  foreach ($object->linkedObjects['facture'] as $invoice) {
2163  if ($invoice->type == Facture::TYPE_DEPOSIT) {
2164  $eligibleForDepositGeneration = false;
2165  break;
2166  }
2167  }
2168  }
2169 
2170  if ($eligibleForDepositGeneration && array_key_exists('commande', $object->linkedObjects)) {
2171  foreach ($object->linkedObjects['commande'] as $order) {
2172  $order->fetchObjectLinked();
2173 
2174  if (array_key_exists('facture', $order->linkedObjects)) {
2175  foreach ($order->linkedObjects['facture'] as $invoice) {
2176  if ($invoice->type == Facture::TYPE_DEPOSIT) {
2177  $eligibleForDepositGeneration = false;
2178  break 2;
2179  }
2180  }
2181  }
2182  }
2183  }
2184 
2185 
2186  if ($eligibleForDepositGeneration) {
2187  $formquestion[] = array(
2188  'type' => 'checkbox',
2189  'tdclass' => 'showonlyifsigned',
2190  'name' => 'generate_deposit',
2191  'morecss' => 'margintoponly marginbottomonly',
2192  'label' => $form->textwithpicto($langs->trans('GenerateDeposit', $object->deposit_percent), $langs->trans('DepositGenerationPermittedByThePaymentTermsSelected'))
2193  );
2194 
2195  $formquestion[] = array(
2196  'type' => 'date',
2197  'tdclass' => 'fieldrequired showonlyifgeneratedeposit',
2198  'name' => 'datef',
2199  'label' => $langs->trans('DateInvoice'),
2200  'value' => dol_now(),
2201  'datenow' => true
2202  );
2203 
2204  if (!empty($conf->global->INVOICE_POINTOFTAX_DATE)) {
2205  $formquestion[] = array(
2206  'type' => 'date',
2207  'tdclass' => 'fieldrequired showonlyifgeneratedeposit',
2208  'name' => 'date_pointoftax',
2209  'label' => $langs->trans('DatePointOfTax'),
2210  'value' => dol_now(),
2211  'datenow' => true
2212  );
2213  }
2214 
2215  $paymentTermsSelect = $form->getSelectConditionsPaiements(0, 'cond_reglement_id', -1, 0, 1, 'minwidth200');
2216 
2217  $formquestion[] = array(
2218  'type' => 'other',
2219  'tdclass' => 'fieldrequired showonlyifgeneratedeposit',
2220  'name' => 'cond_reglement_id',
2221  'label' => $langs->trans('PaymentTerm'),
2222  'value' => $paymentTermsSelect
2223  );
2224 
2225  $formquestion[] = array(
2226  'type' => 'checkbox',
2227  'tdclass' => 'showonlyifgeneratedeposit',
2228  'name' => 'validate_generated_deposit',
2229  'morecss' => 'margintoponly marginbottomonly',
2230  'label' => $langs->trans('ValidateGeneratedDeposit')
2231  );
2232 
2233  $formquestion[] = array(
2234  'type' => 'onecolumn',
2235  'value' => '
2236  <script>
2237  let signedValue = ' . $object::STATUS_SIGNED . ';
2238 
2239  $(document).ready(function() {
2240  $("[name=generate_deposit]").change(function () {
2241  let $self = $(this);
2242  let $target = $(".showonlyifgeneratedeposit").parent(".tagtr");
2243 
2244  if (! $self.parents(".tagtr").is(":hidden") && $self.is(":checked")) {
2245  $target.show();
2246  } else {
2247  $target.hide();
2248  }
2249 
2250  return true;
2251  });
2252 
2253  $("#statut").change(function() {
2254  let $target = $(".showonlyifsigned").parent(".tagtr");
2255 
2256  if ($(this).val() == signedValue) {
2257  $target.show();
2258  } else {
2259  $target.hide();
2260  }
2261 
2262  $("[name=generate_deposit]").trigger("change");
2263 
2264  return true;
2265  });
2266 
2267  $("#statut").trigger("change");
2268  });
2269  </script>
2270  '
2271  );
2272  }
2273  }
2274  }
2275 
2276  if (isModEnabled('notification')) {
2277  require_once DOL_DOCUMENT_ROOT.'/core/class/notify.class.php';
2278  $notify = new Notify($db);
2279  $formquestion = array_merge($formquestion, array(
2280  array('type' => 'onecolumn', 'value' => $notify->confirmMessage('PROPAL_CLOSE_SIGNED', $object->socid, $object)),
2281  ));
2282  }
2283 
2284  if (empty($conf->global->PROPAL_SKIP_ACCEPT_REFUSE)) {
2285  $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id, $langs->trans('SetAcceptedRefused'), $text, 'confirm_closeas', $formquestion, '', 1, 250);
2286  } else {
2287  $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?statut=3&id=' . $object->id, $langs->trans('Close'), $text, 'confirm_closeas', $formquestion, '', 1, 250);
2288  }
2289  } elseif ($action == 'delete') {
2290  // Confirm delete
2291  $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id, $langs->trans('DeleteProp'), $langs->trans('ConfirmDeleteProp', $object->ref), 'confirm_delete', '', 0, 1);
2292  } elseif ($action == 'reopen') {
2293  // Confirm reopen
2294  $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id, $langs->trans('ReOpen'), $langs->trans('ConfirmReOpenProp', $object->ref), 'confirm_reopen', '', 0, 1);
2295  } elseif ($action == 'ask_deleteline') {
2296  // Confirmation delete product/service line
2297  $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id.'&lineid='.$lineid, $langs->trans('DeleteProductLine'), $langs->trans('ConfirmDeleteProductLine'), 'confirm_deleteline', '', 0, 1);
2298  } elseif ($action == 'validate') {
2299  // Confirm validate proposal
2300  $error = 0;
2301 
2302  // We verify whether the object is provisionally numbering
2303  $ref = substr($object->ref, 1, 4);
2304  if ($ref == 'PROV' || $ref == '') {
2305  $numref = $object->getNextNumRef($soc);
2306  if (empty($numref)) {
2307  $error++;
2308  setEventMessages($object->error, $object->errors, 'errors');
2309  }
2310  } else {
2311  $numref = $object->ref;
2312  }
2313 
2314  $text = $langs->trans('ConfirmValidateProp', $numref);
2315  if (isModEnabled('notification')) {
2316  require_once DOL_DOCUMENT_ROOT.'/core/class/notify.class.php';
2317  $notify = new Notify($db);
2318  $text .= '<br>';
2319  $text .= $notify->confirmMessage('PROPAL_VALIDATE', $object->socid, $object);
2320  }
2321 
2322  // mandatoryPeriod
2323  $nbMandated = 0;
2324  foreach ($object->lines as $line) {
2325  $res = $line->fetch_product();
2326  if ($res > 0 ) {
2327  if ($line->product->isService() && $line->product->isMandatoryPeriod() && (empty($line->date_start) || empty($line->date_end) )) {
2328  $nbMandated++;
2329  break;
2330  }
2331  }
2332  }
2333  if ($nbMandated > 0) {
2334  $text .= '<div><span class="clearboth nowraponall warning">'.$langs->trans("mandatoryPeriodNeedTobeSetMsgValidate").'</span></div>';
2335  }
2336 
2337  if (!$error) {
2338  $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id, $langs->trans('ValidateProp'), $text, 'confirm_validate', '', 0, 1);
2339  }
2340  }
2341 
2342  // Call Hook formConfirm
2343  $parameters = array('formConfirm' => $formconfirm, 'lineid' => $lineid);
2344  $reshook = $hookmanager->executeHooks('formConfirm', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
2345  if (empty($reshook)) {
2346  $formconfirm .= $hookmanager->resPrint;
2347  } elseif ($reshook > 0) {
2348  $formconfirm = $hookmanager->resPrint;
2349  }
2350 
2351  // Print form confirm
2352  print $formconfirm;
2353 
2354 
2355  // Proposal card
2356 
2357  $linkback = '<a href="'.DOL_URL_ROOT.'/comm/propal/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
2358 
2359  $morehtmlref = '<div class="refidno">';
2360  // Ref customer
2361  $morehtmlref .= $form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, $usercancreate, 'string', '', 0, 1);
2362  $morehtmlref .= $form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, $usercancreate, 'string'.(isset($conf->global->THIRDPARTY_REF_INPUT_SIZE) ? ':'.$conf->global->THIRDPARTY_REF_INPUT_SIZE : ''), '', null, null, '', 1);
2363  // Thirdparty
2364  $morehtmlref .= '<br>'.$object->thirdparty->getNomUrl(1, 'customer');
2365  if (empty($conf->global->MAIN_DISABLE_OTHER_LINK) && $object->thirdparty->id > 0) {
2366  $morehtmlref .= ' (<a href="'.DOL_URL_ROOT.'/comm/propal/list.php?socid='.$object->thirdparty->id.'&search_societe='.urlencode($object->thirdparty->name).'">'.$langs->trans("OtherProposals").'</a>)';
2367  }
2368  // Project
2369  if (isModEnabled('project')) {
2370  $langs->load("projects");
2371  $morehtmlref .= '<br>';
2372  if ($usercancreate) {
2373  $morehtmlref .= img_picto($langs->trans("Project"), 'project', 'class="pictofixedwidth"');
2374  if ($action != 'classify') {
2375  $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> ';
2376  }
2377  $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, ($action == 'classify' ? 'projectid' : 'none'), 0, 0, 0, 1, '', 'maxwidth300');
2378  } else {
2379  if (!empty($object->fk_project)) {
2380  $proj = new Project($db);
2381  $proj->fetch($object->fk_project);
2382  $morehtmlref .= $proj->getNomUrl(1);
2383  if ($proj->title) {
2384  $morehtmlref .= '<span class="opacitymedium"> - '.dol_escape_htmltag($proj->title).'</span>';
2385  }
2386  }
2387  }
2388  }
2389  $morehtmlref .= '</div>';
2390 
2391 
2392  dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
2393 
2394 
2395  print '<div class="fichecenter">';
2396  print '<div class="fichehalfleft">';
2397  print '<div class="underbanner clearboth"></div>';
2398 
2399  print '<table class="border tableforfield centpercent">';
2400 
2401  // Link for thirdparty discounts
2402  if (!empty($conf->global->FACTURE_DEPOSITS_ARE_JUST_PAYMENTS)) {
2403  $filterabsolutediscount = "fk_facture_source IS NULL"; // If we want deposit to be substracted to payments only and not to total of final invoice
2404  $filtercreditnote = "fk_facture_source IS NOT NULL"; // If we want deposit to be substracted to payments only and not to total of final invoice
2405  } else {
2406  $filterabsolutediscount = "fk_facture_source IS NULL OR (description LIKE '(DEPOSIT)%' AND description NOT LIKE '(EXCESS RECEIVED)%')";
2407  $filtercreditnote = "fk_facture_source IS NOT NULL AND (description NOT LIKE '(DEPOSIT)%' OR description LIKE '(EXCESS RECEIVED)%')";
2408  }
2409 
2410  print '<tr><td class="titlefield">'.$langs->trans('Discounts').'</td><td>';
2411 
2412  $absolute_discount = $soc->getAvailableDiscounts('', $filterabsolutediscount);
2413  $absolute_creditnote = $soc->getAvailableDiscounts('', $filtercreditnote);
2414  $absolute_discount = price2num($absolute_discount, 'MT');
2415  $absolute_creditnote = price2num($absolute_creditnote, 'MT');
2416 
2417  $caneditfield = ($object->statut != Propal::STATUS_SIGNED && $object->statut != Propal::STATUS_BILLED);
2418 
2419  $thirdparty = $soc;
2420  $discount_type = 0;
2421  $backtopage = urlencode($_SERVER["PHP_SELF"].'?id='.$object->id);
2422  include DOL_DOCUMENT_ROOT.'/core/tpl/object_discounts.tpl.php';
2423 
2424  print '</td></tr>';
2425 
2426  // Date of proposal
2427  print '<tr>';
2428  print '<td>';
2429  // print '<table class="nobordernopadding" width="100%"><tr><td>';
2430  // print $langs->trans('DatePropal');
2431  // print '</td>';
2432  // if ($action != 'editdate' && $usercancreate && $caneditfield) {
2433  // print '<td class="right"><a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=editdate&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->trans('SetDate'), 1).'</a></td>';
2434  // }
2435 
2436  // print '</tr></table>';
2437  $editenable = $usercancreate && $caneditfield && $object->statut == Propal::STATUS_DRAFT;
2438  print $form->editfieldkey("DatePropal", 'date', '', $object, $editenable);
2439  print '</td><td class="valuefield">';
2440  if ($action == 'editdate' && $usercancreate && $caneditfield) {
2441  print '<form name="editdate" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'" method="post">';
2442  print '<input type="hidden" name="token" value="'.newToken().'">';
2443  print '<input type="hidden" name="action" value="setdate">';
2444  print $form->selectDate($object->date, 're', '', '', 0, "editdate");
2445  print '<input type="submit" class="button button-edit" value="'.$langs->trans('Modify').'">';
2446  print '</form>';
2447  } else {
2448  if ($object->date) {
2449  print dol_print_date($object->date, 'day');
2450  } else {
2451  print '&nbsp;';
2452  }
2453  }
2454  print '</td>';
2455 
2456  // Date end proposal
2457  print '<tr>';
2458  print '<td>';
2459  print '<table class="nobordernopadding centpercent"><tr><td>';
2460  print $langs->trans('DateEndPropal');
2461  print '</td>';
2462  if ($action != 'editecheance' && $usercancreate && $caneditfield) {
2463  print '<td class="right"><a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=editecheance&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->trans('SetConditions'), 1).'</a></td>';
2464  }
2465  print '</tr></table>';
2466  print '</td><td class="valuefield">';
2467  if ($action == 'editecheance' && $usercancreate && $caneditfield) {
2468  print '<form name="editecheance" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'" method="post">';
2469  print '<input type="hidden" name="token" value="'.newToken().'">';
2470  print '<input type="hidden" name="action" value="setecheance">';
2471  print $form->selectDate($object->fin_validite, 'ech', '', '', '', "editecheance");
2472  print '<input type="submit" class="button button-edit" value="'.$langs->trans('Modify').'">';
2473  print '</form>';
2474  } else {
2475  if (!empty($object->fin_validite)) {
2476  print dol_print_date($object->fin_validite, 'day');
2477  if ($object->statut == Propal::STATUS_VALIDATED && $object->fin_validite < ($now - $conf->propal->cloture->warning_delay)) {
2478  print img_warning($langs->trans("Late"));
2479  }
2480  } else {
2481  print '&nbsp;';
2482  }
2483  }
2484  print '</td>';
2485  print '</tr>';
2486 
2487  // Payment term
2488  print '<tr><td>';
2489  print '<table class="nobordernopadding" width="100%"><tr><td>';
2490  print $langs->trans('PaymentConditionsShort');
2491  print '</td>';
2492  if ($action != 'editconditions' && $usercancreate && $caneditfield) {
2493  print '<td class="right"><a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=editconditions&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetConditions'), 1).'</a></td>';
2494  }
2495  print '</tr></table>';
2496  print '</td><td class="valuefield">';
2497  if ($action == 'editconditions' && $usercancreate && $caneditfield) {
2498  $form->form_conditions_reglement($_SERVER['PHP_SELF'].'?id='.$object->id, $object->cond_reglement_id, 'cond_reglement_id', 0, '', 1, $object->deposit_percent);
2499  } else {
2500  $form->form_conditions_reglement($_SERVER['PHP_SELF'].'?id='.$object->id, $object->cond_reglement_id, 'none', 0, '', 1, $object->deposit_percent);
2501  }
2502  print '</td>';
2503  print '</tr>';
2504 
2505  // Payment mode
2506  print '<tr class="field_mode_reglement_id">';
2507  print '<td class="titlefieldcreate">';
2508  print '<table class="nobordernopadding centpercent"><tr><td>';
2509  print $langs->trans('PaymentMode');
2510  print '</td>';
2511  if ($action != 'editmode' && $usercancreate && $caneditfield) {
2512  print '<td class="right"><a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=editmode&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetMode'), 1).'</a></td>';
2513  }
2514  print '</tr></table>';
2515  print '</td><td class="valuefieldcreate">';
2516  if ($action == 'editmode' && $usercancreate && $caneditfield) {
2517  $form->form_modes_reglement($_SERVER['PHP_SELF'].'?id='.$object->id, $object->mode_reglement_id, 'mode_reglement_id', 'CRDT', 1, 1);
2518  } else {
2519  $form->form_modes_reglement($_SERVER['PHP_SELF'].'?id='.$object->id, $object->mode_reglement_id, 'none');
2520  }
2521  print '</td></tr>';
2522 
2523  // Delivery date
2524  $langs->load('deliveries');
2525  print '<tr><td>';
2526  print $form->editfieldkey($langs->trans('DeliveryDate'), 'date_livraison', $object->delivery_date, $object, $usercancreate && $caneditfield, 'datepicker');
2527  print '</td><td class="valuefieldedit">';
2528  print $form->editfieldval($langs->trans('DeliveryDate'), 'date_livraison', $object->delivery_date, $object, $usercancreate && $caneditfield, 'datepicker');
2529  print '</td>';
2530  print '</tr>';
2531 
2532  // Delivery delay
2533  print '<tr class="fielddeliverydelay"><td>';
2534  print '<table class="nobordernopadding" width="100%"><tr><td>';
2535  if (isModEnabled('commande')) {
2536  print $form->textwithpicto($langs->trans('AvailabilityPeriod'), $langs->trans('AvailabilityPeriod').' ('.$langs->trans('AfterOrder').')');
2537  } else {
2538  print $langs->trans('AvailabilityPeriod');
2539  }
2540  print '</td>';
2541  if ($action != 'editavailability' && $usercancreate && $caneditfield) {
2542  print '<td class="right"><a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=editavailability&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetAvailability'), 1).'</a></td>';
2543  }
2544  print '</tr></table>';
2545  print '</td><td class="valuefield">';
2546  if ($action == 'editavailability' && $usercancreate && $caneditfield) {
2547  $form->form_availability($_SERVER['PHP_SELF'].'?id='.$object->id, $object->availability_id, 'availability_id', 1);
2548  } else {
2549  $form->form_availability($_SERVER['PHP_SELF'].'?id='.$object->id, $object->availability_id, 'none', 1);
2550  }
2551 
2552  print '</td>';
2553  print '</tr>';
2554 
2555  // Shipping Method
2556  if (isModEnabled("expedition")) {
2557  print '<tr><td>';
2558  print '<table class="nobordernopadding centpercent"><tr><td>';
2559  print $langs->trans('SendingMethod');
2560  print '</td>';
2561  if ($action != 'editshippingmethod' && $usercancreate && $caneditfield) {
2562  print '<td class="right"><a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=editshippingmethod&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->trans('SetShippingMode'), 1).'</a></td>';
2563  }
2564  print '</tr></table>';
2565  print '</td><td class="valuefield">';
2566  if ($action == 'editshippingmethod' && $usercancreate && $caneditfield) {
2567  $form->formSelectShippingMethod($_SERVER['PHP_SELF'].'?id='.$object->id, $object->shipping_method_id, 'shipping_method_id', 1);
2568  } else {
2569  $form->formSelectShippingMethod($_SERVER['PHP_SELF'].'?id='.$object->id, $object->shipping_method_id, 'none');
2570  }
2571  print '</td>';
2572  print '</tr>';
2573  }
2574 
2575  // Warehouse
2576  if (isModEnabled('stock') && !empty($conf->global->WAREHOUSE_ASK_WAREHOUSE_DURING_PROPAL)) {
2577  $langs->load('stocks');
2578  require_once DOL_DOCUMENT_ROOT.'/product/class/html.formproduct.class.php';
2579  $formproduct = new FormProduct($db);
2580  print '<tr class="field_warehouse_id"><td class="titlefieldcreate">';
2581  $editenable = $usercancreate;
2582  print $form->editfieldkey("Warehouse", 'warehouse', '', $object, $editenable);
2583  print '</td><td class="valuefieldcreate">';
2584  if ($action == 'editwarehouse') {
2585  $formproduct->formSelectWarehouses($_SERVER['PHP_SELF'].'?id='.$object->id, $object->warehouse_id, 'warehouse_id', 1);
2586  } else {
2587  $formproduct->formSelectWarehouses($_SERVER['PHP_SELF'].'?id='.$object->id, $object->warehouse_id, 'none');
2588  }
2589  print '</td>';
2590  print '</tr>';
2591  }
2592 
2593  // Origin of demand
2594  print '<tr><td>';
2595  print '<table class="nobordernopadding centpercent"><tr><td>';
2596  print $langs->trans('Source');
2597  print '</td>';
2598  if ($action != 'editdemandreason' && $usercancreate) {
2599  print '<td class="right"><a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=editdemandreason&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetDemandReason'), 1).'</a></td>';
2600  }
2601  print '</tr></table>';
2602  print '</td><td class="valuefield">';
2603  if ($action == 'editdemandreason' && $usercancreate) {
2604  $form->formInputReason($_SERVER['PHP_SELF'].'?id='.$object->id, $object->demand_reason_id, 'demand_reason_id', 1);
2605  } else {
2606  $form->formInputReason($_SERVER['PHP_SELF'].'?id='.$object->id, $object->demand_reason_id, 'none');
2607  }
2608  print '</td>';
2609  print '</tr>';
2610 
2611  // Multicurrency
2612  if (isModEnabled("multicurrency")) {
2613  // Multicurrency code
2614  print '<tr>';
2615  print '<td>';
2616  print '<table class="nobordernopadding" width="100%"><tr><td>';
2617  print $form->editfieldkey('Currency', 'multicurrency_code', '', $object, 0);
2618  print '</td>';
2619  if ($action != 'editmulticurrencycode' && $object->statut == $object::STATUS_DRAFT && $usercancreate) {
2620  print '<td class="right"><a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=editmulticurrencycode&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetMultiCurrencyCode'), 1).'</a></td>';
2621  }
2622  print '</tr></table>';
2623  print '</td><td class="valuefield">';
2624  if ($object->statut == $object::STATUS_DRAFT && $action == 'editmulticurrencycode' && $usercancreate) {
2625  $form->form_multicurrency_code($_SERVER['PHP_SELF'].'?id='.$object->id, $object->multicurrency_code, 'multicurrency_code');
2626  } else {
2627  $form->form_multicurrency_code($_SERVER['PHP_SELF'].'?id='.$object->id, $object->multicurrency_code, 'none');
2628  }
2629  print '</td></tr>';
2630 
2631  // Multicurrency rate
2632  if ($object->multicurrency_code != $conf->currency || $object->multicurrency_tx != 1) {
2633  print '<tr>';
2634  print '<td>';
2635  print '<table class="nobordernopadding" width="100%"><tr>';
2636  print '<td>';
2637  print $form->editfieldkey('CurrencyRate', 'multicurrency_tx', '', $object, 0);
2638  print '</td>';
2639  if ($action != 'editmulticurrencyrate' && $object->statut == $object::STATUS_DRAFT && $object->multicurrency_code && $object->multicurrency_code != $conf->currency && $usercancreate) {
2640  print '<td class="right"><a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=editmulticurrencyrate&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetMultiCurrencyCode'), 1).'</a></td>';
2641  }
2642  print '</tr></table>';
2643  print '</td><td class="valuefield">';
2644  if ($object->statut == $object::STATUS_DRAFT && ($action == 'editmulticurrencyrate' || $action == 'actualizemulticurrencyrate') && $usercancreate) {
2645  if ($action == 'actualizemulticurrencyrate') {
2646  list($object->fk_multicurrency, $object->multicurrency_tx) = MultiCurrency::getIdAndTxFromCode($object->db, $object->multicurrency_code);
2647  }
2648  $form->form_multicurrency_rate($_SERVER['PHP_SELF'].'?id='.$object->id, $object->multicurrency_tx, 'multicurrency_tx', $object->multicurrency_code);
2649  } else {
2650  $form->form_multicurrency_rate($_SERVER['PHP_SELF'].'?id='.$object->id, $object->multicurrency_tx, 'none', $object->multicurrency_code);
2651  if ($object->statut == $object::STATUS_DRAFT && $object->multicurrency_code && $object->multicurrency_code != $conf->currency) {
2652  print '<div class="inline-block"> &nbsp; &nbsp; &nbsp; &nbsp; ';
2653  print '<a href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=actualizemulticurrencyrate">'.$langs->trans("ActualizeCurrency").'</a>';
2654  print '</div>';
2655  }
2656  }
2657  print '</td></tr>';
2658  }
2659  }
2660 
2661  if ($soc->outstanding_limit) {
2662  // Outstanding Bill
2663  print '<tr><td>';
2664  print $langs->trans('OutstandingBill');
2665  print '</td><td class="valuefield">';
2666  $arrayoutstandingbills = $soc->getOutstandingBills();
2667  print ($arrayoutstandingbills['opened'] > $soc->outstanding_limit ? img_warning() : '');
2668  print price($arrayoutstandingbills['opened']).' / ';
2669  print price($soc->outstanding_limit, 0, $langs, 1, - 1, - 1, $conf->currency);
2670  print '</td>';
2671  print '</tr>';
2672  }
2673 
2674  if (!empty($conf->global->BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL) && isModEnabled("banque")) {
2675  // Bank Account
2676  print '<tr><td>';
2677  print '<table width="100%" class="nobordernopadding"><tr><td>';
2678  print $langs->trans('BankAccount');
2679  print '</td>';
2680  if ($action != 'editbankaccount' && $usercancreate) {
2681  print '<td class="right"><a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=editbankaccount&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->trans('SetBankAccount'), 1).'</a></td>';
2682  }
2683  print '</tr></table>';
2684  print '</td><td class="valuefield">';
2685  if ($action == 'editbankaccount') {
2686  $form->formSelectAccount($_SERVER['PHP_SELF'].'?id='.$object->id, $object->fk_account, 'fk_account', 1);
2687  } else {
2688  $form->formSelectAccount($_SERVER['PHP_SELF'].'?id='.$object->id, $object->fk_account, 'none');
2689  }
2690  print '</td>';
2691  print '</tr>';
2692  }
2693 
2694  $tmparray = $object->getTotalWeightVolume();
2695  $totalWeight = $tmparray['weight'];
2696  $totalVolume = $tmparray['volume'];
2697  if ($totalWeight) {
2698  print '<tr><td>'.$langs->trans("CalculatedWeight").'</td>';
2699  print '<td class="valuefield">';
2700  print showDimensionInBestUnit($totalWeight, 0, "weight", $langs, isset($conf->global->MAIN_WEIGHT_DEFAULT_ROUND) ? $conf->global->MAIN_WEIGHT_DEFAULT_ROUND : -1, isset($conf->global->MAIN_WEIGHT_DEFAULT_UNIT) ? $conf->global->MAIN_WEIGHT_DEFAULT_UNIT : 'no', 0);
2701  print '</td></tr>';
2702  }
2703  if ($totalVolume) {
2704  print '<tr><td>'.$langs->trans("CalculatedVolume").'</td>';
2705  print '<td class="valuefield">';
2706  print showDimensionInBestUnit($totalVolume, 0, "volume", $langs, isset($conf->global->MAIN_VOLUME_DEFAULT_ROUND) ? $conf->global->MAIN_VOLUME_DEFAULT_ROUND : -1, isset($conf->global->MAIN_VOLUME_DEFAULT_UNIT) ? $conf->global->MAIN_VOLUME_DEFAULT_UNIT : 'no', 0);
2707  print '</td></tr>';
2708  }
2709 
2710  // Incoterms
2711  if (isModEnabled('incoterm')) {
2712  print '<tr><td>';
2713  print '<table width="100%" class="nobordernopadding"><tr><td>';
2714  print $langs->trans('IncotermLabel');
2715  print '<td><td class="right">';
2716  if ($action != 'editincoterm' && $usercancreate && $caneditfield) {
2717  print '<a class="editfielda" href="'.DOL_URL_ROOT.'/comm/propal/card.php?id='.$object->id.'&action=editincoterm&token='.newToken().'">'.img_edit().'</a>';
2718  } else {
2719  print '&nbsp;';
2720  }
2721  print '</td></tr></table>';
2722  print '</td>';
2723  print '<td class="valuefield">';
2724  if ($action == 'editincoterm' && $usercancreate && $caneditfield) {
2725  print $form->select_incoterms((!empty($object->fk_incoterms) ? $object->fk_incoterms : ''), (!empty($object->location_incoterms) ? $object->location_incoterms : ''), $_SERVER['PHP_SELF'].'?id='.$object->id);
2726  } else {
2727  print $form->textwithpicto($object->display_incoterms(), $object->label_incoterms, 1);
2728  }
2729  print '</td></tr>';
2730  }
2731 
2732  // Other attributes
2733  include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php';
2734 
2735  print '</table>';
2736 
2737  print '</div>';
2738  print '<div class="fichehalfright">';
2739  print '<div class="underbanner clearboth"></div>';
2740 
2741  print '<table class="border tableforfield centpercent">';
2742 
2743  if (isModEnabled("multicurrency") && ($object->multicurrency_code && $object->multicurrency_code != $conf->currency)) {
2744  // Multicurrency Amount HT
2745  print '<tr><td class="titlefieldmiddle">'.$form->editfieldkey('MulticurrencyAmountHT', 'multicurrency_total_ht', '', $object, 0).'</td>';
2746  print '<td class="nowrap right amountcard">'.price($object->multicurrency_total_ht, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)).'</td>';
2747  print '</tr>';
2748 
2749  // Multicurrency Amount VAT
2750  print '<tr><td>'.$form->editfieldkey('MulticurrencyAmountVAT', 'multicurrency_total_tva', '', $object, 0).'</td>';
2751  print '<td class="nowrap right amountcard">'.price($object->multicurrency_total_tva, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)).'</td>';
2752  print '</tr>';
2753 
2754  // Multicurrency Amount TTC
2755  print '<tr><td>'.$form->editfieldkey('MulticurrencyAmountTTC', 'multicurrency_total_ttc', '', $object, 0).'</td>';
2756  print '<td class="nowrap right amountcard">'.price($object->multicurrency_total_ttc, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)).'</td>';
2757  print '</tr>';
2758  }
2759 
2760  // Amount HT
2761  print '<tr><td class="titlefieldmiddle">'.$langs->trans('AmountHT').'</td>';
2762  print '<td class="nowrap right amountcard">'.price($object->total_ht, '', $langs, 0, - 1, - 1, $conf->currency).'</td>';
2763  print '</tr>';
2764 
2765  // Amount VAT
2766  print '<tr><td>'.$langs->trans('AmountVAT').'</td>';
2767  print '<td class="nowrap right amountcard">'.price($object->total_tva, '', $langs, 0, - 1, - 1, $conf->currency).'</td>';
2768  print '</tr>';
2769 
2770  // Amount Local Taxes
2771  if ($mysoc->localtax1_assuj == "1" || $object->total_localtax1 != 0) { // Localtax1
2772  print '<tr><td>'.$langs->transcountry("AmountLT1", $mysoc->country_code).'</td>';
2773  print '<td class="nowrap right amountcard">'.price($object->total_localtax1, '', $langs, 0, - 1, - 1, $conf->currency).'</td>';
2774  print '</tr>';
2775  }
2776  if ($mysoc->localtax2_assuj == "1" || $object->total_localtax2 != 0) { // Localtax2
2777  print '<tr><td>'.$langs->transcountry("AmountLT2", $mysoc->country_code).'</td>';
2778  print '<td class="nowrap right amountcard">'.price($object->total_localtax2, '', $langs, 0, - 1, - 1, $conf->currency).'</td>';
2779  print '</tr>';
2780  }
2781 
2782  // Amount TTC
2783  print '<tr><td>'.$langs->trans('AmountTTC').'</td>';
2784  print '<td class="nowrap right amountcard">'.price($object->total_ttc, '', $langs, 0, - 1, - 1, $conf->currency).'</td>';
2785  print '</tr>';
2786 
2787  // Statut
2788  //print '<tr><td height="10">' . $langs->trans('Status') . '</td><td class="left" colspan="2">' . $object->getLibStatut(4) . '</td></tr>';
2789 
2790  print '</table>';
2791 
2792  // Margin Infos
2793  if (isModEnabled('margin')) {
2794  $formmargin->displayMarginInfos($object);
2795  }
2796 
2797  print '</div>';
2798  print '</div>';
2799 
2800  print '<div class="clearboth"></div><br>';
2801 
2802  if (!empty($conf->global->MAIN_DISABLE_CONTACTS_TAB)) {
2803  $blocname = 'contacts';
2804  $title = $langs->trans('ContactsAddresses');
2805  include DOL_DOCUMENT_ROOT.'/core/tpl/bloc_showhide.tpl.php';
2806  }
2807 
2808  if (!empty($conf->global->MAIN_DISABLE_NOTES_TAB)) {
2809  $blocname = 'notes';
2810  $title = $langs->trans('Notes');
2811  include DOL_DOCUMENT_ROOT.'/core/tpl/bloc_showhide.tpl.php';
2812  }
2813 
2814  /*
2815  * Lines
2816  */
2817 
2818  // Get object lines
2819  $result = $object->getLinesArray();
2820 
2821  // Add products/services form
2822  //$forceall = 1;
2823  global $inputalsopricewithtax;
2824  $inputalsopricewithtax = 1;
2825 
2826  print ' <form name="addproduct" id="addproduct" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'" method="POST">
2827  <input type="hidden" name="token" value="' . newToken().'">
2828  <input type="hidden" name="action" value="' . (($action != 'editline') ? 'addline' : 'updateline').'">
2829  <input type="hidden" name="mode" value="">
2830  <input type="hidden" name="page_y" value="">
2831  <input type="hidden" name="id" value="' . $object->id.'">
2832  ';
2833 
2834  if (!empty($conf->use_javascript_ajax) && $object->statut == Propal::STATUS_DRAFT) {
2835  include DOL_DOCUMENT_ROOT.'/core/tpl/ajaxrow.tpl.php';
2836  }
2837 
2838  print '<div class="div-table-responsive-no-min">';
2839  if (!empty($object->lines) || ($object->statut == Propal::STATUS_DRAFT && $usercancreate && $action != 'selectlines' && $action != 'editline')) {
2840  print '<table id="tablelines" class="noborder noshadow" width="100%">';
2841  }
2842 
2843  if (!empty($object->lines)) {
2844  $object->printObjectLines($action, $mysoc, $object->thirdparty, $lineid, 1);
2845  }
2846 
2847  // Form to add new line
2848  if ($object->statut == Propal::STATUS_DRAFT && $usercancreate && $action != 'selectlines') {
2849  if ($action != 'editline') {
2850  $parameters = array();
2851  $reshook = $hookmanager->executeHooks('formAddObjectLine', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
2852  if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
2853  if (empty($reshook))
2854  $object->formAddObjectLine(1, $mysoc, $soc);
2855  } else {
2856  $parameters = array();
2857  $reshook = $hookmanager->executeHooks('formEditObjectLine', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
2858  }
2859  }
2860 
2861  if (!empty($object->lines) || ($object->statut == Propal::STATUS_DRAFT && $usercancreate && $action != 'selectlines' && $action != 'editline')) {
2862  print '</table>';
2863  }
2864  print '</div>';
2865 
2866  print "</form>\n";
2867 
2868  print dol_get_fiche_end();
2869 
2870 
2871  /*
2872  * Button Actions
2873  */
2874 
2875  if ($action != 'presend') {
2876  print '<div class="tabsAction">';
2877 
2878  $parameters = array();
2879  $reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been
2880  // modified by hook
2881  if (empty($reshook)) {
2882  if ($action != 'editline') {
2883  // Validate
2884  if (($object->statut == Propal::STATUS_DRAFT && $object->total_ttc >= 0 && count($object->lines) > 0)
2885  || ($object->statut == Propal::STATUS_DRAFT && !empty($conf->global->PROPAL_ENABLE_NEGATIVE) && count($object->lines) > 0)) {
2886  if ($usercanvalidate) {
2887  print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=validate&token='.newToken().'">'.(empty($conf->global->PROPAL_SKIP_ACCEPT_REFUSE) ? $langs->trans('Validate') : $langs->trans('ValidateAndSign')).'</a>';
2888  } else {
2889  print '<a class="butActionRefused classfortooltip" href="#">'.$langs->trans('Validate').'</a>';
2890  }
2891  }
2892  // Create event
2893  /*if ($conf->agenda->enabled && !empty($conf->global->MAIN_ADD_EVENT_ON_ELEMENT_CARD)) // Add hidden condition because this is not a "workflow" action so should appears somewhere else on page.
2894  {
2895  print '<a class="butAction" href="' . DOL_URL_ROOT . '/comm/action/card.php?action=create&amp;origin=' . $object->element . '&amp;originid=' . $object->id . '&amp;socid=' . $object->socid . '">' . $langs->trans("AddAction") . '</a></div>';
2896  }*/
2897  // Edit
2898  if ($object->statut == Propal::STATUS_VALIDATED && $usercancreate) {
2899  print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=modif&token='.newToken().'">'.$langs->trans('Modify').'</a>';
2900  }
2901 
2902  // ReOpen
2903  if ( (( !empty($conf->global->PROPAL_REOPEN_UNSIGNED_ONLY) && $object->statut == Propal::STATUS_NOTSIGNED) || (empty($conf->global->PROPAL_REOPEN_UNSIGNED_ONLY) && ($object->statut == Propal::STATUS_SIGNED || $object->statut == Propal::STATUS_NOTSIGNED || $object->statut == Propal::STATUS_BILLED))) && $usercanclose) {
2904  print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=reopen&token='.newToken().(empty($conf->global->MAIN_JUMP_TAG) ? '' : '#reopen').'"';
2905  print '>'.$langs->trans('ReOpen').'</a>';
2906  }
2907 
2908  // Send
2909  if (empty($user->socid)) {
2910  if ($object->statut == Propal::STATUS_VALIDATED || $object->statut == Propal::STATUS_SIGNED || !empty($conf->global->PROPOSAL_SENDBYEMAIL_FOR_ALL_STATUS)) {
2911  print dolGetButtonAction('', $langs->trans('SendMail'), 'default', $_SERVER["PHP_SELF"].'?action=presend&token='.newToken().'&id='.$object->id.'&mode=init#formmailbeforetitle', '', $usercansend);
2912  }
2913  }
2914 
2915  // Create a sale order
2916  if (isModEnabled('commande') && $object->statut == Propal::STATUS_SIGNED) {
2917  if ($usercancreateorder) {
2918  print '<a class="butAction" href="'.DOL_URL_ROOT.'/commande/card.php?action=create&origin='.$object->element.'&originid='.$object->id.'&socid='.$object->socid.'">'.$langs->trans("AddOrder").'</a>';
2919  }
2920  }
2921 
2922  // Create a purchase order
2923  if (!empty($conf->global->WORKFLOW_CAN_CREATE_PURCHASE_ORDER_FROM_PROPOSAL)) {
2924  if ($object->statut == Propal::STATUS_SIGNED && ((isModEnabled("fournisseur") && empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)) || isModEnabled("supplier_order"))) {
2925  if ($usercancreatepurchaseorder) {
2926  print '<a class="butAction" href="'.DOL_URL_ROOT.'/fourn/commande/card.php?action=create&origin='.$object->element.'&originid='.$object->id.'&socid='.$object->socid.'">'.$langs->trans("AddPurchaseOrder").'</a>';
2927  }
2928  }
2929  }
2930 
2931  // Create an intervention
2932  if (isModEnabled("service") && isModEnabled('ficheinter') && $object->statut == Propal::STATUS_SIGNED) {
2933  if ($usercancreateintervention) {
2934  $langs->load("interventions");
2935  print '<a class="butAction" href="'.DOL_URL_ROOT.'/fichinter/card.php?action=create&origin='.$object->element.'&originid='.$object->id.'&socid='.$object->socid.'">'.$langs->trans("AddIntervention").'</a>';
2936  }
2937  }
2938 
2939  // Create contract
2940  if (isModEnabled('contrat') && $object->statut == Propal::STATUS_SIGNED) {
2941  $langs->load("contracts");
2942 
2943  if ($usercancreatecontract) {
2944  print '<a class="butAction" href="'.DOL_URL_ROOT.'/contrat/card.php?action=create&origin='.$object->element.'&originid='.$object->id.'&socid='.$object->socid.'">'.$langs->trans('AddContract').'</a>';
2945  }
2946  }
2947 
2948  // Create an invoice and classify billed
2949  if ($object->statut == Propal::STATUS_SIGNED && empty($conf->global->PROPOSAL_ARE_NOT_BILLABLE)) {
2950  if (isModEnabled('facture') && $usercancreateinvoice) {
2951  print '<a class="butAction" href="'.DOL_URL_ROOT.'/compta/facture/card.php?action=create&origin='.$object->element.'&originid='.$object->id.'&socid='.$object->socid.'">'.$langs->trans("CreateBill").'</a>';
2952  }
2953 
2954  $arrayofinvoiceforpropal = $object->getInvoiceArrayList();
2955  if ((is_array($arrayofinvoiceforpropal) && count($arrayofinvoiceforpropal) > 0) || empty($conf->global->WORKFLOW_PROPAL_NEED_INVOICE_TO_BE_CLASSIFIED_BILLED)) {
2956  if ($usercanclose) {
2957  print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=classifybilled&token='.newToken().'&socid='.$object->socid.'">'.$langs->trans("ClassifyBilled").'</a>';
2958  } else {
2959  print '<a class="butActionRefused classfortooltip" href="#" title="'.$langs->trans("NotEnoughPermissions").'">'.$langs->trans("ClassifyBilled").'</a>';
2960  }
2961  }
2962  }
2963 
2964  if (empty($conf->global->PROPAL_SKIP_ACCEPT_REFUSE)) {
2965  // Close as accepted/refused
2966  if ($object->statut == Propal::STATUS_VALIDATED) {
2967  if ($usercanclose) {
2968  print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=closeas&token='.newToken().(empty($conf->global->MAIN_JUMP_TAG) ? '' : '#close').'"';
2969  print '>'.$langs->trans('SetAcceptedRefused').'</a>';
2970  } else {
2971  print '<a class="butActionRefused classfortooltip" href="#" title="'.$langs->trans("NotEnoughPermissions").'"';
2972  print '>'.$langs->trans('SetAcceptedRefused').'</a>';
2973  }
2974  }
2975  } else {
2976  // Set not signed (close)
2977  if ($object->statut == Propal::STATUS_DRAFT && $usercanclose) {
2978  print '<a class="butAction" href="' . $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&token='.newToken().'&action=closeas&token='.newToken() . (empty($conf->global->MAIN_JUMP_TAG) ? '' : '#close') . '"';
2979  print '>' . $langs->trans('SetRefusedAndClose') . '</a>';
2980  }
2981  }
2982 
2983  // Clone
2984  if ($usercancreate) {
2985  print '<a class="butAction" href="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'&socid='.$object->socid.'&action=clone&token='.newToken().'&object='.$object->element.'">'.$langs->trans("ToClone").'</a>';
2986  }
2987 
2988  // Delete
2989  print dolGetButtonAction($langs->trans("Delete"), '', 'delete', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=delete&token='.newToken(), 'delete', $usercandelete);
2990  }
2991  }
2992 
2993  print '</div>';
2994  }
2995 
2996  //Select mail models is same action as presend
2997  if (GETPOST('modelselected')) {
2998  $action = 'presend';
2999  }
3000 
3001  if ($action != 'presend') {
3002  print '<div class="fichecenter"><div class="fichehalfleft">';
3003  print '<a name="builddoc"></a>'; // ancre
3004  /*
3005  * Generated documents
3006  */
3007  $objref = dol_sanitizeFileName($object->ref);
3008  $filedir = $conf->propal->multidir_output[$object->entity]."/".dol_sanitizeFileName($object->ref);
3009  $urlsource = $_SERVER["PHP_SELF"]."?id=".$object->id;
3010  $genallowed = $usercanread;
3011  $delallowed = $usercancreate;
3012 
3013  print $formfile->showdocuments('propal', $objref, $filedir, $urlsource, $genallowed, $delallowed, $object->model_pdf, 1, 0, 0, 28, 0, '', 0, '', $soc->default_lang, '', $object);
3014 
3015  // Show links to link elements
3016  $linktoelem = $form->showLinkToObjectBlock($object, null, array('propal'));
3017 
3018  $compatibleImportElementsList = false;
3019  if ($user->rights->propal->creer && $object->statut == Propal::STATUS_DRAFT) {
3020  $compatibleImportElementsList = array('commande', 'propal'); // import from linked elements
3021  }
3022  $somethingshown = $form->showLinkedObjectBlock($object, $linktoelem, $compatibleImportElementsList);
3023 
3024  // Show online signature link
3025  $useonlinesignature = 1;
3026 
3027  if ($object->statut != Propal::STATUS_DRAFT && $useonlinesignature) {
3028  print '<br><!-- Link to sign -->';
3029  require_once DOL_DOCUMENT_ROOT.'/core/lib/signature.lib.php';
3030  print showOnlineSignatureUrl('proposal', $object->ref).'<br>';
3031  }
3032 
3033  print '</div><div class="fichehalfright">';
3034 
3035  // List of actions on element
3036  include_once DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php';
3037  $formactions = new FormActions($db);
3038  $somethingshown = $formactions->showactions($object, 'propal', $socid, 1);
3039 
3040  print '</div></div>';
3041  }
3042 
3043  // Presend form
3044  $modelmail = 'propal_send';
3045  $defaulttopic = 'SendPropalRef';
3046  $diroutput = $conf->propal->multidir_output[$object->entity];
3047  $trackid = 'pro'.$object->id;
3048 
3049  include DOL_DOCUMENT_ROOT.'/core/tpl/card_presend.tpl.php';
3050 }
3051 
3052 // End of page
3053 llxFooter();
3054 $db->close();
Societe
Class to manage third parties objects (customers, suppliers, prospects...)
Definition: societe.class.php:50
Propal\STATUS_SIGNED
const STATUS_SIGNED
Signed quote.
Definition: propal.class.php:365
dol_sanitizeFileName
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
Definition: functions.lib.php:1236
llxFooter
llxFooter()
Empty footer.
Definition: wrapper.php:70
Project
Class to manage projects.
Definition: project.class.php:35
ProductCombination
Class ProductCombination Used to represent a product combination.
Definition: ProductCombination.class.php:24
Productcustomerprice
File of class to manage predefined price products or services by customer.
Definition: productcustomerprice.class.php:29
$sql
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $sql
Social contributions to pay.
Definition: index.php:745
load_fiche_titre
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
Definition: functions.lib.php:5363
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:530
dol_print_error
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
Definition: functions.lib.php:4994
FormActions
Class to manage building of HTML components.
Definition: html.formactions.class.php:30
dol_include_once
if(!function_exists('dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
Definition: functions.lib.php:1043
Translate
Class to manage translations.
Definition: translate.class.php:30
img_warning
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
Definition: functions.lib.php:4671
FormProjets
Class to manage building of HTML components.
Definition: html.formprojet.class.php:30
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
FormMargin
Classe permettant la generation de composants html autre Only common components are here.
Definition: html.formmargin.class.php:29
FormPropal
Class to manage generation of HTML components for proposal management.
Definition: html.formpropal.class.php:29
dol_clone
dol_clone($object, $native=0)
Create a clone of instance of object (new instance with same value for each properties) With native =...
Definition: functions.lib.php:1168
Notify
Class to manage notifications.
Definition: notify.class.php:33
img_edit
img_edit($titlealt='default', $float=0, $other='')
Show logo editer/modifier fiche.
Definition: functions.lib.php:4539
dol_banner_tab
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
Definition: functions.lib.php:2097
$help_url
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
Definition: agenda.php:118
price2num
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
Definition: functions.lib.php:5834
Facture\TYPE_DEPOSIT
const TYPE_DEPOSIT
Deposit invoice.
Definition: facture.class.php:392
dol_print_date
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
Definition: functions.lib.php:2566
Propal\STATUS_DRAFT
const STATUS_DRAFT
Draft status.
Definition: propal.class.php:357
dol_concatdesc
dol_concatdesc($text1, $text2, $forxml=false, $invert=false)
Concat 2 descriptions with a new line between them (second operand after first one with appropriate n...
Definition: functions.lib.php:7590
img_picto
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
Definition: functions.lib.php:4025
llxHeader
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:56
Facture\createDepositFromOrigin
static createDepositFromOrigin(CommonObject $origin, $date, $payment_terms_id, User $user, $notrigger=0, $autoValidateDeposit=false, $overrideFields=array())
Creates a deposit from a proposal or an order by grouping lines by VAT rates.
Definition: facture.class.php:1493
$formactions
if(preg_match('/set_([a-z0-9_\-]+)/i', $action, $reg)) if(preg_match('/del_([a-z0-9_\-]+)/i', $action, $reg)) if($action=='set') elseif($action=='specimen') elseif($action=='setmodel') elseif($action=='del') elseif($action=='setdoc') $formactions
View.
Definition: agenda_other.php:182
$formconfirm
$formconfirm
if ($action == 'delbookkeepingyear') {
Definition: listbyaccount.php:634
Propal\STATUS_BILLED
const STATUS_BILLED
Billed or processed quote.
Definition: propal.class.php:373
FormFile
Class to offer components to list and upload files.
Definition: html.formfile.class.php:36
get_localtax
get_localtax($vatrate, $local, $thirdparty_buyer="", $thirdparty_seller="", $vatnpr=0)
Return localtax rate for a particular vat, when selling a product with vat $vatrate,...
Definition: functions.lib.php:6015
propal_prepare_head
propal_prepare_head($object)
Prepare array with list of tabs.
Definition: propal.lib.php:32
getDictionaryValue
getDictionaryValue($tablename, $field, $id, $checkentity=false, $rowidfield='rowid')
Return the value of a filed into a dictionary for the record $id.
Definition: functions.lib.php:10567
Propal\STATUS_VALIDATED
const STATUS_VALIDATED
Validated status.
Definition: propal.class.php:361
dol_syslog
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
Definition: functions.lib.php:1639
setEventMessage
setEventMessage($mesgs, $style='mesgs')
Set event message in dol_events session object.
Definition: functions.lib.php:8480
MultiCurrency\getIdAndTxFromCode
static getIdAndTxFromCode($dbs, $code, $date_document='')
Get id and rate of currency from code.
Definition: multicurrency.class.php:526
dol_get_fiche_head
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
Definition: functions.lib.php:1873
getDolGlobalString
if(!function_exists('utf8_encode')) if(!function_exists('utf8_decode')) getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
Definition: functions.lib.php:82
dol_htmlcleanlastbr
dol_htmlcleanlastbr($stringtodecode)
This function remove all ending and br at end.
Definition: functions.lib.php:7374
restrictedArea
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
Definition: security.lib.php:341
FormProduct
Class with static methods for building HTML components related to products Only components common to ...
Definition: html.formproduct.class.php:30
newToken
newToken()
Return the value of token currently saved into session with name 'newtoken'.
Definition: functions.lib.php:11317
dol_get_fiche_end
dol_get_fiche_end($notab=0)
Return tab footer of a card.
Definition: functions.lib.php:2069
isModEnabled
isModEnabled($module)
Is Dolibarr module enabled.
Definition: functions.lib.php:147
GETPOSTISSET
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
Definition: functions.lib.php:431
dolGetButtonAction
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
Definition: functions.lib.php:10880
ExtraFields
Class to manage standard extra fields.
Definition: extrafields.class.php:39
Product
Class to manage products or services.
Definition: product.class.php:46
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52
$parameters
$parameters
Actions.
Definition: card.php:79
dol_now
dol_now($mode='auto')
Return date for now.
Definition: functions.lib.php:2947
price
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
Definition: functions.lib.php:5708
getCountry
getCountry($searchkey, $withcode='', $dbtouse=0, $outputlangs='', $entconv=1, $searchlabel='')
Return country label, code or id from an id, code or label.
Definition: company.lib.php:515
setEventMessages
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
Definition: functions.lib.php:8509
ModelePDFPropales\liste_modeles
static liste_modeles($db, $maxfilenamelength=0)
Return list of active generation modules.
Definition: modules_propale.php:53
Propal
Class to manage proposals.
Definition: propal.class.php:52
dol_mktime
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
Definition: functions.lib.php:2859
getDolGlobalInt
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
Definition: functions.lib.php:96
showDimensionInBestUnit
showDimensionInBestUnit($dimension, $unit, $type, $outputlangs, $round=-1, $forceunitoutput='no', $use_short_label=0)
Output a dimension with best unit.
Definition: functions.lib.php:5966
DolEditor
Class to manage a WYSIWYG editor.
Definition: doleditor.class.php:30
Propal\STATUS_NOTSIGNED
const STATUS_NOTSIGNED
Not signed quote.
Definition: propal.class.php:369