rossco5378 Posted September 17, 2013 Share Posted September 17, 2013 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 More sharing options...
LFA Posted September 17, 2013 Share Posted September 17, 2013 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 More sharing options...
rossco5378 Posted September 19, 2013 Author Share Posted September 19, 2013 Thanks it works Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.