diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php
index 31716dc3f3c..878b85993b5 100644
--- a/htdocs/core/lib/functions.lib.php
+++ b/htdocs/core/lib/functions.lib.php
@@ -3149,7 +3149,7 @@ function img_picto($titlealt, $picto, $moreatt = '', $pictoisfullpath = false, $
if (empty($srconly) && in_array($pictowithouttext, array(
'1downarrow', '1uparrow', '1leftarrow', '1rightarrow', '1uparrow_selected', '1downarrow_selected', '1leftarrow_selected', '1rightarrow_selected',
'accountancy', 'address', 'bank_account', 'barcode', 'bank', 'bill', 'bookmark', 'bom', 'building',
- 'cash-register', 'check', 'close_title', 'company', 'contact', 'contract', 'cubes',
+ 'cash-register', 'category', 'check', 'close_title', 'company', 'contact', 'contract', 'cubes',
'delete', 'dolly', 'dollyrevert', 'edit', 'ellipsis-h', 'external-link-alt', 'external-link-square-alt',
'filter', 'file-code', 'file-export', 'file-import', 'file-upload', 'folder', 'folder-open', 'globe', 'globe-americas', 'grip', 'grip_title', 'help',
'intervention', 'label', 'language', 'list', 'listlight', 'lot',
diff --git a/htdocs/projet/card.php b/htdocs/projet/card.php
index 15d1d6d9563..e79d5bafa59 100644
--- a/htdocs/projet/card.php
+++ b/htdocs/projet/card.php
@@ -604,7 +604,7 @@ if ($action == 'create' && $user->rights->projet->creer)
print '
';
$filteronlist = '';
if (!empty($conf->global->PROJECT_FILTER_FOR_THIRDPARTY_LIST)) $filteronlist = $conf->global->PROJECT_FILTER_FOR_THIRDPARTY_LIST;
- $text = $form->select_company(GETPOST('socid', 'int'), 'socid', $filteronlist, 'SelectThirdParty', 1, 0, array(), 0, 'minwidth300');
+ $text = img_picto('', 'company').$form->select_company(GETPOST('socid', 'int'), 'socid', $filteronlist, 'SelectThirdParty', 1, 0, array(), 0, 'minwidth300 widthcentpercentminusx');
if (empty($conf->global->PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS) && empty($conf->dol_use_jmobile))
{
$texthelp = $langs->trans("IfNeedToUseOtherObjectKeepEmpty");
@@ -680,7 +680,7 @@ if ($action == 'create' && $user->rights->projet->creer)
print ' | | '.$langs->trans("Categories").' | ';
$cate_arbo = $form->select_all_categories(Categorie::TYPE_PROJECT, '', 'parent', 64, 0, 1);
$arrayselected = GETPOST('categories', 'array');
- print $form->multiselectarray('categories', $cate_arbo, $arrayselected, '', 0, '', 0, '100%');
+ print img_picto('', 'category').$form->multiselectarray('categories', $cate_arbo, $arrayselected, '', 0, 'widthcentpercentminusx', 0, 0);
print " |
";
}
diff --git a/htdocs/societe/card.php b/htdocs/societe/card.php
index 195d4df88bb..6abb7aa9647 100644
--- a/htdocs/societe/card.php
+++ b/htdocs/societe/card.php
@@ -1331,7 +1331,7 @@ else
// Country
print '| '.$form->editfieldkey('Country', 'selectcountry_id', '', $object, 0).' | ';
print img_picto('', 'globe-americas', 'class="paddingrightonly"');
- print $form->select_country((GETPOST('country_id') != '' ?GETPOST('country_id') : $object->country_id));
+ print $form->select_country((GETPOST('country_id') != '' ? GETPOST('country_id') : $object->country_id), 'country_id', '', 0, 'minwidth300 widthcentpercentminusx');
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
print ' |
';
@@ -1354,16 +1354,16 @@ else
// Phone / Fax
print '| '.$form->editfieldkey('Phone', 'phone', '', $object, 0).' | ';
- print 'browser->layout == 'phone' ? ' colspan="3"': '').'>'.img_picto('', 'object_phoning').' | ';
+ print 'browser->layout == 'phone' ? ' colspan="3"': '').'>'.img_picto('', 'object_phoning').' | ';
if ($conf->browser->layout == 'phone') print '
';
print '| '.$form->editfieldkey('Fax', 'fax', '', $object, 0).' | ';
- print 'browser->layout == 'phone' ? ' colspan="3"': '').'>'.img_picto('', 'object_phoning_fax').' |
';
+ print 'browser->layout == 'phone' ? ' colspan="3"': '').'>'.img_picto('', 'object_phoning_fax').' | ';
// Email / Web
print '| '.$form->editfieldkey('EMail', 'email', '', $object, 0, 'string', '', $conf->global->SOCIETE_EMAIL_MANDATORY).' | ';
- print ''.img_picto('', 'object_email').' |
';
+ print ''.img_picto('', 'object_email').' | ';
print '| '.$form->editfieldkey('Web', 'url', '', $object, 0).' | ';
- print ''.img_picto('', 'globe').' |
';
+ print ''.img_picto('', 'globe').' | ';
if (!empty($conf->socialnetworks->enabled)) {
foreach ($socialnetworks as $key => $value) {
@@ -1380,42 +1380,6 @@ else
}
}
- // if (! empty($conf->socialnetworks->enabled))
- // {
- // // Skype
- // if (! empty($conf->global->SOCIALNETWORKS_SKYPE))
- // {
- // print '| '.$form->editfieldkey('Skype', 'skype', '', $object, 0).' | ';
- // print '';
- // print 'skype).'">';
- // print ' |
';
- // }
- // // Twitter
- // if (! empty($conf->global->SOCIALNETWORKS_TWITTER))
- // {
- // print '| '.$form->editfieldkey('Twitter', 'twitter', '', $object, 0).' | ';
- // print '';
- // print 'twitter).'">';
- // print ' |
';
- // }
- // // Facebook
- // if (! empty($conf->global->SOCIALNETWORKS_FACEBOOK))
- // {
- // print '| '.$form->editfieldkey('Facebook', 'facebook', '', $object, 0).' | ';
- // print '';
- // print 'facebook).'">';
- // print ' |
';
- // }
- // // LinkedIn
- // if (! empty($conf->global->SOCIALNETWORKS_LINKEDIN))
- // {
- // print '| '.$form->editfieldkey('LinkedIn', 'linkedin', '', $object, 0).' | ';
- // print '';
- // print 'linkedin).'">';
- // print ' |
';
- // }
- // }
-
// Prof ids
$i = 1; $j = 0; $NBCOLS = ($conf->browser->layout == 'phone' ? 1 : 2);
while ($i <= 6)
@@ -1481,9 +1445,10 @@ else
//TODO: Place into a function to control showing by country or study better option
if ($mysoc->localtax1_assuj == "1" && $mysoc->localtax2_assuj == "1")
{
- print '| '.$langs->transcountry("LocalTax1IsUsed", $mysoc->country_code).' | ';
+ print ' |
| '.$langs->transcountry("LocalTax1IsUsed", $mysoc->country_code).' | ';
print $form->selectyesno('localtax1assuj_value', (isset($conf->global->THIRDPARTY_DEFAULT_USELOCALTAX1) ? $conf->global->THIRDPARTY_DEFAULT_USELOCALTAX1 : 0), 1);
- print ' | '.$langs->transcountry("LocalTax2IsUsed", $mysoc->country_code).' | ';
+ print ' |
';
+ print '| '.$langs->transcountry("LocalTax2IsUsed", $mysoc->country_code).' | ';
print $form->selectyesno('localtax2assuj_value', (isset($conf->global->THIRDPARTY_DEFAULT_USELOCALTAX2) ? $conf->global->THIRDPARTY_DEFAULT_USELOCALTAX2 : 0), 1);
print ' |
';
}