without DiscountRevenue in Roster
This commit is contained in:
parent
1d88e9ff8c
commit
dd81fb557e
@ -33,7 +33,6 @@ document.addEventListener('DOMContentLoaded', function () {
|
|||||||
document.getElementById('edit-metlife').value = data.metlife;
|
document.getElementById('edit-metlife').value = data.metlife;
|
||||||
document.getElementById('edit-topusPerMonth').value = data.topusPerMonth;
|
document.getElementById('edit-topusPerMonth').value = data.topusPerMonth;
|
||||||
document.getElementById('edit-grossRevenue').value = data.grossRevenue;
|
document.getElementById('edit-grossRevenue').value = data.grossRevenue;
|
||||||
document.getElementById('edit-discountedRevenue').value = data.discountedRevenue;
|
|
||||||
|
|
||||||
editResourceModal.show();
|
editResourceModal.show();
|
||||||
});
|
});
|
||||||
@ -66,7 +65,6 @@ document.addEventListener('DOMContentLoaded', function () {
|
|||||||
document.getElementById('view-totalMonthlyCost').value = '€' + parseFloat(data.totalMonthlyCost).toFixed(2);
|
document.getElementById('view-totalMonthlyCost').value = '€' + parseFloat(data.totalMonthlyCost).toFixed(2);
|
||||||
document.getElementById('view-totalAnnualCost').value = '€' + parseFloat(data.totalAnnualCost).toFixed(2);
|
document.getElementById('view-totalAnnualCost').value = '€' + parseFloat(data.totalAnnualCost).toFixed(2);
|
||||||
document.getElementById('view-grossRevenue').value = '€' + parseFloat(data.grossRevenue).toFixed(2);
|
document.getElementById('view-grossRevenue').value = '€' + parseFloat(data.grossRevenue).toFixed(2);
|
||||||
document.getElementById('view-discountedRevenue').value = '€' + parseFloat(data.discountedRevenue).toFixed(2);
|
|
||||||
document.getElementById('view-dailyCost').value = '€' + (parseFloat(data.totalMonthlyCost) / 20).toFixed(2);
|
document.getElementById('view-dailyCost').value = '€' + (parseFloat(data.totalMonthlyCost) / 20).toFixed(2);
|
||||||
|
|
||||||
viewResourceModal.show();
|
viewResourceModal.show();
|
||||||
|
|||||||
@ -0,0 +1 @@
|
|||||||
|
ALTER TABLE `roster` DROP COLUMN `discountedRevenue`;
|
||||||
@ -56,9 +56,10 @@ try {
|
|||||||
$monthly_costs = $cost_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
|
$monthly_costs = $cost_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
|
||||||
|
|
||||||
// Base Monthly WIP
|
// Base Monthly WIP
|
||||||
$wip_sql = "SELECT fa.month, SUM(fa.allocatedDays * r.discountedRevenue) FROM forecastAllocation fa JOIN roster r ON fa.rosterId = r.id WHERE fa.forecastingId = :fid GROUP BY fa.month";
|
$recoverability_decimal = $project['recoverability'] / 100;
|
||||||
|
$wip_sql = "SELECT fa.month, SUM(fa.allocatedDays * (r.grossRevenue * (1 - :recoverability))) as wip FROM forecastAllocation fa JOIN roster r ON fa.rosterId = r.id WHERE fa.forecastingId = :fid GROUP BY fa.month";
|
||||||
$wip_stmt = $pdo->prepare($wip_sql);
|
$wip_stmt = $pdo->prepare($wip_sql);
|
||||||
$wip_stmt->execute([':fid' => $fid]);
|
$wip_stmt->execute([':fid' => $fid, ':recoverability' => $recoverability_decimal]);
|
||||||
$monthly_wip = $wip_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
|
$monthly_wip = $wip_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -67,41 +68,54 @@ try {
|
|||||||
$billing_stmt->execute([':pid' => $project_id]);
|
$billing_stmt->execute([':pid' => $project_id]);
|
||||||
$monthly_billing = $billing_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
|
$monthly_billing = $billing_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
|
||||||
|
|
||||||
|
// Base Monthly Expenses
|
||||||
|
$expenses_stmt = $pdo->prepare("SELECT month, amount FROM expensesMonthly WHERE projectId = :pid");
|
||||||
|
$expenses_stmt->execute([':pid' => $project_id]);
|
||||||
|
$monthly_expenses = $expenses_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
|
||||||
|
|
||||||
// 2. Calculate cumulative values month by month
|
// 2. Calculate cumulative values month by month
|
||||||
$cumulative_billing = 0;
|
$cumulative_billing = 0;
|
||||||
$cumulative_cost = 0;
|
$cumulative_cost = 0;
|
||||||
|
$cumulative_expenses = 0;
|
||||||
$previous_month_wip = 0;
|
$previous_month_wip = 0;
|
||||||
|
|
||||||
foreach ($months as $month) {
|
foreach ($months as $month) {
|
||||||
// Normalize month keys from fetched data
|
// --- Opening Balance ---
|
||||||
|
$opening_balance = $previous_month_wip;
|
||||||
|
$financial_data['Opening Balance'][$month] = $opening_balance;
|
||||||
|
|
||||||
|
// --- Base Data ---
|
||||||
$cost = $monthly_costs[$month] ?? 0;
|
$cost = $monthly_costs[$month] ?? 0;
|
||||||
$base_monthly_wip = $monthly_wip[$month] ?? 0;
|
$base_monthly_wip = $monthly_wip[$month] ?? 0;
|
||||||
$billing = $monthly_billing[$month] ?? 0;
|
$billing = $monthly_billing[$month] ?? 0;
|
||||||
$expenses = 0; // Placeholder for expenses
|
$expenses = $monthly_expenses[$month] ?? 0;
|
||||||
|
|
||||||
// Cumulative calculations
|
// --- Cumulative Metrics ---
|
||||||
$cumulative_billing += $billing;
|
$cumulative_billing += $billing;
|
||||||
$cumulative_cost += $cost;
|
|
||||||
|
|
||||||
// WIP Calculation (new formula)
|
|
||||||
// current month WIP = previous month WIP + Month Expenses + base_monthly_wip - month Billing
|
|
||||||
$current_wip = $previous_month_wip + $expenses + $base_monthly_wip - $billing;
|
|
||||||
|
|
||||||
$financial_data['WIP'][$month] = $current_wip;
|
|
||||||
$financial_data['Billings'][$month] = $cumulative_billing;
|
$financial_data['Billings'][$month] = $cumulative_billing;
|
||||||
$financial_data['Cost'][$month] = $cumulative_cost;
|
|
||||||
$financial_data['Opening Balance'][$month] = 0; // Placeholder
|
|
||||||
$financial_data['Expenses'][$month] = $expenses;
|
|
||||||
|
|
||||||
// Calculated metrics (NSR and Margin)
|
$cumulative_cost += $cost;
|
||||||
|
$financial_data['Cost'][$month] = $cumulative_cost;
|
||||||
|
|
||||||
|
$cumulative_expenses += $expenses;
|
||||||
|
$financial_data['Expenses'][$month] = $cumulative_expenses;
|
||||||
|
|
||||||
|
// --- WIP (Closing Balance) ---
|
||||||
|
$final_opening_balance = $financial_data['Opening Balance'][$month];
|
||||||
|
$current_wip = $final_opening_balance + $expenses + $base_monthly_wip - $billing;
|
||||||
|
$financial_data['WIP'][$month] = $current_wip;
|
||||||
|
|
||||||
|
// --- Calculated Metrics (NSR and Margin) ---
|
||||||
$nsr = $financial_data['WIP'][$month] + $financial_data['Billings'][$month] - $financial_data['Opening Balance'][$month] - $financial_data['Expenses'][$month];
|
$nsr = $financial_data['WIP'][$month] + $financial_data['Billings'][$month] - $financial_data['Opening Balance'][$month] - $financial_data['Expenses'][$month];
|
||||||
$financial_data['NSR'][$month] = $nsr;
|
$financial_data['NSR'][$month] = $nsr;
|
||||||
|
|
||||||
$margin = ($nsr != 0) ? (($nsr - $financial_data['Cost'][$month]) / $nsr) : 0;
|
$final_nsr = $financial_data['NSR'][$month];
|
||||||
|
$final_cost = $financial_data['Cost'][$month];
|
||||||
|
$margin = ($final_nsr != 0) ? (($final_nsr - $final_cost) / $final_nsr) : 0;
|
||||||
$financial_data['Margin'][$month] = $margin;
|
$financial_data['Margin'][$month] = $margin;
|
||||||
|
|
||||||
// Update previous month's WIP for the next iteration
|
// --- Carry-over for next iteration ---
|
||||||
$previous_month_wip = $current_wip;
|
$previous_month_wip = $financial_data['WIP'][$month];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (PDOException $e) {
|
} catch (PDOException $e) {
|
||||||
|
|||||||
@ -87,9 +87,10 @@ if ($project_id) {
|
|||||||
$monthly_costs = $cost_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
|
$monthly_costs = $cost_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
|
||||||
|
|
||||||
// Base Monthly WIP
|
// Base Monthly WIP
|
||||||
$wip_sql = "SELECT fa.month, SUM(fa.allocatedDays * r.discountedRevenue) as wip FROM forecastAllocation fa JOIN roster r ON fa.rosterId = r.id WHERE fa.forecastingId = :fid GROUP BY fa.month";
|
$recoverability_decimal = $project['recoverability'] / 100;
|
||||||
|
$wip_sql = "SELECT fa.month, SUM(fa.allocatedDays * (r.grossRevenue * (1 - :recoverability))) as wip FROM forecastAllocation fa JOIN roster r ON fa.rosterId = r.id WHERE fa.forecastingId = :fid GROUP BY fa.month";
|
||||||
$wip_stmt = $pdo->prepare($wip_sql);
|
$wip_stmt = $pdo->prepare($wip_sql);
|
||||||
$wip_stmt->execute([':fid' => $fid]);
|
$wip_stmt->execute([':fid' => $fid, ':recoverability' => $recoverability_decimal]);
|
||||||
$monthly_wip = $wip_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
|
$monthly_wip = $wip_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -103,50 +104,17 @@ if ($project_id) {
|
|||||||
$expenses_stmt->execute([':pid' => $project_id]);
|
$expenses_stmt->execute([':pid' => $project_id]);
|
||||||
$monthly_expenses = $expenses_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
|
$monthly_expenses = $expenses_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
|
||||||
|
|
||||||
// 2. Calculate cumulative values month by month
|
// 2. Calculate and process values month by month, including overrides
|
||||||
$cumulative_billing = 0;
|
$cumulative_billing = 0;
|
||||||
$cumulative_cost = 0;
|
$cumulative_cost = 0;
|
||||||
$cumulative_expenses = 0;
|
$cumulative_expenses = 0;
|
||||||
$previous_month_wip = 0;
|
$previous_month_wip = 0; // This is the closing balance from the prior month.
|
||||||
|
|
||||||
foreach ($months as $month) {
|
// Fetch all overridden data at once to avoid querying in a loop
|
||||||
// Normalize month keys from fetched data
|
|
||||||
$cost = $monthly_costs[$month] ?? 0;
|
|
||||||
$base_monthly_wip = $monthly_wip[$month] ?? 0;
|
|
||||||
$billing = $monthly_billing[$month] ?? 0;
|
|
||||||
$expenses = $monthly_expenses[$month] ?? 0;
|
|
||||||
|
|
||||||
// Cumulative calculations
|
|
||||||
$cumulative_billing += $billing;
|
|
||||||
$cumulative_cost += $cost;
|
|
||||||
$cumulative_expenses += $expenses;
|
|
||||||
|
|
||||||
// WIP Calculation (new formula)
|
|
||||||
// current month WIP = previous month WIP + Month Expenses + base_monthly_wip - month Billing
|
|
||||||
$current_wip = $previous_month_wip + $expenses + $base_monthly_wip - $billing;
|
|
||||||
|
|
||||||
$financial_data['WIP'][$month] = $current_wip;
|
|
||||||
$financial_data['Billings'][$month] = $cumulative_billing;
|
|
||||||
$financial_data['Cost'][$month] = $cumulative_cost;
|
|
||||||
$financial_data['Opening Balance'][$month] = 0; // Placeholder
|
|
||||||
$financial_data['Expenses'][$month] = $cumulative_expenses;
|
|
||||||
|
|
||||||
// Calculated metrics (NSR and Margin)
|
|
||||||
$nsr = $financial_data['WIP'][$month] + $financial_data['Billings'][$month] - $financial_data['Opening Balance'][$month] - $financial_data['Expenses'][$month];
|
|
||||||
$financial_data['NSR'][$month] = $nsr;
|
|
||||||
|
|
||||||
$margin = ($nsr != 0) ? (($nsr - $financial_data['Cost'][$month]) / $nsr) : 0;
|
|
||||||
$financial_data['Margin'][$month] = $margin;
|
|
||||||
|
|
||||||
// Update previous month's WIP for the next iteration
|
|
||||||
$previous_month_wip = $current_wip;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 3. Fetch and apply overridden data
|
|
||||||
$override_stmt = $pdo->prepare("SELECT month, metricName, value FROM projectFinanceMonthly WHERE projectId = :pid AND is_overridden = 1");
|
$override_stmt = $pdo->prepare("SELECT month, metricName, value FROM projectFinanceMonthly WHERE projectId = :pid AND is_overridden = 1");
|
||||||
$override_stmt->execute([':pid' => $project_id]);
|
$override_stmt->execute([':pid' => $project_id]);
|
||||||
$overridden_data = $override_stmt->fetchAll(PDO::FETCH_ASSOC);
|
$overridden_rows = $override_stmt->fetchAll(PDO::FETCH_ASSOC);
|
||||||
|
$overrides = [];
|
||||||
$metric_name_map = [
|
$metric_name_map = [
|
||||||
'wip' => 'WIP',
|
'wip' => 'WIP',
|
||||||
'opening_balance' => 'Opening Balance',
|
'opening_balance' => 'Opening Balance',
|
||||||
@ -156,17 +124,73 @@ if ($project_id) {
|
|||||||
'nsr' => 'NSR',
|
'nsr' => 'NSR',
|
||||||
'margin' => 'Margin'
|
'margin' => 'Margin'
|
||||||
];
|
];
|
||||||
|
foreach ($overridden_rows as $row) {
|
||||||
foreach ($overridden_data as $row) {
|
if (isset($metric_name_map[$row['metricName']])) {
|
||||||
$month = $row['month'];
|
$metric_display_name = $metric_name_map[$row['metricName']];
|
||||||
$metric_db_name = $row['metricName'];
|
$overrides[$row['month']][$metric_display_name] = $row['value'];
|
||||||
$value = $row['value'];
|
|
||||||
|
|
||||||
if (in_array($month, $months) && isset($metric_name_map[$metric_db_name])) {
|
|
||||||
$metric_display_name = $metric_name_map[$metric_db_name];
|
|
||||||
$financial_data[$metric_display_name][$month] = $value;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
foreach ($months as $month) {
|
||||||
|
// --- Opening Balance ---
|
||||||
|
$opening_balance = $previous_month_wip;
|
||||||
|
$financial_data['Opening Balance'][$month] = $opening_balance;
|
||||||
|
if (isset($overrides[$month]['Opening Balance'])) {
|
||||||
|
$financial_data['Opening Balance'][$month] = $overrides[$month]['Opening Balance'];
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Base Data ---
|
||||||
|
$cost = $monthly_costs[$month] ?? 0;
|
||||||
|
$base_monthly_wip = $monthly_wip[$month] ?? 0;
|
||||||
|
$billing = $monthly_billing[$month] ?? 0;
|
||||||
|
$expenses = $monthly_expenses[$month] ?? 0;
|
||||||
|
|
||||||
|
// --- Cumulative Metrics ---
|
||||||
|
$cumulative_billing += $billing;
|
||||||
|
$financial_data['Billings'][$month] = $cumulative_billing;
|
||||||
|
if (isset($overrides[$month]['Billings'])) {
|
||||||
|
$financial_data['Billings'][$month] = $overrides[$month]['Billings'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$cumulative_cost += $cost;
|
||||||
|
$financial_data['Cost'][$month] = $cumulative_cost;
|
||||||
|
if (isset($overrides[$month]['Cost'])) {
|
||||||
|
$financial_data['Cost'][$month] = $overrides[$month]['Cost'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$cumulative_expenses += $expenses;
|
||||||
|
$financial_data['Expenses'][$month] = $cumulative_expenses;
|
||||||
|
if (isset($overrides[$month]['Expenses'])) {
|
||||||
|
$financial_data['Expenses'][$month] = $overrides[$month]['Expenses'];
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- WIP (Closing Balance) ---
|
||||||
|
$final_opening_balance = $financial_data['Opening Balance'][$month];
|
||||||
|
$current_wip = $final_opening_balance + $expenses + $base_monthly_wip - $billing;
|
||||||
|
$financial_data['WIP'][$month] = $current_wip;
|
||||||
|
if (isset($overrides[$month]['WIP'])) {
|
||||||
|
$financial_data['WIP'][$month] = $overrides[$month]['WIP'];
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Calculated Metrics (NSR and Margin) ---
|
||||||
|
$nsr = $financial_data['WIP'][$month] + $financial_data['Billings'][$month] - $financial_data['Opening Balance'][$month] - $financial_data['Expenses'][$month];
|
||||||
|
$financial_data['NSR'][$month] = $nsr;
|
||||||
|
if (isset($overrides[$month]['NSR'])) {
|
||||||
|
$financial_data['NSR'][$month] = $overrides[$month]['NSR'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$final_nsr = $financial_data['NSR'][$month];
|
||||||
|
$final_cost = $financial_data['Cost'][$month];
|
||||||
|
$margin = ($final_nsr != 0) ? (($final_nsr - $final_cost) / $final_nsr) : 0;
|
||||||
|
$financial_data['Margin'][$month] = $margin;
|
||||||
|
if (isset($overrides[$month]['Margin'])) {
|
||||||
|
$financial_data['Margin'][$month] = $overrides[$month]['Margin'];
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Carry-over for next iteration ---
|
||||||
|
// Update previous month's WIP with the final, possibly overridden, value.
|
||||||
|
$previous_month_wip = $financial_data['WIP'][$month];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
27
roster.php
27
roster.php
@ -20,14 +20,13 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['action']) && $_POST['
|
|||||||
$metlife = (float)($_POST['metlife'] ?? 0);
|
$metlife = (float)($_POST['metlife'] ?? 0);
|
||||||
$topusPerMonth = (float)($_POST['topusPerMonth'] ?? 0);
|
$topusPerMonth = (float)($_POST['topusPerMonth'] ?? 0);
|
||||||
$grossRevenue = (float)($_POST['grossRevenue'] ?? 0);
|
$grossRevenue = (float)($_POST['grossRevenue'] ?? 0);
|
||||||
$discountedRevenue = (float)($_POST['discountedRevenue'] ?? 0);
|
|
||||||
|
|
||||||
// Auto-calculations
|
// Auto-calculations
|
||||||
$totalSalaryCostWithLabor = $newAmendedSalary + $employerContributions;
|
$totalSalaryCostWithLabor = $newAmendedSalary + $employerContributions;
|
||||||
$totalMonthlyCost = $totalSalaryCostWithLabor + $cars + $ticketRestaurant + $metlife + $topusPerMonth;
|
$totalMonthlyCost = $totalSalaryCostWithLabor + $cars + $ticketRestaurant + $metlife + $topusPerMonth;
|
||||||
$totalAnnualCost = $totalMonthlyCost * 14;
|
$totalAnnualCost = $totalMonthlyCost * 14;
|
||||||
|
|
||||||
$insert_sql = "INSERT INTO roster (sapCode, fullNameEn, legalEntity, functionBusinessUnit, costCenterCode, `level`, newAmendedSalary, employerContributions, cars, ticketRestaurant, metlife, topusPerMonth, totalSalaryCostWithLabor, totalMonthlyCost, totalAnnualCost, grossRevenue, discountedRevenue) VALUES (:sapCode, :fullNameEn, :legalEntity, :functionBusinessUnit, :costCenterCode, :level, :newAmendedSalary, :employerContributions, :cars, :ticketRestaurant, :metlife, :topusPerMonth, :totalSalaryCostWithLabor, :totalMonthlyCost, :totalAnnualCost, :grossRevenue, :discountedRevenue)";
|
$insert_sql = "INSERT INTO roster (sapCode, fullNameEn, legalEntity, functionBusinessUnit, costCenterCode, `level`, newAmendedSalary, employerContributions, cars, ticketRestaurant, metlife, topusPerMonth, totalSalaryCostWithLabor, totalMonthlyCost, totalAnnualCost, grossRevenue) VALUES (:sapCode, :fullNameEn, :legalEntity, :functionBusinessUnit, :costCenterCode, :level, :newAmendedSalary, :employerContributions, :cars, :ticketRestaurant, :metlife, :topusPerMonth, :totalSalaryCostWithLabor, :totalMonthlyCost, :totalAnnualCost, :grossRevenue)";
|
||||||
$stmt = $pdo_form->prepare($insert_sql);
|
$stmt = $pdo_form->prepare($insert_sql);
|
||||||
|
|
||||||
$stmt->execute([
|
$stmt->execute([
|
||||||
@ -46,8 +45,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['action']) && $_POST['
|
|||||||
':totalSalaryCostWithLabor' => $totalSalaryCostWithLabor,
|
':totalSalaryCostWithLabor' => $totalSalaryCostWithLabor,
|
||||||
':totalMonthlyCost' => $totalMonthlyCost,
|
':totalMonthlyCost' => $totalMonthlyCost,
|
||||||
':totalAnnualCost' => $totalAnnualCost,
|
':totalAnnualCost' => $totalAnnualCost,
|
||||||
':grossRevenue' => $grossRevenue,
|
':grossRevenue' => $grossRevenue
|
||||||
':discountedRevenue' => $discountedRevenue
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// To prevent form resubmission on refresh, redirect
|
// To prevent form resubmission on refresh, redirect
|
||||||
@ -95,7 +93,6 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['action']) && $_POST['
|
|||||||
$metlife = (float)($_POST['metlife'] ?? 0);
|
$metlife = (float)($_POST['metlife'] ?? 0);
|
||||||
$topusPerMonth = (float)($_POST['topusPerMonth'] ?? 0);
|
$topusPerMonth = (float)($_POST['topusPerMonth'] ?? 0);
|
||||||
$grossRevenue = (float)($_POST['grossRevenue'] ?? 0);
|
$grossRevenue = (float)($_POST['grossRevenue'] ?? 0);
|
||||||
$discountedRevenue = (float)($_POST['discountedRevenue'] ?? 0);
|
|
||||||
|
|
||||||
// Auto-calculations
|
// Auto-calculations
|
||||||
$totalSalaryCostWithLabor = $newAmendedSalary + $employerContributions;
|
$totalSalaryCostWithLabor = $newAmendedSalary + $employerContributions;
|
||||||
@ -118,8 +115,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['action']) && $_POST['
|
|||||||
totalSalaryCostWithLabor = :totalSalaryCostWithLabor,
|
totalSalaryCostWithLabor = :totalSalaryCostWithLabor,
|
||||||
totalMonthlyCost = :totalMonthlyCost,
|
totalMonthlyCost = :totalMonthlyCost,
|
||||||
totalAnnualCost = :totalAnnualCost,
|
totalAnnualCost = :totalAnnualCost,
|
||||||
grossRevenue = :grossRevenue,
|
grossRevenue = :grossRevenue
|
||||||
discountedRevenue = :discountedRevenue
|
|
||||||
WHERE id = :id";
|
WHERE id = :id";
|
||||||
|
|
||||||
$stmt = $pdo_update->prepare($update_sql);
|
$stmt = $pdo_update->prepare($update_sql);
|
||||||
@ -140,8 +136,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['action']) && $_POST['
|
|||||||
':totalSalaryCostWithLabor' => $totalSalaryCostWithLabor,
|
':totalSalaryCostWithLabor' => $totalSalaryCostWithLabor,
|
||||||
':totalMonthlyCost' => $totalMonthlyCost,
|
':totalMonthlyCost' => $totalMonthlyCost,
|
||||||
':totalAnnualCost' => $totalAnnualCost,
|
':totalAnnualCost' => $totalAnnualCost,
|
||||||
':grossRevenue' => $grossRevenue,
|
':grossRevenue' => $grossRevenue
|
||||||
':discountedRevenue' => $discountedRevenue
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
header("Location: " . $_SERVER['PHP_SELF']);
|
header("Location: " . $_SERVER['PHP_SELF']);
|
||||||
@ -356,7 +351,6 @@ try {
|
|||||||
<th>Total Monthly Cost (€)</th>
|
<th>Total Monthly Cost (€)</th>
|
||||||
<th>Total Annual Cost (€)</th>
|
<th>Total Annual Cost (€)</th>
|
||||||
<th>Gross Revenue (€)</th>
|
<th>Gross Revenue (€)</th>
|
||||||
<th>Discounted Revenue (€)</th>
|
|
||||||
<th>Actions</th>
|
<th>Actions</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@ -389,7 +383,6 @@ try {
|
|||||||
<td>€<?php echo number_format($row['totalMonthlyCost'], 2); ?></td>
|
<td>€<?php echo number_format($row['totalMonthlyCost'], 2); ?></td>
|
||||||
<td>€<?php echo number_format($row['totalAnnualCost'], 2); ?></td>
|
<td>€<?php echo number_format($row['totalAnnualCost'], 2); ?></td>
|
||||||
<td>€<?php echo number_format($row['grossRevenue'], 2); ?></td>
|
<td>€<?php echo number_format($row['grossRevenue'], 2); ?></td>
|
||||||
<td>€<?php echo number_format($row['discountedRevenue'], 2); ?></td>
|
|
||||||
<td>
|
<td>
|
||||||
<div class="d-flex">
|
<div class="d-flex">
|
||||||
<button class="btn btn-sm btn-outline-info me-2 view-btn"
|
<button class="btn btn-sm btn-outline-info me-2 view-btn"
|
||||||
@ -503,10 +496,6 @@ try {
|
|||||||
<label for="grossRevenue" class="form-label">Gross Revenue (€)</label>
|
<label for="grossRevenue" class="form-label">Gross Revenue (€)</label>
|
||||||
<input type="number" step="0.01" class="form-control" id="grossRevenue" name="grossRevenue" value="0">
|
<input type="number" step="0.01" class="form-control" id="grossRevenue" name="grossRevenue" value="0">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6 mb-3">
|
|
||||||
<label for="discountedRevenue" class="form-label">Discounted Revenue (€)</label>
|
|
||||||
<input type="number" step="0.01" class="form-control" id="discountedRevenue" name="discountedRevenue" value="0">
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
@ -608,10 +597,6 @@ try {
|
|||||||
<label for="edit-grossRevenue" class="form-label">Gross Revenue (€)</label>
|
<label for="edit-grossRevenue" class="form-label">Gross Revenue (€)</label>
|
||||||
<input type="number" step="0.01" class="form-control" id="edit-grossRevenue" name="grossRevenue">
|
<input type="number" step="0.01" class="form-control" id="edit-grossRevenue" name="grossRevenue">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6 mb-3">
|
|
||||||
<label for="edit-discountedRevenue" class="form-label">Discounted Revenue (€)</label>
|
|
||||||
<input type="number" step="0.01" class="form-control" id="edit-discountedRevenue" name="discountedRevenue">
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
@ -718,10 +703,6 @@ try {
|
|||||||
<label class="form-label">Gross Revenue (€)</label>
|
<label class="form-label">Gross Revenue (€)</label>
|
||||||
<input type="text" class="form-control" id="view-grossRevenue" readonly>
|
<input type="text" class="form-control" id="view-grossRevenue" readonly>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6 mb-3">
|
|
||||||
<label class="form-label">Discounted Revenue (€)</label>
|
|
||||||
<input type="text" class="form-control" id="view-discountedRevenue" readonly>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user