Changeset 856

Show
Ignore:
Timestamp:
06/24/08 11:50:16 (2 months ago)
Author:
rach
Message:

Card Group :
Schema DB
Creation and Edition

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/admin/Public/templates/default/main.tpl

    r767 r856  
    4646        <ul> 
    4747                <li><ul> 
    48                                 <li><a href="A2B_entity_card.php?atmenu=card&stitle=Customers_Card&section=1">{php} echo gettext("List Customers");{/php}</a></li> 
     48                                <li><a href="A2B_entity_card.php?stitle=Customers_Card&section=1">{php} echo gettext("List Customers");{/php}</a></li> 
    4949                                <li><a href="A2B_entity_card.php?form_action=ask-add&atmenu=card&stitle=Card&section=1">{php} echo gettext("Create Customers");{/php}</a></li> 
    50                 <li><a href="CC_card_import.php?atmenu=card&stitle=Card&section=1">{php} echo gettext("Import Customers");{/php}</a></li> 
     50                                <li><a href="A2B_entity_card_group.php?stitle=Customers_Card&section=1">{php} echo gettext("List Group Customers");{/php}</a></li> 
     51                                <li><a href="A2B_entity_card_group.php?form_action=ask-add&stitle=Card&section=1">{php} echo gettext("Create Group Customers");{/php}</a></li> 
     52                <li><a href="CC_card_import.php?stitle=Card&section=1">{php} echo gettext("Import Customers");{/php}</a></li> 
    5153                                <li><a href="A2B_entity_card_multi.php?stitle=Card&section=1">{php} echo gettext("Generate Customers");{/php}</a></li> 
    52                                 <li><a href="A2B_entity_friend.php?atmenu=sipfriend&stitle=SIP+Friends&section=1">{php} echo gettext("List SIP-FRIEND");{/php}</a></li> 
     54                                <li><a href="A2B_entity_friend.php?stitle=SIP+Friends&section=1">{php} echo gettext("List SIP-FRIEND");{/php}</a></li> 
    5355                                <li><a href="A2B_entity_friend.php?form_action=ask-add&atmenu=sipfriend&stitle=SIP+Friends&section=1">{php} echo gettext("Create SIP-FRIEND");{/php}</a></li> 
    5456                                <li><a href="A2B_entity_friend.php?atmenu=iaxfriend&stitle=IAX+Friends&section=1">{php} echo gettext("List IAX-FRIEND");{/php}</a></li> 
  • trunk/DataBase/mysql-5.x/UPDATE-a2billing-v1.3.0-to-v1.4.0-mysql.sql

    r855 r856  
    816816  creationdate timestamp NOT NULL default CURRENT_TIMESTAMP, 
    817817  creator bigint(20) NOT NULL, 
    818   `status` smallint(6) NOT NULL default '0', 
     818  status smallint(6) NOT NULL default '0', 
    819819  PRIMARY KEY  (id) 
    820820) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_bin; 
     
    824824CREATE TABLE cc_ticket_comment ( 
    825825  id bigint(20) NOT NULL auto_increment, 
    826   `date` timestamp NOT NULL default CURRENT_TIMESTAMP, 
     826  date timestamp NOT NULL default CURRENT_TIMESTAMP, 
    827827  id_ticket bigint(10) NOT NULL, 
    828828  description text collate utf8_bin, 
     
    833833 
    834834 
    835 INSERT INTO `cc_config` ( `config_title`, `config_key`, `config_value`, `config_description`, `config_valuetype`, `config_group_id`, `config_listvalues`) 
     835INSERT INTO cc_config ( config_title, config_key, config_value, config_description, config_valuetype, `config_group_id`, `config_listvalues`) 
    836836 VALUES ( 'Support Modules', 'support', '1', 'Enable or Disable the module of support', 1, 3, 'yes,no'); 
    837837 
     
    968968)VALUES (NULL , 'Payment Amount', 'purchase_amount_agent', '100:200:500:1000', 'define the different amount of purchase that would be available.', '0', '5', NULL);      
    969969      
     970--create group for the card      
     971      
     972CREATE TABLE cc_card_group ( 
     973id INT NOT NULL AUTO_INCREMENT , 
     974name CHAR( 30 ) NOT NULL collate utf8_bin , 
     975id_agi_conf INT NOT NULL , 
     976PRIMARY KEY ( id ) 
     977) ENGINE = MYISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin; 
     978 
     979--insert default group 
     980 
     981INSERT INTO cc_card_group ( 
     982id , 
     983name , 
     984id_agi_conf 
     985) 
     986VALUES ( 
     987NULL , 'DEFAULT', '-1' 
     988); 
     989 


Google