Fix css
This commit is contained in:
parent
0a6633da6e
commit
2458244ee3
@ -857,7 +857,7 @@ function show_contacts($conf,$langs,$db,$object,$backtopage='')
|
|||||||
print '<td class="liste_titre"></td>';
|
print '<td class="liste_titre"></td>';
|
||||||
|
|
||||||
// Status
|
// Status
|
||||||
print '<td class="liste_titre maxwidthonsmartphone">';
|
print '<td class="liste_titre maxwidthonsmartphone" align="center">';
|
||||||
print $form->selectarray('search_status', array('-1'=>'','0'=>$contactstatic->LibStatut(0,1),'1'=>$contactstatic->LibStatut(1,1)),$search_status);
|
print $form->selectarray('search_status', array('-1'=>'','0'=>$contactstatic->LibStatut(0,1),'1'=>$contactstatic->LibStatut(1,1)),$search_status);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
|
|||||||
@ -140,8 +140,8 @@ if ($resql)
|
|||||||
if (! empty($conf->productbatch->enabled))
|
if (! empty($conf->productbatch->enabled))
|
||||||
{
|
{
|
||||||
print '<th>'.$langs->trans("Batch").'</th>';
|
print '<th>'.$langs->trans("Batch").'</th>';
|
||||||
print '<th>'.$langs->trans("EatByDate").'</th>';
|
|
||||||
print '<th>'.$langs->trans("SellByDate").'</th>';
|
print '<th>'.$langs->trans("SellByDate").'</th>';
|
||||||
|
print '<th>'.$langs->trans("EatByDate").'</th>';
|
||||||
}
|
}
|
||||||
print '<th>'.$langs->trans("Warehouse").'</th>';
|
print '<th>'.$langs->trans("Warehouse").'</th>';
|
||||||
print '<th align="right"><a class="notasortlink" href="'.DOL_URL_ROOT.'/product/stock/mouvement.php">'.$langs->trans("FullList").'</a></th>';
|
print '<th align="right"><a class="notasortlink" href="'.DOL_URL_ROOT.'/product/stock/mouvement.php">'.$langs->trans("FullList").'</a></th>';
|
||||||
@ -152,23 +152,24 @@ if ($resql)
|
|||||||
{
|
{
|
||||||
$objp = $db->fetch_object($resql);
|
$objp = $db->fetch_object($resql);
|
||||||
|
|
||||||
print '<tr class="oddeven">';
|
|
||||||
print '<td>'.dol_print_date($db->jdate($objp->datem),'dayhour').'</td>';
|
|
||||||
print "<td>";
|
|
||||||
$producttmp->id = $objp->rowid;
|
$producttmp->id = $objp->rowid;
|
||||||
$producttmp->ref = $objp->produit;
|
$producttmp->ref = $objp->produit;
|
||||||
$producttmp->status_batch = $objp->tobatch;
|
$producttmp->status_batch = $objp->tobatch;
|
||||||
$producttmp->status_sell = $objp->tosell;
|
$producttmp->status_sell = $objp->tosell;
|
||||||
$producttmp->status_buy = $objp->tobuy;
|
$producttmp->status_buy = $objp->tobuy;
|
||||||
|
|
||||||
|
print '<tr class="oddeven">';
|
||||||
|
print '<td>'.dol_print_date($db->jdate($objp->datem),'dayhour').'</td>';
|
||||||
|
print '<td class="tdoverflowmax200">';
|
||||||
print $producttmp->getNomUrl(1);
|
print $producttmp->getNomUrl(1);
|
||||||
print "</td>\n";
|
print "</td>\n";
|
||||||
if (! empty($conf->productbatch->enabled))
|
if (! empty($conf->productbatch->enabled))
|
||||||
{
|
{
|
||||||
print '<td>'.$objp->batch.'</td>';
|
print '<td>'.$objp->batch.'</td>';
|
||||||
print '<td>'.dol_print_date($db->jdate($objp->eatby),'day').'</td>';
|
|
||||||
print '<td>'.dol_print_date($db->jdate($objp->sellby),'day').'</td>';
|
print '<td>'.dol_print_date($db->jdate($objp->sellby),'day').'</td>';
|
||||||
|
print '<td>'.dol_print_date($db->jdate($objp->eatby),'day').'</td>';
|
||||||
}
|
}
|
||||||
print '<td><a href="card.php?id='.$objp->entrepot_id.'">';
|
print '<td class="tdoverflowmax200"><a href="card.php?id='.$objp->entrepot_id.'">';
|
||||||
print img_object($langs->trans("ShowWarehouse"),"stock").' '.$objp->stock;
|
print img_object($langs->trans("ShowWarehouse"),"stock").' '.$objp->stock;
|
||||||
print "</a></td>\n";
|
print "</a></td>\n";
|
||||||
print '<td align="right">';
|
print '<td align="right">';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user