Files
BE_CPONE/application/controllers/test/Test_ss_price_mou.php
2026-04-27 10:26:26 +07:00

19 lines
378 B
PHP

<?php
class Test_ss_price_mou extends MY_Controller
{
function __construct()
{
parent::__construct();
}
function create($id)
{
$this->load->library("SsPriceMou");
list($status, $message) = $this->sspricemou->create($id);
if ($status) {
echo "SsPriceMou Created : $message\n";
} else {
echo "SsPriceMou Error : $message\n";
}
}
}