diff --git a/htdocs/compta/facture.php b/htdocs/compta/facture.php index f7f94b3d41c..5f324712ab7 100644 --- a/htdocs/compta/facture.php +++ b/htdocs/compta/facture.php @@ -2174,9 +2174,9 @@ if ($action == 'create') $desc = $form->textwithpicto($text, $langs->transnoentities("InvoiceAvoirDesc"), 1, 'help', '', 0, 3); print $desc; - print '
| ';
- $ret.=' ';
- //}
+ $ret.=' ';
$ret.=dol_htmlentities($object->$fieldref);
if ($morehtmlref)
diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php
index 9681a3a179b..8649528d883 100644
--- a/htdocs/core/lib/functions.lib.php
+++ b/htdocs/core/lib/functions.lib.php
@@ -768,7 +768,7 @@ function dol_get_fiche_head($links=array(), $active='0', $title='', $notab=0, $p
}
else
{
- $out.=''.$links[$i][1].''."\n";
+ $out.=''.$links[$i][1].''."\n";
}
}
$out.=' ';
@@ -807,6 +807,8 @@ function dol_get_fiche_head($links=array(), $active='0', $title='', $notab=0, $p
$out.="";
}
+ $out.="'."\n";
return $out;
@@ -2847,7 +2849,7 @@ function print_barre_liste($titre, $page, $file, $options='', $sortfield='', $so
{
if ($totalnboflines) // If we know total nb of lines
{
- $maxnbofpage=(empty($conf->dol_optimize_smallscreen)?10:3); // nb before and after selected page
+ $maxnbofpage=(empty($conf->dol_optimize_smallscreen) ? 6 : 3); // nb before and after selected page + ... + first or last
$nbpages=ceil($totalnboflines/$conf->liste_limit);
$cpt=($page-$maxnbofpage);
@@ -2856,8 +2858,10 @@ function print_barre_liste($titre, $page, $file, $options='', $sortfield='', $so
if ($cpt>=1)
{
$pagelist.= '
product->enabled) || ! empty($conf->service->enabled)) { ?>
-
+
">
@@ -552,7 +552,7 @@ jQuery(document).ready(function() {
/* Define default price at loading */
var defaultprice = $("#fournprice_predef").find('option:selected').attr("price");
- $("#buying_price").val(defaultprice);
+ $("#buying_price").val(Math.round(defaultprice,global->MAIN_MAX_DECIMALS_UNIT ? $conf->global->MAIN_MAX_DECIMALS_UNIT : 5); ?>));
$("#fournprice_predef").change(function() {
/* Hide field buying_price according to choice into list (if 'inputprice' or not) */
diff --git a/htdocs/core/tpl/objectline_edit.tpl.php b/htdocs/core/tpl/objectline_edit.tpl.php
index 4b024175423..d61831cfec2 100644
--- a/htdocs/core/tpl/objectline_edit.tpl.php
+++ b/htdocs/core/tpl/objectline_edit.tpl.php
@@ -172,7 +172,7 @@ $coldisplay=-1; // We remove first td
|
product->enabled) || ! empty($conf->service->enabled)) { ?>
-
+
diff --git a/htdocs/societe/soc.php b/htdocs/societe/soc.php
index 08bf5268b8f..637110d4a88 100644
--- a/htdocs/societe/soc.php
+++ b/htdocs/societe/soc.php
@@ -1230,6 +1230,8 @@ else
// Categories
if (! empty($conf->categorie->enabled) && ! empty($user->rights->categorie->lire))
{
+ $langs->load('categories');
+
// Customer
if ($object->prospect || $object->client) {
print ' | ' . fieldLabel('CustomersCategoriesShort', 'custcats') . ' | ';
diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php
index 299a860380b..df537296646 100644
--- a/htdocs/theme/eldy/style.css.php
+++ b/htdocs/theme/eldy/style.css.php
@@ -1521,27 +1521,16 @@ a.tab:link, a.tab:visited, a.tab:hover, a.tab#active {
text-decoration: none;
white-space: nowrap;
- /*-moz-border-radius:6px 6px 0px 0px;
- -webkit-border-radius:6px 6px 0px 0px;
- border-radius:6px 6px 0px 0px;
-
- background: rgb();
-
- border-right: 1px solid #BBB;
- border-left: 1px solid #BBB;
- border-top: 1px solid #CCC;
- */
-
border-right: 1px solid transparent;
border-left: 1px solid transparent;
border-top: 1px solid transparent;
+ border-bottom: 0px !important;
-moz-border-radius:4px 4px 0 0;
-webkit-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
background-image: none !important;
}
-
.tabactive, a.tab#active {
color: # !important;
background: rgb() !important;
@@ -2077,14 +2066,12 @@ div.pagination li.pagination a,
div.pagination li.pagination span {
dol_use_jmobile)) { ?>
padding: 6px 12px;
-
+ border-color: #ccc;
margin-left: -1px;
line-height: 1.42857143;
color: #000;
text-decoration: none;
- border-color: #ccc;
-
background-color: #f5f5f5;
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
@@ -2092,6 +2079,7 @@ div.pagination li.pagination span {
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
background-repeat: repeat-x;
+
}
div.pagination li.pagination span.inactive {
cursor: default;
@@ -3622,7 +3610,9 @@ ul.ulmenu {
color: # !important;
text-shadow: 1px 0px 1px #;
}
-
+.ui-btn-icon-right {
+ border-right: 1px solid #ccc !important;
+}
.ui-body-c {
border: 1px solid #ccc;
text-shadow: none;
@@ -3646,14 +3636,14 @@ ul.ulmenu {
div.tabsElem a.tab {
background: transparent;
}
-.ui-controlgroup-horizontal .ui-btn.ui-first-child {
+/*.ui-controlgroup-horizontal .ui-btn.ui-first-child {
-webkit-border-top-left-radius: 6px;
border-top-left-radius: 6px;
}
.ui-controlgroup-horizontal .ui-btn.ui-last-child {
-webkit-border-top-right-radius: 6px;
border-top-right-radius: 6px;
-}
+}*/
.alilevel1 {
color: # !important;
text-shadow: 1px 0px 1px #;
| | ||