* @package AgileBill * @version 1.4.93 */ /* We need the following to export for check writing: (cvs) ---------------------------------------------------------------- payee,address,city,state,zip,e-mail,amount,reference no ---------------------------------------------------------------- */ class plgn_aff_MAIL_CHECK { ######################################################################## ## Add new affiliate: ######################################################################## function add($account_id, $affiliate_id) { $db = &DB(); $sql = 'SELECT email,first_name,middle_name,last_name FROM ' . AGILE_DB_PREFIX . 'account WHERE site_id = ' . $db->qstr(DEFAULT_SITE) . ' AND id = ' . $db->qstr($account_id); $result = $db->Execute($sql); if($result->RecordCount() > 0) { # $plugin_data["address"]= $result->fields['address']; # $plugin_data["city"] = $result->fields['city']; # $plugin_data["state"] = $result->fields['state']; # $plugin_data["zip"] = $result->fields['zip']; $plugin_data["payee"] = $result->fields['first_name'] . ' ' . $result->fields['middle_name'] . ' ' . $result->fields['last_name']; $plugin_data["email"] = $result->fields['email']; $sql = 'UPDATE ' . AGILE_DB_PREFIX . 'affiliate SET plugin_data = '. $db->qstr(serialize($plugin_data)) . ' WHERE site_id = '. $db->qstr(DEFAULT_SITE) . ' AND id = '. $db->qstr($affiliate_id); $result = $db->Execute($sql); } } ######################################################################## ## Create the line in the export commission file for this affiliate ######################################################################## function commission($total, $affiliate_id, $affiliate_commission_id) { ### Get the affiliate details: $db = &DB(); $sql = 'SELECT plugin_data FROM ' . AGILE_DB_PREFIX . 'affiliate WHERE site_id = ' . $db->qstr(DEFAULT_SITE) . ' AND id = ' . $db->qstr($affiliate_id); $aff = $db->Execute($sql); $plugin_data = unserialize($aff->fields['plugin_data']); ### Generate this line for the export: $ret = $plugin_data["payee"] . ','; $ret .= $plugin_data["address"] . ','; $ret .= $plugin_data["city"] . ','; $ret .= $plugin_data["state"] . ','; $ret .= $plugin_data["zip"] . ','; $ret .= $plugin_data["email"] . ','; $ret .= $total . ','; $ret .= 'Affiliate Commission ' .$affiliate_commission_id .' for '.$affiliate_id; $ret .= ' '; ### Return the generated line: return $ret; } ######################################################################## ## Create the header for the affiliate export file ######################################################################## function header() { $filename = 'Affiliate_Commission_CSV.csv'; header ('Content-type: application/x-csv'); header ("Content-Disposition: inline; filename=$filename" ); } } ?>