Reconciliation

==============
The html is done, it 's still to do
* export PDF
* Choice & Filter on jrn, same as balance
This commit is contained in:
Dany De Bontridder 2010-07-04 14:25:55 +00:00
parent 174fd18f65
commit a4f7d47e55
8 changed files with 279 additions and 8 deletions

View file

@ -6,6 +6,8 @@ License: GPL
*/
/*!
*\brief create the HTML for including of a javascript file
* if a file is included twice, the second time it will be discarded
* there is an alert if the file doesn't exist
*\param $p_string name of the file
*\return the HTML script
*/
@ -810,4 +812,36 @@ function escape_xml($p_xml) {
$xml=str_replace('"','"',$xml);
return $xml;
}
/**
*load all the javascript in once
*/
function load_all_script()
{
echo JS_INFOBULLE;
echo js_include('prototype.js');
echo js_include('scriptaculous.js');
echo js_include('scripts.js');
echo js_include('effects.js');
echo js_include('dragdrop.js');
echo js_include('controls.js');
echo js_include('slider.js');
echo js_include('acc_ledger.js');
echo js_include('accounting_item.js');
echo js_include('acc_report.js');
echo js_include('ajax_fiche.js');
echo js_include('anc_script.js');
echo js_include('bq_import.js');
echo js_include('builder.js');
echo js_include('calc.js');
echo js_include('card.js');
echo js_include('compute_direct.js');
echo js_include('compute.js');
echo js_include('confirm.js');
echo js_include('extension.js');
echo js_include('forecast.js');
echo js_include('gestion.js');
echo js_include('todo_list.js');
}
?>