Git Product home page Git Product logo

Comments (3)

hostnameclub avatar hostnameclub commented on August 17, 2024 1

Hi,

I have a little time to edit, but hooks.php should update to display currency (mine is USD) in invoice like that:

function update_gateway_fee2($vars)
{
$paymentmethod = $vars['paymentmethod'];
delete_query("tblinvoiceitems", "invoiceid='" . $vars[invoiceid] . "' and notes='gateway_fees'");
$result = select_query("tbladdonmodules", "setting,value", "setting='fee_2_" . $vars['paymentmethod'] . "' or setting='fee_1_" . $vars[paymentmethod] . "'");
while ($data = mysql_fetch_array($result)) {
$params[$data[0]] = $data[1];
}
$fee1 = ($params['fee_1_' . $paymentmethod]);
$fee2 = ($params['fee_2_' . $paymentmethod]);
$total = InvoiceTotal($vars['invoiceid']);
if ($total > 0) {
$amountdue = $fee1 + $total * $fee2 / 100;
if ($fee1 > 0 & $fee2 > 0) {
$d = "$" . $fee1 . ' + ' . $fee2 . "%";
}
elseif ($fee2 > 0) {
$d = $fee2 . "%";
}
elseif ($fee1 > 0) {
$d = $fee1;
}
}
if ($d) {
insert_query("tblinvoiceitems", array(
"userid" => $_SESSION['uid'],
"invoiceid" => $vars[invoiceid],
"type" => "Fee",
"notes" => "gateway_fees",
"description" => getGatewayName2($vars['paymentmethod']) . " Processing Fees ($d)",
"amount" => $amountdue,
"taxed" => "0",
"duedate" => "now()",
"paymentmethod" => $vars[paymentmethod]
));
}
updateInvoiceTotal($vars[invoiceid]);
}

from whmcs-gateway-fees.

ajarmoszuk avatar ajarmoszuk commented on August 17, 2024

Al right, I'll try to edit these out and make them look a bit nicer.

from whmcs-gateway-fees.

ajarmoszuk avatar ajarmoszuk commented on August 17, 2024

Hi, would you mind pushing this into the repo? I'm a bit busy at the moment.

from whmcs-gateway-fees.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.