You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
531 B
PHTML
23 lines
531 B
PHTML
7 years ago
|
<?php
|
||
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
||
|
|
||
|
class Group_model extends CI_Model {
|
||
|
|
||
|
function __construct() {
|
||
|
parent::__construct();
|
||
|
$this->HT = $this->load->database('HT', TRUE);
|
||
|
}
|
||
|
|
||
|
public function get_vendor_plan_info($gri_sn, $vendor_id)
|
||
|
{
|
||
|
$sql = " SP_VendorPlan_GetPlanInfo $gri_sn, $vendor_id, 0 ";
|
||
|
return $this->HT->query($sql)->result();
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
/* End of file Group_model.php */
|
||
|
/* Location: ./third_party/vendorPlanSync/models/Group_model.php */
|