|
@@ -223,6 +223,7 @@ class Fullordersmt extends Start_Controller {
|
|
|
$client = $this->input->post('name',true);
|
|
|
$fullname = $this->input->post('fullname',true);
|
|
|
$waybill = $this->input->post('waybill',true);
|
|
|
+ $waybillid = $this->input->post('waybillid',true);
|
|
|
$number = $this->input->post('number',true);
|
|
|
$email = $this->input->post('email',true);
|
|
|
$dlz = $this->input->post('dlz',true);
|
|
@@ -285,6 +286,9 @@ class Fullordersmt extends Start_Controller {
|
|
|
{
|
|
|
$where .= " and waybill = '$waybill'";
|
|
|
}
|
|
|
+ if($waybillid){
|
|
|
+ $where .= " and waybillid like '%".$waybillid."%'";
|
|
|
+ }
|
|
|
if($number)
|
|
|
{
|
|
|
$where .= " and number like '$number%'";
|