9 lines
190 B
PHP
9 lines
190 B
PHP
<?php
|
|
class Test_calc extends MY_Controller {
|
|
function do($orderDetailID,$debug = ""){
|
|
$this->load->library("Resultcalc");
|
|
$this->resultcalc->auto($orderDetailID,$debug);
|
|
}
|
|
}
|
|
?>
|