Skip to content

Instantly share code, notes, and snippets.

@acosonic
Created March 2, 2016 13:22
Show Gist options
  • Save acosonic/86df102daae8ce6dfa2a to your computer and use it in GitHub Desktop.
Save acosonic/86df102daae8ce6dfa2a to your computer and use it in GitHub Desktop.
$conditons = array();
if (empty($status)) {
$status = 'NULL';
}
if (empty($from)) {
$from = 'NULL';
}
if (empty($to)) {
$to = 'NULL';
}
$conditons = array('AND' =>
array(
array('OR' => array(
array('ShipmentHistory.ship_from_date >=' => $from),
array($from . ' IS NULL')
)),
array('OR' => array(
array('ShipmentHistory.ship_from_date <=' => $to),
array($to . ' IS NULL')
)),
array('OR' => array(
array('ShipmentHistory.shipment_status_id' => $status),
array($status . ' IS NULL')
)),
),
array(
'ShipmentHistory.customer_id' => $cid
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment