Add an delete and reverse method to Acc_Ledger

This commit is contained in:
Dany De Bontridder 2010-07-03 14:14:48 +00:00
parent 5f0a6dea86
commit 32f2ed8693
5 changed files with 364 additions and 100 deletions

View file

@ -69,7 +69,8 @@ $array=array(
array(29,'ITVA popup'),
array(30,'Ereg and preg_match'),
array(31,'IBOX'),
array(32,'Acc_Operation & children')
array(32,'Acc_Operation & children'),
array(33,'Ledger : reverse op')
);
$r='<form method="get">';
$r.='<select name="test_select" >';
@ -271,6 +272,10 @@ case 32:
require_once('class_acc_operation.php');
Acc_Operation::test_me();
break;
case 33:
require_once('class_acc_ledger.php');
Acc_Ledger::test_me('reverse');
break;
}