Merged revisions 4134-4141 via svnmerge from

svn+ssh://danydb@svn/svn/phpcompta/branches/rel560

........
  r4134 | danydb | 2011-05-25 23:49:07 +0200 (Wed, 25 May 2011) | 1 line
  
  Fix bug Great Ledger for 8.2
........
  r4135 | danydb | 2011-05-27 20:29:44 +0200 (Fri, 27 May 2011) | 2 lines
  
  0000279: Paramètre -> Attribut
........
  r4136 | danydb | 2011-05-27 21:25:50 +0200 (Fri, 27 May 2011) | 2 lines
  
  0000278: Lettrage
........
  r4137 | danydb | 2011-05-27 21:33:42 +0200 (Fri, 27 May 2011) | 2 lines
  
  0000277: impression -> rapport
........
  r4138 | danydb | 2011-05-27 21:47:10 +0200 (Fri, 27 May 2011) | 1 line
  
  0000276: Impression -> poste
........
  r4139 | danydb | 2011-05-27 22:05:05 +0200 (Fri, 27 May 2011) | 2 lines
  
  0000273: Modèle à sauver
........
  r4140 | danydb | 2011-05-27 22:08:16 +0200 (Fri, 27 May 2011) | 2 lines
  
  0000272: Historique : tri des dates
........
  r4141 | danydb | 2011-05-27 22:09:58 +0200 (Fri, 27 May 2011) | 1 line
  
  0000275: Impression grand livre export PDF & CSV
........
This commit is contained in:
Dany De Bontridder 2011-05-28 19:09:25 +00:00
parent 0123a56e3d
commit 39bd5bbecd
10 changed files with 38 additions and 24 deletions

View file

@ -173,7 +173,9 @@ if ( isset( $_REQUEST['bt_html'] ) )
if ( ! isset($_REQUEST['oper_detail']) )
{
Acc_Account_Ledger::HtmlTableHeader();
echo '<div class="content">';
$Poste->HtmlTable(null,$_GET['ople']);
echo '</div>';
echo Acc_Account_Ledger::HtmlTableHeader();
}
else
@ -182,9 +184,11 @@ if ( isset( $_REQUEST['bt_html'] ) )
// Detail
//----------------------------------------------------------------------
Acc_Account_Ledger::HtmlTableHeader();
$Poste->get_row_date( $_GET['from_periode'], $_GET['to_periode'],$_GET['ople']);
if ( empty($Poste->row)) exit();
$Poste->load();
echo '<table class="result" style="width:80%;margin-left:10%">';
echo '<tr><td class="mtitle" style="width:auto" colspan="6"><h2 class="info">'. $_GET['poste_id'].' '.h($Poste->label).'</h2></td></tr>';
/* avoid duplicates */
@ -201,6 +205,7 @@ if ( isset( $_REQUEST['bt_html'] ) )
echo $op->display_jrnx_detail(1);
}
echo '</table>';
echo Acc_Account_Ledger::HtmlTableHeader();
}
echo "</div>";