This commit is contained in:
Laurent Destailleur 2015-03-06 01:53:02 +01:00
parent 1660c1c05b
commit 049174b76f
4 changed files with 15 additions and 15 deletions

View File

@ -221,7 +221,7 @@ else if ($action == 'set_FICHINTER_DRAFT_WATERMARK')
elseif ($action == 'set_FICHINTER_PRINT_PRODUCTS') elseif ($action == 'set_FICHINTER_PRINT_PRODUCTS')
{ {
$val = GETPOST('FICHINTER_PRINT_PRODUCTS','alpha'); $val = GETPOST('FICHINTER_PRINT_PRODUCTS','alpha');
$res = dolibarr_set_const($db, "FICHINTER_PRINT_PRODUCTS",($val == 'on'),'bool',0,'',$conf->entity); $res = dolibarr_set_const($db, "FICHINTER_PRINT_PRODUCTS",($val == 'on' ? 1 : 0),'bool',0,'',$conf->entity);
if (! $res > 0) $error++; if (! $res > 0) $error++;

View File

@ -208,7 +208,7 @@ $formfile->form_attach_new_file($_SERVER['PHP_SELF'], $langs->trans("FormToTestF
// List of document // List of document
$filearray=dol_dir_list($upload_dir, "files", 0, '', '', 'name', SORT_ASC, 1); $filearray=dol_dir_list($upload_dir, "files", 0, '', '', 'name', SORT_ASC, 1);
$formfile->list_of_documents($filearray, '', 'admin_temp', ''); $formfile->list_of_documents($filearray, null, 'admin_temp', '');
llxFooter(); llxFooter();
$db->close(); $db->close();

View File

@ -91,7 +91,7 @@ llxHeader();
if ($object->id) if ($object->id)
{ {
$head=contract_prepare_head($object, $user); $head=contract_prepare_head($object);
dol_fiche_head($head, 'documents', $langs->trans("Contract"), 0, 'contract'); dol_fiche_head($head, 'documents', $langs->trans("Contract"), 0, 'contract');

View File

@ -888,7 +888,7 @@ abstract class CommonObject
if (! $this->table_element) if (! $this->table_element)
{ {
dol_print_error('',get_class($this)."::load_previous_next_ref was called on objet with property table_element not defined", LOG_ERR); dol_print_error('',get_class($this)."::load_previous_next_ref was called on objet with property table_element not defined");
return -1; return -1;
} }
@ -2389,8 +2389,8 @@ abstract class CommonObject
return 1; return 1;
} }
} }
/** /**
* Return incoterms informations * Return incoterms informations
* *
@ -2409,13 +2409,13 @@ abstract class CommonObject
$res = $this->db->fetch_object($result); $res = $this->db->fetch_object($result);
$out .= $res->code; $out .= $res->code;
} }
} }
$out .= ' - '.$this->location_incoterms; $out .= ' - '.$this->location_incoterms;
return $out; return $out;
} }
/** /**
* Return incoterms informations for pdf display * Return incoterms informations for pdf display
* *
@ -2430,12 +2430,12 @@ abstract class CommonObject
$res = $this->db->fetch_object($resql); $res = $this->db->fetch_object($resql);
return 'Incoterm : '.$res->code.' - '.$this->location_incoterms; return 'Incoterm : '.$res->code.' - '.$this->location_incoterms;
} }
else else
{ {
return false; return false;
} }
} }
/** /**
* Define incoterms values of current object * Define incoterms values of current object
* *
@ -2457,14 +2457,14 @@ abstract class CommonObject
{ {
$this->fk_incoterms = $id_incoterm; $this->fk_incoterms = $id_incoterm;
$this->location_incoterms = $location; $this->location_incoterms = $location;
$sql = 'SELECT libelle FROM '.MAIN_DB_PREFIX.'c_incoterms WHERE rowid = '.(int) $this->fk_incoterms; $sql = 'SELECT libelle FROM '.MAIN_DB_PREFIX.'c_incoterms WHERE rowid = '.(int) $this->fk_incoterms;
$res = $this->db->query($sql); $res = $this->db->query($sql);
if ($res) if ($res)
{ {
$obj = $this->db->fetch_object($res); $obj = $this->db->fetch_object($res);
$this->libelle_incoterms = $obj->libelle; $this->libelle_incoterms = $obj->libelle;
} }
return 1; return 1;
} }
else else