Jump to content

Custom Billing IDs


rossco5378

Recommended Posts

Hello Folks,

My company is a sub division of another company and in order for me to use there systems I require a word before the billing id for e.g. "eg123" I am using the tcadmin advanced module, I have been told its something in one of the module files and requires php editing. If someone could help me that would be greatly appreciated.

Link to comment
Share on other sites

In your default_values.php change these lines:

$billing_api_values["game_package_id"] = $params["serviceid"];
$billing_api_values["voice_package_id"] = $params["serviceid"];
$billing_api_values["client_package_id"] = $params["serviceid"];
...
...
...
$billing_api_values["client_id"] = $params["clientsdetails"]["userid"];

to:

 

$billing_api_values["game_package_id"] = [b]"yourprefix".[/b]$params["serviceid"];
$billing_api_values["voice_package_id"] =  [b]"yourprefix".[/b]$params["serviceid"];
$billing_api_values["client_package_id"] =  [b]"yourprefix".[/b]$params["serviceid"];
...
...
...
$billing_api_values["client_id"] = [b]"yourprefix".[/b]$params["clientsdetails"]["userid"];

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Terms of Use