Changeset 835

Show
Ignore:
Timestamp:
06/20/08 21:23:15 (4 years ago)
Author:
rach
Message:

Agent application developement
payment features

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/common/lib/admin.defines.php

    r815 r835  
    122122 
    123123 
     124 
     125 
    124126/* 
    125127 *              GLOBAL USED VARIABLE 
  • trunk/common/lib/agent.defines.php

    r815 r835  
    276276 
    277277 
     278 
     279 
     280define ("EPAYMENT_PURCHASE_AMOUNT", isset($A2B->config['epayment_method']['purchase_amount_agent'])?$A2B->config['epayment_method']['purchase_amount_agent']:"100"); 
     281 
     282 
  • trunk/common/lib/customer.defines.php

    r815 r835  
    11<?php 
     2define ("WRITELOG_QUERY",false); 
    23include_once (dirname(__FILE__)."/Class.A2Billing.php"); 
    34include_once (dirname(__FILE__)."/Class.Table.php"); 
  • trunk/DataBase/mysql-5.x/UPDATE-a2billing-v1.3.0-to-v1.4.0-mysql.sql

    r831 r835  
    954954     idtariffgroup, 
    955955     idtariffplan); 
     956      
     957--Add new configuration payment agent 
     958 
     959INSERT INTO cc_config ( 
     960id , 
     961config_title , 
     962config_key , 
     963config_value , 
     964config_description , 
     965config_valuetype , 
     966config_group_id , 
     967config_listvalues 
     968)VALUES (NULL , 'Payment Amount', 'purchase_amount_agent', '100:200:500:1000', 'define the different amount of purchase that would be available.', '0', '5', NULL);      
     969