css
This commit is contained in:
parent
7fd3bb0aae
commit
5dfd5ed444
@ -360,8 +360,8 @@ if ((!empty($conf->product->enabled) || !empty($conf->service->enabled)) && ($us
|
|||||||
print $product_static->getNomUrl(1, '', 16);
|
print $product_static->getNomUrl(1, '', 16);
|
||||||
print "</td>\n";
|
print "</td>\n";
|
||||||
print '<td class="tdoverflowmax200" title="'.dol_escape_htmltag($objp->label).'">'.dol_escape_htmltag($objp->label).'</td>';
|
print '<td class="tdoverflowmax200" title="'.dol_escape_htmltag($objp->label).'">'.dol_escape_htmltag($objp->label).'</td>';
|
||||||
print "<td>";
|
print '<td title="'.dol_escape_htmltag($langs->trans("DateModification").': '.dol_print_date($db->jdate($objp->datem), 'dayhour', 'tzuserrel')).'">';
|
||||||
print dol_print_date($db->jdate($objp->datem), 'day');
|
print dol_print_date($db->jdate($objp->datem), 'day', 'tzuserrel');
|
||||||
print "</td>";
|
print "</td>";
|
||||||
// Sell price
|
// Sell price
|
||||||
if (empty($conf->global->PRODUIT_MULTIPRICES)) {
|
if (empty($conf->global->PRODUIT_MULTIPRICES)) {
|
||||||
|
|||||||
@ -677,7 +677,7 @@ while ($i < min($num, $limit)) {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$htmltext = $langs->trans("OptionMULTIPRICESIsOn");
|
$htmltext = $langs->trans("OptionMULTIPRICESIsOn");
|
||||||
print $form->textwithtooltip($langs->trans("Variable"), $htmltext);
|
print $form->textwithtooltip('<span class="opacitymedium">'.$langs->trans("Variable").'</span>', $htmltext);
|
||||||
}
|
}
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
|
|||||||
@ -484,7 +484,7 @@ print '</span>';
|
|||||||
|
|
||||||
print '<input type="file" name="userfile" size="20" maxlength="80"> ';
|
print '<input type="file" name="userfile" size="20" maxlength="80"> ';
|
||||||
$out = (empty($conf->global->MAIN_UPLOAD_DOC) ? ' disabled' : '');
|
$out = (empty($conf->global->MAIN_UPLOAD_DOC) ? ' disabled' : '');
|
||||||
print '<input type="submit" class="button" value="'.$langs->trans("ImportFromCSV").'"'.$out.' name="sendit">';
|
print '<input type="submit" class="button small" value="'.$langs->trans("ImportFromCSV").'"'.$out.' name="sendit">';
|
||||||
$out = '';
|
$out = '';
|
||||||
if (!empty($conf->global->MAIN_UPLOAD_DOC)) {
|
if (!empty($conf->global->MAIN_UPLOAD_DOC)) {
|
||||||
$max = $conf->global->MAIN_UPLOAD_DOC; // In Kb
|
$max = $conf->global->MAIN_UPLOAD_DOC; // In Kb
|
||||||
|
|||||||
@ -225,10 +225,10 @@ if ($resql) {
|
|||||||
print '<td class="liste_titre">';
|
print '<td class="liste_titre">';
|
||||||
print '<input type="text" class="flat" name="search_user" value="'.dol_escape_htmltag($suser).'">';
|
print '<input type="text" class="flat" name="search_user" value="'.dol_escape_htmltag($suser).'">';
|
||||||
print '</td>';
|
print '</td>';
|
||||||
print '<td class="liste_titre">';
|
print '<td class="liste_titre right">';
|
||||||
print '<input type="text" class="flat" name="search_ttc" value="'.dol_escape_htmltag($sttc).'">';
|
print '<input type="text" class="flat width75" name="search_ttc" value="'.dol_escape_htmltag($sttc).'">';
|
||||||
print '</td>';
|
print '</td>';
|
||||||
print '<td class="liste_titre">';
|
print '<td class="liste_titre center">';
|
||||||
print $form->selectDate($search_date, 'search_date', 0, 0, 1, '', 1, 0, 0, '');
|
print $form->selectDate($search_date, 'search_date', 0, 0, 1, '', 1, 0, 0, '');
|
||||||
print '</td>';
|
print '</td>';
|
||||||
print '<td class="liste_titre right">';
|
print '<td class="liste_titre right">';
|
||||||
@ -276,7 +276,8 @@ if ($resql) {
|
|||||||
$param,
|
$param,
|
||||||
'',
|
'',
|
||||||
$sortfield,
|
$sortfield,
|
||||||
$sortorder
|
$sortorder,
|
||||||
|
'right '
|
||||||
);
|
);
|
||||||
print_liste_field_titre(
|
print_liste_field_titre(
|
||||||
'OrderCreation',
|
'OrderCreation',
|
||||||
@ -286,7 +287,8 @@ if ($resql) {
|
|||||||
$param,
|
$param,
|
||||||
'',
|
'',
|
||||||
$sortfield,
|
$sortfield,
|
||||||
$sortorder
|
$sortorder,
|
||||||
|
'center '
|
||||||
);
|
);
|
||||||
print_liste_field_titre(
|
print_liste_field_titre(
|
||||||
'Status',
|
'Status',
|
||||||
@ -333,15 +335,15 @@ if ($resql) {
|
|||||||
print '<td>'.$txt.'</td>';
|
print '<td>'.$txt.'</td>';
|
||||||
|
|
||||||
// Amount
|
// Amount
|
||||||
print '<td>'.price($obj->total_ttc).'</td>';
|
print '<td class="right"><span class="amount">'.price($obj->total_ttc).'</span></td>';
|
||||||
|
|
||||||
// Date
|
// Date
|
||||||
if ($obj->dc) {
|
if ($obj->dc) {
|
||||||
$date = dol_print_date($db->jdate($obj->dc), 'dayhour');
|
$date = dol_print_date($db->jdate($obj->dc), 'dayhour', 'tzuserrel');
|
||||||
} else {
|
} else {
|
||||||
$date = '-';
|
$date = '-';
|
||||||
}
|
}
|
||||||
print '<td>'.$date.'</td>';
|
print '<td class="center">'.$date.'</td>';
|
||||||
|
|
||||||
// Statut
|
// Statut
|
||||||
print '<td class="right">'.$commandestatic->LibStatut($obj->fk_statut, 5).'</td>';
|
print '<td class="right">'.$commandestatic->LibStatut($obj->fk_statut, 5).'</td>';
|
||||||
|
|||||||
@ -565,7 +565,7 @@ while ($i < ($limit ? min($num, $limit) : $num)) {
|
|||||||
// PMP value
|
// PMP value
|
||||||
print '<td class="right">';
|
print '<td class="right">';
|
||||||
if (price2num($objp->estimatedvalue, 'MT')) {
|
if (price2num($objp->estimatedvalue, 'MT')) {
|
||||||
print price(price2num($objp->estimatedvalue, 'MT'), 1);
|
print '<span class="amount">'.price(price2num($objp->estimatedvalue, 'MT'), 1).'</span>';
|
||||||
} else {
|
} else {
|
||||||
print '';
|
print '';
|
||||||
}
|
}
|
||||||
@ -578,7 +578,7 @@ while ($i < ($limit ? min($num, $limit) : $num)) {
|
|||||||
print price(price2num($objp->sellvalue, 'MT'), 1);
|
print price(price2num($objp->sellvalue, 'MT'), 1);
|
||||||
} else {
|
} else {
|
||||||
$htmltext = $langs->trans("OptionMULTIPRICESIsOn");
|
$htmltext = $langs->trans("OptionMULTIPRICESIsOn");
|
||||||
print $form->textwithtooltip($langs->trans("Variable"), $htmltext);
|
print $form->textwithtooltip('<span class="opacitymedium">'.$langs->trans("Variable").'</span>', $htmltext);
|
||||||
}
|
}
|
||||||
print'</td>';
|
print'</td>';
|
||||||
|
|
||||||
|
|||||||
@ -143,8 +143,8 @@ $form = new Form($db);
|
|||||||
|
|
||||||
//$help_url="EN:Module_MyObject|FR:Module_MyObject_FR|ES:Módulo_MyObject";
|
//$help_url="EN:Module_MyObject|FR:Module_MyObject_FR|ES:Módulo_MyObject";
|
||||||
$help_url = '';
|
$help_url = '';
|
||||||
$pagetitle = $langs->trans('ResourcePageIndex');
|
$title = $langs->trans('Resources');
|
||||||
llxHeader('', $pagetitle, $help_url);
|
llxHeader('', $title, $help_url);
|
||||||
|
|
||||||
|
|
||||||
$sql = '';
|
$sql = '';
|
||||||
@ -219,7 +219,7 @@ if ($ret == -1) {
|
|||||||
$newcardbutton .= dolGetButtonTitle($langs->trans('MenuResourceAdd'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/resource/card.php?action=create');
|
$newcardbutton .= dolGetButtonTitle($langs->trans('MenuResourceAdd'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/resource/card.php?action=create');
|
||||||
}
|
}
|
||||||
|
|
||||||
print_barre_liste($pagetitle, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $ret + 1, $nbtotalofrecords, 'object_resource', 0, $newcardbutton, '', $limit, 0, 0, 1);
|
print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $ret + 1, $nbtotalofrecords, 'object_resource', 0, $newcardbutton, '', $limit, 0, 0, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
$moreforfilter = '';
|
$moreforfilter = '';
|
||||||
|
|||||||
@ -3575,8 +3575,8 @@ div .tdtop:not(.tagtdnote) {
|
|||||||
vertical-align: top !important;
|
vertical-align: top !important;
|
||||||
/*padding-top: 10px !important;
|
/*padding-top: 10px !important;
|
||||||
padding-bottom: 2px !important; */
|
padding-bottom: 2px !important; */
|
||||||
padding-top: 6px !important;
|
padding-top: 5px !important;
|
||||||
padding-bottom: 4px !important;
|
padding-bottom: 0px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.border td, table.bordernooddeven td, div.border div div.tagtd {
|
table.border td, table.bordernooddeven td, div.border div div.tagtd {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user