Esthetic
This commit is contained in:
parent
c169619255
commit
b08141a66c
7 changed files with 218 additions and 199 deletions
|
|
@ -187,7 +187,7 @@ EOF;
|
|||
$Max = Database::num_row($Res);
|
||||
$r = "";
|
||||
$r = HtmlInput::anchor_close('tva_select');
|
||||
$r.=h2info('Choississez la TVA ');
|
||||
$r.=h2(_('Choississez la TVA '),'class="title"');
|
||||
$r.='<div >';
|
||||
$r.= '<TABLE style="width:100%">';
|
||||
$r.=th('');
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ case "sf":
|
|||
$str_submit=HtmlInput::submit('sf',_('Recherche'),"","smallbutton");
|
||||
$r='';
|
||||
$r=HtmlInput::anchor_close('search_account');
|
||||
$r.='<div> '.h2info(_('Poste Comptable')).'</div>';
|
||||
$r.='<div> '.h2(_('Poste Comptable'),' class="title"').'</div>';
|
||||
|
||||
$r.='<form id="sp" method="get" onsubmit="'.$attr.'search_get_poste(this);return false;">';
|
||||
ob_start();
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ div.calendar { position: relative; z-index:13; }
|
|||
.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
|
||||
text-align: center; /* They are the navigation buttons */
|
||||
padding: 2px; /* Make the buttons seem like they're pressing */
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
.calendar .nav {
|
||||
|
|
|
|||
|
|
@ -1793,7 +1793,7 @@ function check_date(p_str_date)
|
|||
var date_temp = p_str_date.split('.');
|
||||
var nMonth = parseFloat(date_temp[1]) - 1;
|
||||
var ma_date = new Date(date_temp[2], nMonth, date_temp[0]);
|
||||
if (ma_date.getFullYear() === date_temp[2] && ma_date.getMonth() === nMonth && ma_date.getDate() === date_temp[0]) {
|
||||
if (ma_date.getFullYear() == date_temp[2] && ma_date.getMonth() == nMonth && ma_date.getDate() == date_temp[0]) {
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -8,15 +8,15 @@
|
|||
<?php
|
||||
$limite=5;
|
||||
?>
|
||||
<table
|
||||
<table class="result">
|
||||
<tr>
|
||||
<th>Poste comptable</th>
|
||||
<th>Libellé</th>
|
||||
<th>Fiche (limite:<?php echo $limite; ?>)</th>
|
||||
<th><?php echo _("Poste comptable")?></th>
|
||||
<th><?php echo _("Libellé")?></th>
|
||||
<th><?php printf (_("Fiche (limite %d)"),$limite); ?></th>
|
||||
|
||||
</tr>
|
||||
<?php for ($i=0;$i<sizeof($array);$i++) : ?>
|
||||
<tr>
|
||||
<tr <?php echo ($i%2==0)?'class="odd"':'class="even"';?>>
|
||||
<td>
|
||||
<a href="javascript:void(0)" onclick="<?php echo $array[$i]['javascript']?>">
|
||||
<span id="val<?php echo $i?>">
|
||||
|
|
|
|||
|
|
@ -5,9 +5,10 @@
|
|||
<fieldset id="asearch" style="height:88%">
|
||||
<legend><?php echo _('Résultats'); ?></legend>
|
||||
<div style="height:88%;overflow:auto;">
|
||||
<table >
|
||||
<table class="result" >
|
||||
<?php for ($i=0;$i<sizeof($array);$i++) : ?>
|
||||
<tr>
|
||||
<?php $class=($i%2==0)?'odd':'even';?>
|
||||
<tr class="<?php echo $class;?>">
|
||||
<td style="padding-right:55">
|
||||
<a href="javascript:void(0)" class="one" onclick="<?php echo $array[$i]['javascript']?>">
|
||||
<?php echo $array[$i]['quick_code']?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue