Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ceckoslab/996180ca5689d600e441 to your computer and use it in GitHub Desktop.
Save ceckoslab/996180ca5689d600e441 to your computer and use it in GitHub Desktop.
/**
* Implementation of the validation logic
*
* @param Mage_Sales_Model_Quote_Item $item
* @return bool
*/
public function validate($item)
{
$qty = $item->getQty();
if($qty % 10 != 0) {
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment