Removed the ability to NSF items like Cash

git-svn-id: file:///svn-source/pmgr/branches/yafr_20090716/site@458 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
abijah
2009-07-31 18:19:20 +00:00
parent 8f79f0401f
commit 645a3a4797

View File

@@ -144,8 +144,12 @@ class TendersController extends AppController {
)); ));
if (!empty($tender['Tender']['deposit_transaction_id']) && if (!empty($tender['Tender']['deposit_transaction_id'])
empty($tender['Tender']['nsf_transaction_id'])) { && empty($tender['Tender']['nsf_transaction_id'])
// Hard to tell what types of items can come back as NSF.
// For now, assume iff it is a named item, it can be NSF.
&& !empty($tender['TenderType']['data1_name'])
) {
// Set up dynamic menu items // Set up dynamic menu items
$this->sidemenu_links[] = $this->sidemenu_links[] =
array('name' => 'Operations', 'header' => true); array('name' => 'Operations', 'header' => true);