You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
594 lines
25 KiB
594 lines
25 KiB
<div class="content-wrapper">
|
|
<section class="content-header">
|
|
<h1>
|
|
Gérer les
|
|
<small>Commandes</small>
|
|
</h1>
|
|
<ol class="breadcrumb">
|
|
<li><a href="#"><i class="fa fa-dashboard"></i> Accueil</a></li>
|
|
<li class="active">Commandes</li>
|
|
</ol>
|
|
</section>
|
|
|
|
<section class="content">
|
|
<div class="row">
|
|
<div class="col-md-12 col-xs-12">
|
|
|
|
<div id="messages"></div>
|
|
|
|
<?php if (session()->getFlashdata('success')): ?>
|
|
<div class="alert alert-success alert-dismissible" role="alert">
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
<?php echo session()->getFlashdata('success'); ?>
|
|
</div>
|
|
<?php elseif (session()->getFlashdata('error')): ?>
|
|
<div class="alert alert-danger alert-dismissible" role="alert">
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
<?php echo session()->getFlashdata('error'); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ($errors = session()->getFlashdata('errors')): ?>
|
|
<div class="alert alert-danger alert-dismissible" role="alert">
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
<?php if (is_array($errors)): ?>
|
|
<ul>
|
|
<?php foreach ($errors as $error): ?>
|
|
<li><?= esc($error) ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php else: ?>
|
|
<?= esc($errors) ?>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="box">
|
|
<div class="box-header">
|
|
<h3 class="box-title">Mise à jour de commande</h3>
|
|
</div>
|
|
|
|
<form role="form" action="<?php base_url('orders/create') ?>" method="post" class="form-horizontal">
|
|
<div class="box-body">
|
|
|
|
<div class="form-group">
|
|
<label for="date" class="col-sm-12 control-label">Date: <?php echo date('Y-m-d') ?></label>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="time" class="col-sm-12 control-label">Heure: <?php echo date('h:i a') ?></label>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-xs-12 pull pull-left">
|
|
|
|
<div class="form-group">
|
|
<label for="types" class="col-sm-5 control-label" style="text-align:left;">Types</label>
|
|
<div class="col-sm-7">
|
|
<select name="" id="typesCommande" class="form-control">
|
|
<option value="1">Facture</option>
|
|
<option value="2">Bon de Livraison & Facture</option>
|
|
<option value="3">Bon de Livraison</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="customer_name" class="col-sm-5 control-label" style="text-align:left;">Nom du client</label>
|
|
<div class="col-sm-7">
|
|
<input type="text" class="form-control" id="customer_name" name="customer_name" placeholder="Enter Customer Name" value="<?php echo $order_data['order']['customer_name'] ?>" autocomplete="off" />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="gross_amount" class="col-sm-5 control-label" style="text-align:left;">Adresse du client</label>
|
|
<div class="col-sm-7">
|
|
<input type="text" class="form-control" id="customer_address" name="customer_address" placeholder="Enter Customer Address" value="<?php echo $order_data['order']['customer_address'] ?>" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="gross_amount" class="col-sm-5 control-label" style="text-align:left;">Téléphone du client</label>
|
|
<div class="col-sm-7">
|
|
<input type="text" class="form-control" id="customer_phone" name="customer_phone" placeholder="Enter Customer Phone" value="<?php echo $order_data['order']['customer_phone'] ?>" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="gross_amount" class="col-sm-5 control-label" style="text-align:left;">CIN du client</label>
|
|
<div class="col-sm-7">
|
|
<input type="text" class="form-control" id="customer_cin" name="customer_cin" placeholder="Enter Customer CIN" value="<?php echo $order_data['order']['customer_cin'] ?>" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<br /> <br />
|
|
<table class="table table-bordered" id="product_info_table">
|
|
<thead>
|
|
<tr>
|
|
<th style="width:50%">Produit</th>
|
|
<th style="width:15%">Puissance (CC)</th>
|
|
<th style="width:10%">Prix unitaire</th>
|
|
<th style="width:20%">Montant</th>
|
|
<th style="width:10%"><button type="button" id="add_row" class="btn btn-default"><i class="fa fa-plus"></i></button></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php if (isset($order_data['order_item'])): ?>
|
|
<?php $x = 1; ?>
|
|
<?php foreach ($order_data['order_item'] as $key => $val): ?>
|
|
<tr id="row_<?php echo $x; ?>">
|
|
<td>
|
|
<select class="form-control select_group product" data-row-id="row_<?php echo $x; ?>"
|
|
id="product_<?php echo $x; ?>" name="product[]" style="width:100%;"
|
|
onchange="getProductData(<?php echo $x; ?>)" required>
|
|
<option value=""></option>
|
|
<?php foreach ($products as $k => $v): ?>
|
|
<option value="<?php echo $v['id'] ?>"
|
|
<?php if ($val['product_id'] == $v['id']) { echo "selected='selected'"; } ?>>
|
|
<?php
|
|
echo $v['sku'] . ' | ' . $v['name'];
|
|
if (!empty($v['numero_de_moteur'])) {
|
|
echo ' | ' . $v['numero_de_moteur'];
|
|
}
|
|
?>
|
|
</option>
|
|
<?php endforeach ?>
|
|
</select>
|
|
</td>
|
|
|
|
<!-- ✅ COLONNE PUISSANCE VISIBLE -->
|
|
<td>
|
|
<input type="number" name="puissance[]" id="puissance_<?php echo $x; ?>"
|
|
class="form-control" placeholder="Puissance"
|
|
value="<?php echo esc($val['puissance'] ?? '1') ?>"
|
|
autocomplete="off" min="1">
|
|
</td>
|
|
|
|
<td>
|
|
<input type="text" name="rate[]" id="rate_<?php echo $x; ?>"
|
|
class="form-control" disabled
|
|
value="<?php echo esc($val['rate']) ?>" autocomplete="off">
|
|
<input type="hidden" name="rate_value[]" id="rate_value_<?php echo $x; ?>"
|
|
class="form-control" value="<?php echo esc($val['rate']) ?>" autocomplete="off">
|
|
</td>
|
|
|
|
<td>
|
|
<input type="text" name="amount[]" id="amount_<?php echo $x; ?>"
|
|
class="form-control" disabled
|
|
value="<?php echo esc($val['amount']) ?>" autocomplete="off">
|
|
<input type="hidden" name="amount_value[]" id="amount_value_<?php echo $x; ?>"
|
|
class="form-control" value="<?php echo esc($val['amount']) ?>" autocomplete="off">
|
|
</td>
|
|
|
|
<td>
|
|
<button type="button" class="btn btn-default"
|
|
onclick="removeRow('<?php echo $x; ?>')">
|
|
<i class="fa fa-close"></i>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
<?php $x++; ?>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br /> <br />
|
|
|
|
<div class="col-md-6 col-xs-12 pull pull-right">
|
|
|
|
<div class="form-group">
|
|
<label for="gross_amount" class="col-sm-5 control-label">Prix affiché</label>
|
|
<div class="col-sm-7">
|
|
<input type="text" class="form-control" id="gross_amount" name="gross_amount" disabled value="<?php echo $order_data['order']['gross_amount'] ?>" autocomplete="off">
|
|
<input type="hidden" class="form-control" id="gross_amount_value" name="gross_amount_value" value="<?php echo $order_data['order']['gross_amount'] ?>" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="discount" class="col-sm-5 control-label">Prix demandé</label>
|
|
<div class="col-sm-7">
|
|
<?php
|
|
$users = session()->get('user');
|
|
if($users && $users['group_name'] == 'COMMERCIALE'):
|
|
?>
|
|
<input type="text" class="form-control" id="discount" name="discount" placeholder="Discount" onkeyup="subAmount()" value="<?php echo $order_data['order']['discount'] ?>" autocomplete="off">
|
|
<?php else: ?>
|
|
<input type="text" class="form-control" id="discount" name="discount" readonly value="<?php echo $order_data['order']['discount'] ?>" autocomplete="off">
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="net_amount" class="col-sm-5 control-label">Remise</label>
|
|
<div class="col-sm-7">
|
|
<input type="text" class="form-control" id="net_amount" name="net_amount" disabled value="<?php echo $order_data['order']['net_amount'] ?>" autocomplete="off">
|
|
<input type="hidden" class="form-control" id="net_amount_value" name="net_amount_value" value="<?php echo $order_data['order']['net_amount'] ?>" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
$users = session()->get('user');
|
|
if ($users && $users['group_name'] !== 'COMMERCIALE'):
|
|
?>
|
|
|
|
<div class="form-group">
|
|
<label for="paid_status" class="col-sm-5 control-label">Tranche de paiement</label>
|
|
<div class="col-sm-7">
|
|
<select class="form-control" id="payment_mode" name="payment_mode">
|
|
<option value="1" selected>une tranche</option>
|
|
<option value="2">deux tranches</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group" id="montant_reference" style="display: none">
|
|
<label class="col-sm-5 control-label">Montant à répartir</label>
|
|
<div class="col-sm-7">
|
|
<input type="text" class="form-control" id="montant_total_tranches" disabled>
|
|
<input type="hidden" id="montant_total_tranches_value">
|
|
<small class="text-muted" id="montant_source_label"></small>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="payment-tranches">
|
|
<div class="form-group" id="paid_status_1" style="display: none">
|
|
<label for="paid_status_1" class="col-sm-5 control-label">Tranche 1</label>
|
|
<div class="col-sm-3">
|
|
<select class="form-control" id="payment_mode_1" name="order_payment_mode_1">
|
|
<option value="MVOLA">MVOLA</option>
|
|
<option value="Virement Bancaire">Virement Bancaire</option>
|
|
<option value="En espèce">En espèce</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<input type="number" class="form-control" id="payment_amount_1"
|
|
name="tranche_1" placeholder="Montant" onkeyup="calculerTranche2()">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group" id="paid_status_2" style="display: none">
|
|
<label for="paid_status_2" class="col-sm-5 control-label">Tranche 2 (Reste)</label>
|
|
<div class="col-sm-3">
|
|
<select class="form-control" id="payment_mode_2" name="order_payment_mode_2">
|
|
<option value="MVOLA">MVOLA</option>
|
|
<option value="Virement Bancaire">Virement Bancaire</option>
|
|
<option value="En espèce">En espèce</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<input type="number" class="form-control" id="payment_amount_2"
|
|
name="tranche_2" placeholder="Montant" readonly>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php
|
|
$users = session()->get('user');
|
|
if ($users && $users['group_name'] !== 'COMMERCIALE'):
|
|
?>
|
|
|
|
<div class="form-group">
|
|
<label for="paid_status" class="col-sm-5 control-label">Statut payant</label>
|
|
<div class="col-sm-7">
|
|
<select type="text" class="form-control" id="paid_status" name="paid_status">
|
|
<option value="1">Validé</option>
|
|
<option value="2">Refusé</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="box-footer">
|
|
<input type="hidden" name="service_charge_rate" value="<?php echo $company_data['service_charge_value'] ?>" autocomplete="off">
|
|
<input type="hidden" name="vat_charge_rate" value="<?php echo $company_data['vat_charge_value'] ?>" autocomplete="off">
|
|
|
|
<a target="__blank" id="Imprimente" href="<?php echo base_url() . 'orders/printDiv/' . $order_data['order']['id'] ?>" class="btn btn-default">Imprimer</a>
|
|
<button type="submit" class="btn btn-primary">Enregistrer</button>
|
|
<a href="<?php echo base_url('orders/') ?>" class="btn btn-warning">Retour</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
var base_url = "<?php echo base_url(); ?>";
|
|
var idData = "<?php echo $order_data['order']['id']; ?>";
|
|
let Imprimente = document.getElementById('Imprimente');
|
|
let typesCommande = document.getElementById('typesCommande');
|
|
|
|
typesCommande.addEventListener('change', function () {
|
|
if (typesCommande.value == 1) {
|
|
Imprimente.removeAttribute("href");
|
|
Imprimente.setAttribute("href", base_url +'orders/printDiv/' + idData);
|
|
} else if(typesCommande.value == 3) {
|
|
Imprimente.removeAttribute("href");
|
|
Imprimente.setAttribute("href", base_url +'orders/printDivBL/' + idData);
|
|
} else {
|
|
Imprimente.removeAttribute("href");
|
|
Imprimente.setAttribute("href", base_url +'orders/printDivBLF/' + idData);
|
|
}
|
|
});
|
|
|
|
$(document).ready(function() {
|
|
$(".select_group").select2();
|
|
|
|
$("#mainOrdersNav").addClass('active');
|
|
$("#manageOrdersNav").addClass('active');
|
|
|
|
// ✅ CORRECTION : Gestion des tranches de paiement
|
|
var paymentTranche = 1;
|
|
|
|
// ✅ Fonction pour obtenir le montant à répartir (discount ou gross_amount)
|
|
function getMontantTotal() {
|
|
var discount = parseFloat($('#discount').val()) || 0;
|
|
var grossAmount = parseFloat($('#gross_amount_value').val()) || 0;
|
|
return discount > 0 ? discount : grossAmount;
|
|
}
|
|
|
|
var netAmount = getMontantTotal();
|
|
$('#payment_amount_1').val(netAmount);
|
|
|
|
function addPaymentTranche(paymentTranche) {
|
|
if (parseInt(paymentTranche) === 2) {
|
|
$("#paid_status_1").show();
|
|
$("#paid_status_2").show();
|
|
$("#montant_reference").show(); // ✅ Afficher le montant de référence
|
|
|
|
var amount1 = parseFloat($('#payment_amount_1').val()) || 0;
|
|
var montantTotal = getMontantTotal();
|
|
var amount2 = montantTotal - amount1;
|
|
$('#payment_amount_2').val(amount2.toFixed(2));
|
|
} else {
|
|
$("#paid_status_1").show();
|
|
$("#paid_status_2").hide();
|
|
$("#montant_reference").hide(); // ✅ Cacher le montant de référence
|
|
$('#payment_mode_2').val('');
|
|
|
|
// ✅ Remplir tranche 1 avec le montant total
|
|
var montantTotal = getMontantTotal();
|
|
$('#payment_amount_1').val(montantTotal.toFixed(2));
|
|
}
|
|
}
|
|
|
|
$("#payment_mode").on("change", function() {
|
|
addPaymentTranche($(this).val());
|
|
updateMontantTranches();
|
|
});
|
|
|
|
// ✅ CORRECTION : Recalculer tranche 2 quand tranche 1 change
|
|
$('#payment_amount_1').on("input", function() {
|
|
var amount1 = parseFloat($(this).val()) || 0;
|
|
var montantTotal = getMontantTotal();
|
|
var amount2 = montantTotal - amount1;
|
|
|
|
if (amount2 < 0) amount2 = 0;
|
|
|
|
$('#payment_amount_2').val(amount2.toFixed(2));
|
|
});
|
|
|
|
addPaymentTranche(paymentTranche);
|
|
|
|
$("#add_row").unbind('click').bind('click', function() {
|
|
var table = $("#product_info_table");
|
|
var count_table_tbody_tr = $("#product_info_table tbody tr").length;
|
|
var row_id = count_table_tbody_tr + 1;
|
|
|
|
$.ajax({
|
|
url: base_url + '/orders/getTableProductRow/',
|
|
type: 'post',
|
|
dataType: 'json',
|
|
success: function(response) {
|
|
var html = '<tr id="row_' + row_id + '">' +
|
|
'<td>' +
|
|
'<select class="form-control select_group product" data-row-id="' + row_id + '" id="product_' + row_id + '" name="product[]" style="width:100%;" onchange="getProductData(' + row_id + ')">' +
|
|
'<option value=""></option>';
|
|
|
|
$.each(response, function(index, value) {
|
|
var displayText = value.sku + ' | ' + value.name;
|
|
if (value.numero_de_moteur) {
|
|
displayText += ' | ' + value.numero_de_moteur;
|
|
}
|
|
if (value.puissance) {
|
|
displayText += ' | ' + value.puissance;
|
|
}
|
|
html += '<option value="' + value.id + '">' + displayText + '</option>';
|
|
});
|
|
|
|
html += '</select>' +
|
|
'</td>' +
|
|
'<td><input type="text" name="puissance[]" id="puissance_' + row_id + '" class="form-control" placeholder="Puissance" autocomplete="off"></td>' +
|
|
'<td><input type="text" name="rate[]" id="rate_' + row_id + '" class="form-control" disabled><input type="hidden" name="rate_value[]" id="rate_value_' + row_id + '" class="form-control"></td>' +
|
|
'<td><input type="text" name="amount[]" id="amount_' + row_id + '" class="form-control" disabled><input type="hidden" name="amount_value[]" id="amount_value_' + row_id + '" class="form-control"></td>' +
|
|
'<td><button type="button" class="btn btn-default" onclick="removeRow(\'' + row_id + '\')"><i class="fa fa-close"></i></button></td>' +
|
|
'</tr>';
|
|
|
|
if (count_table_tbody_tr >= 1) {
|
|
$("#product_info_table tbody tr:last").after(html);
|
|
} else {
|
|
$("#product_info_table tbody").html(html);
|
|
}
|
|
|
|
$(".product").select2();
|
|
}
|
|
});
|
|
|
|
return false;
|
|
});
|
|
});
|
|
|
|
function getTotal(row = null) {
|
|
if (row) {
|
|
var total = Number($("#rate_value_" + row).val());
|
|
total = total.toFixed(2);
|
|
$("#amount_" + row).val(total);
|
|
$("#amount_value_" + row).val(total);
|
|
subAmount();
|
|
} else {
|
|
alert('no row !! please refresh the page');
|
|
}
|
|
}
|
|
|
|
function getProductData(row_id) {
|
|
var product_id = $("#product_" + row_id).val();
|
|
if (product_id == "") {
|
|
$("#rate_" + row_id).val("");
|
|
$("#rate_value_" + row_id).val("");
|
|
$("#puissance_" + row_id).val("");
|
|
$("#amount_" + row_id).val("");
|
|
$("#amount_value_" + row_id).val("");
|
|
} else {
|
|
$.ajax({
|
|
url: base_url + 'orders/getProductValueById',
|
|
type: 'post',
|
|
data: { product_id: product_id },
|
|
dataType: 'json',
|
|
success: function(response) {
|
|
$("#rate_" + row_id).val(response.prix_vente);
|
|
$("#rate_value_" + row_id).val(response.prix_vente);
|
|
|
|
$("#puissance_" + row_id).val(response.puissance || '');
|
|
|
|
var total = Number(response.prix_vente);
|
|
total = total.toFixed(2);
|
|
$("#amount_" + row_id).val(total);
|
|
$("#amount_value_" + row_id).val(total);
|
|
subAmount();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
function subAmount() {
|
|
var service_charge = <?php echo ($company_data['service_charge_value'] > 0) ? $company_data['service_charge_value'] : 0; ?>;
|
|
var vat_charge = <?php echo ($company_data['vat_charge_value'] > 0) ? $company_data['vat_charge_value'] : 0; ?>;
|
|
|
|
var tableProductLength = $("#product_info_table tbody tr").length;
|
|
var totalSubAmount = 0;
|
|
for (x = 0; x < tableProductLength; x++) {
|
|
var tr = $("#product_info_table tbody tr")[x];
|
|
var count = $(tr).attr('id');
|
|
count = count.substring(4);
|
|
totalSubAmount = Number(totalSubAmount) + Number($("#amount_" + count).val());
|
|
}
|
|
|
|
totalSubAmount = totalSubAmount.toFixed(2);
|
|
$("#gross_amount").val(totalSubAmount);
|
|
$("#gross_amount_value").val(totalSubAmount);
|
|
|
|
var vat = (Number($("#gross_amount").val()) / 100) * vat_charge;
|
|
vat = vat.toFixed(2);
|
|
$("#vat_charge").val(vat);
|
|
$("#vat_charge_value").val(vat);
|
|
|
|
var service = (Number($("#gross_amount").val()) / 100) * service_charge;
|
|
service = service.toFixed(2);
|
|
$("#service_charge").val(service);
|
|
$("#service_charge_value").val(service);
|
|
|
|
var totalAmount = (Number(totalSubAmount));
|
|
totalAmount = totalAmount.toFixed(2);
|
|
|
|
var discount = $("#discount").val();
|
|
if (discount) {
|
|
var grandTotal = Number(totalAmount) - Number(discount);
|
|
grandTotal = grandTotal.toFixed(2);
|
|
$("#net_amount").val(grandTotal);
|
|
$("#net_amount_value").val(grandTotal);
|
|
} else {
|
|
$("#net_amount").val(totalAmount);
|
|
$("#net_amount_value").val(totalAmount);
|
|
}
|
|
|
|
var paid_amount = Number($("#paid_amount").val());
|
|
if (paid_amount) {
|
|
var net_amount_value = Number($("#net_amount_value").val());
|
|
var remaning = net_amount_value - paid_amount;
|
|
$("#remaining").val(remaning.toFixed(2));
|
|
$("#remaining_value").val(remaning.toFixed(2));
|
|
}
|
|
|
|
// ✅ CORRECTION : Mettre à jour les tranches après chaque calcul
|
|
updateMontantTranches();
|
|
}
|
|
|
|
function paidAmount() {
|
|
var grandTotal = $("#net_amount_value").val();
|
|
if (grandTotal) {
|
|
var dueAmount = Number($("#net_amount_value").val()) - Number($("#paid_amount").val());
|
|
dueAmount = dueAmount.toFixed(2);
|
|
$("#remaining").val(dueAmount);
|
|
$("#remaining_value").val(dueAmount);
|
|
}
|
|
}
|
|
|
|
function removeRow(tr_id) {
|
|
$("#product_info_table tbody tr#row_" + tr_id).remove();
|
|
subAmount();
|
|
}
|
|
|
|
// ✅ CORRECTION : Fonction pour obtenir le montant pour les tranches
|
|
function getMontantPourTranches() {
|
|
var discount = parseFloat($("#discount").val()) || 0;
|
|
var grossAmount = parseFloat($("#gross_amount_value").val()) || 0;
|
|
return discount > 0 ? discount : grossAmount;
|
|
}
|
|
|
|
// ✅ CORRECTION : Mettre à jour l'affichage du montant de référence
|
|
function updateMontantTranches() {
|
|
var montant = getMontantPourTranches();
|
|
var discount = parseFloat($("#discount").val()) || 0;
|
|
|
|
$("#montant_total_tranches").val(montant.toFixed(2));
|
|
$("#montant_total_tranches_value").val(montant);
|
|
|
|
if (discount > 0) {
|
|
$("#montant_source_label").text("(Prix avec remise acceptée)");
|
|
} else {
|
|
$("#montant_source_label").text("(Montant brut)");
|
|
}
|
|
|
|
// ✅ CORRECTION : Mettre à jour tranche 1 si en mode 1 tranche
|
|
var paymentMode = $("#payment_mode").val();
|
|
if (parseInt(paymentMode) === 1) {
|
|
$("#payment_amount_1").val(montant.toFixed(2));
|
|
} else {
|
|
// ✅ En mode 2 tranches, recalculer tranche 2
|
|
calculerTranche2();
|
|
}
|
|
}
|
|
|
|
// ✅ CORRECTION : Calculer tranche 2 basé sur le montant total actuel
|
|
function calculerTranche2() {
|
|
var montantTotal = getMontantPourTranches();
|
|
var tranche1 = parseFloat($("#payment_amount_1").val()) || 0;
|
|
var tranche2 = montantTotal - tranche1;
|
|
if (tranche2 < 0) tranche2 = 0;
|
|
$("#payment_amount_2").val(tranche2.toFixed(2));
|
|
}
|
|
|
|
// ✅ CORRECTION : Écouter les changements de discount
|
|
$("#discount").on('keyup', function() {
|
|
subAmount();
|
|
});
|
|
|
|
// ✅ Initialisation au chargement
|
|
const net_amount_value = document.getElementById('net_amount_value');
|
|
const net_amount = document.getElementById('net_amount');
|
|
const payment_amount_1 = document.getElementById('payment_amount_1');
|
|
|
|
if (payment_amount_1 && net_amount) {
|
|
payment_amount_1.value = net_amount.value;
|
|
}
|
|
</script>
|