Updated wording for Add Payment in Invoices as well as update the history log for adding payments

This commit is contained in:
Johnny
2020-12-09 21:25:39 -05:00
parent a4e4e8d578
commit d169fcc357
3 changed files with 4 additions and 3 deletions

View File

@@ -43,6 +43,7 @@ $sql_invoice_totals = mysqli_query($mysqli,"SELECT SUM(invoice_amount) AS invoic
$row = mysqli_fetch_array($sql_invoice_totals);
$invoice_totals = $row['invoice_totals'];
//Quaeries from Recievables
$sql_total_payments_to_invoices_all_years = mysqli_query($mysqli,"SELECT SUM(payment_amount) AS total_payments_to_invoices_all_years FROM payments WHERE company_id = $session_company_id");
$row = mysqli_fetch_array($sql_total_payments_to_invoices_all_years);
$total_payments_to_invoices_all_years = $row['total_payments_to_invoices_all_years'];