Merge pull request #6054 from atm-gauthier/develop_NEW_reduc_on_excess_received
NEW Develop new reduc on excess received
This commit is contained in:
commit
b611c5ca53
@ -381,6 +381,15 @@ if ($socid > 0)
|
|||||||
print preg_replace('/\(DEPOSIT\)/',$langs->trans("InvoiceDeposit"),$obj->description).' '.$facturestatic->getNomURl(1);
|
print preg_replace('/\(DEPOSIT\)/',$langs->trans("InvoiceDeposit"),$obj->description).' '.$facturestatic->getNomURl(1);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
}
|
}
|
||||||
|
elseif (preg_match('/\(EXCESS RECEIVED\)/',$obj->description))
|
||||||
|
{
|
||||||
|
print '<td class="nowrap">';
|
||||||
|
$facturestatic->id=$obj->fk_facture_source;
|
||||||
|
$facturestatic->ref=$obj->ref;
|
||||||
|
$facturestatic->type=$obj->type;
|
||||||
|
print preg_replace('/\(EXCESS RECEIVED\)/',$langs->trans("Invoice"),$obj->description).' '.$facturestatic->getNomURl(1);
|
||||||
|
print '</td>';
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print '<td>';
|
print '<td>';
|
||||||
@ -540,6 +549,15 @@ if ($socid > 0)
|
|||||||
print preg_replace('/\(DEPOSIT\)/',$langs->trans("InvoiceDeposit"),$obj->description).' '.$facturestatic->getNomURl(1);
|
print preg_replace('/\(DEPOSIT\)/',$langs->trans("InvoiceDeposit"),$obj->description).' '.$facturestatic->getNomURl(1);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
}
|
}
|
||||||
|
elseif (preg_match('/\(EXCESS RECEIVED\)/',$obj->description))
|
||||||
|
{
|
||||||
|
print '<td class="nowrap">';
|
||||||
|
$facturestatic->id=$obj->fk_facture_source;
|
||||||
|
$facturestatic->ref=$obj->ref;
|
||||||
|
$facturestatic->type=$obj->type;
|
||||||
|
print preg_replace('/\(EXCESS RECEIVED\)/',$langs->trans("Invoice"),$obj->description).' '.$facturestatic->getNomURl(1);
|
||||||
|
print '</td>';
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print '<td>';
|
print '<td>';
|
||||||
|
|||||||
@ -602,7 +602,7 @@ if (empty($reshook))
|
|||||||
|
|
||||||
$canconvert=0;
|
$canconvert=0;
|
||||||
if ($object->type == Facture::TYPE_DEPOSIT && $object->paye == 1 && empty($discountcheck->id)) $canconvert=1; // we can convert deposit into discount if deposit is payed completely and not already converted (see real condition into condition used to show button converttoreduc)
|
if ($object->type == Facture::TYPE_DEPOSIT && $object->paye == 1 && empty($discountcheck->id)) $canconvert=1; // we can convert deposit into discount if deposit is payed completely and not already converted (see real condition into condition used to show button converttoreduc)
|
||||||
if ($object->type == Facture::TYPE_CREDIT_NOTE && $object->paye == 0 && empty($discountcheck->id)) $canconvert=1; // we can convert credit note into discount if credit note is not payed back and not already converted and amount of payment is 0 (see real condition into condition used to show button converttoreduc)
|
if (($object->type == Facture::TYPE_CREDIT_NOTE || $object->type == Facture::TYPE_STANDARD) && $object->paye == 0 && empty($discountcheck->id)) $canconvert=1; // we can convert credit note into discount if credit note is not payed back and not already converted and amount of payment is 0 (see real condition into condition used to show button converttoreduc)
|
||||||
if ($canconvert)
|
if ($canconvert)
|
||||||
{
|
{
|
||||||
$db->begin();
|
$db->begin();
|
||||||
@ -626,6 +626,8 @@ if (empty($reshook))
|
|||||||
$discount->description = '(CREDIT_NOTE)';
|
$discount->description = '(CREDIT_NOTE)';
|
||||||
elseif ($object->type == Facture::TYPE_DEPOSIT)
|
elseif ($object->type == Facture::TYPE_DEPOSIT)
|
||||||
$discount->description = '(DEPOSIT)';
|
$discount->description = '(DEPOSIT)';
|
||||||
|
elseif ($object->type == Facture::TYPE_STANDARD)
|
||||||
|
$discount->description = '(EXCESS RECEIVED)';
|
||||||
else {
|
else {
|
||||||
setEventMessages($langs->trans('CantConvertToReducAnInvoiceOfThisType'), null, 'errors');
|
setEventMessages($langs->trans('CantConvertToReducAnInvoiceOfThisType'), null, 'errors');
|
||||||
}
|
}
|
||||||
@ -635,6 +637,30 @@ if (empty($reshook))
|
|||||||
|
|
||||||
$error = 0;
|
$error = 0;
|
||||||
|
|
||||||
|
if ($object->type == Facture::TYPE_STANDARD) {
|
||||||
|
|
||||||
|
// If we're on a standard invoice, we have to get excess received to create it in TTC wuthout VAT
|
||||||
|
|
||||||
|
$sql = 'SELECT SUM(pf.amount) as total_paiements
|
||||||
|
FROM llx_c_paiement as c, llx_paiement_facture as pf, llx_paiement as p
|
||||||
|
WHERE pf.fk_facture = '.$object->id.' AND p.fk_paiement = c.id AND pf.fk_paiement = p.rowid ORDER BY p.datep, p.tms';
|
||||||
|
|
||||||
|
$resql = $db->query($sql);
|
||||||
|
$res = $db->fetch_object($resql);
|
||||||
|
$total_paiements = $res->total_paiements;
|
||||||
|
|
||||||
|
$discount->amount_ht = $discount->amount_ttc = $total_paiements - $object->total_ttc;
|
||||||
|
$discount->amount_tva = 0;
|
||||||
|
$discount->tva_tx = 0;
|
||||||
|
|
||||||
|
$result = $discount->create($user);
|
||||||
|
if ($result < 0)
|
||||||
|
{
|
||||||
|
$error++;
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
foreach ($amount_ht as $tva_tx => $xxx)
|
foreach ($amount_ht as $tva_tx => $xxx)
|
||||||
{
|
{
|
||||||
$discount->amount_ht = abs($amount_ht[$tva_tx]);
|
$discount->amount_ht = abs($amount_ht[$tva_tx]);
|
||||||
@ -650,6 +676,8 @@ if (empty($reshook))
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
if (empty($error))
|
if (empty($error))
|
||||||
{
|
{
|
||||||
// Classe facture
|
// Classe facture
|
||||||
@ -2718,8 +2746,8 @@ else if ($id > 0 || ! empty($ref))
|
|||||||
$filterabsolutediscount = "fk_facture_source IS NULL"; // If we want deposit to be substracted to payments only and not to total of final invoice
|
$filterabsolutediscount = "fk_facture_source IS NULL"; // If we want deposit to be substracted to payments only and not to total of final invoice
|
||||||
$filtercreditnote = "fk_facture_source IS NOT NULL"; // If we want deposit to be substracted to payments only and not to total of final invoice
|
$filtercreditnote = "fk_facture_source IS NOT NULL"; // If we want deposit to be substracted to payments only and not to total of final invoice
|
||||||
} else {
|
} else {
|
||||||
$filterabsolutediscount = "fk_facture_source IS NULL OR (fk_facture_source IS NOT NULL AND description LIKE '(DEPOSIT)%')";
|
$filterabsolutediscount = "fk_facture_source IS NULL OR (fk_facture_source IS NOT NULL AND (description LIKE '(DEPOSIT)%' OR description LIKE '(EXCESS RECEIVED)%'))";
|
||||||
$filtercreditnote = "fk_facture_source IS NOT NULL AND description NOT LIKE '(DEPOSIT)%'";
|
$filtercreditnote = "fk_facture_source IS NOT NULL AND description NOT LIKE '(DEPOSIT)%' AND description NOT LIKE '(EXCESS RECEIVED)%'";
|
||||||
}
|
}
|
||||||
|
|
||||||
$absolute_discount = $soc->getAvailableDiscounts('', $filterabsolutediscount);
|
$absolute_discount = $soc->getAvailableDiscounts('', $filterabsolutediscount);
|
||||||
@ -2742,7 +2770,10 @@ else if ($id > 0 || ! empty($ref))
|
|||||||
|
|
||||||
// Confirmation de la conversion de l'avoir en reduc
|
// Confirmation de la conversion de l'avoir en reduc
|
||||||
if ($action == 'converttoreduc') {
|
if ($action == 'converttoreduc') {
|
||||||
$text = $langs->trans('ConfirmConvertToReduc');
|
if($object->type == 0) $type_fac = 'ExcessReceived';
|
||||||
|
elseif($object->type == 2) $type_fac = 'CreditNote';
|
||||||
|
elseif($object->type == 3) $type_fac = 'Deposit';
|
||||||
|
$text = $langs->trans('ConfirmConvertToReduc', strtolower($langs->transnoentities($type_fac)));
|
||||||
$formconfirm = $form->formconfirm($_SERVER['PHP_SELF'] . '?facid=' . $object->id, $langs->trans('ConvertToReduc'), $text, 'confirm_converttoreduc', '', "yes", 2);
|
$formconfirm = $form->formconfirm($_SERVER['PHP_SELF'] . '?facid=' . $object->id, $langs->trans('ConvertToReduc'), $text, 'confirm_converttoreduc', '', "yes", 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3933,6 +3964,9 @@ else if ($id > 0 || ! empty($ref))
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$discount = new DiscountAbsolute($db);
|
||||||
|
$result = $discount->fetch(0, $object->id);
|
||||||
|
|
||||||
// Reopen a standard paid invoice
|
// Reopen a standard paid invoice
|
||||||
if ((($object->type == Facture::TYPE_STANDARD || $object->type == Facture::TYPE_REPLACEMENT)
|
if ((($object->type == Facture::TYPE_STANDARD || $object->type == Facture::TYPE_REPLACEMENT)
|
||||||
|| ($object->type == Facture::TYPE_CREDIT_NOTE && empty($discount->id))
|
|| ($object->type == Facture::TYPE_CREDIT_NOTE && empty($discount->id))
|
||||||
@ -3998,7 +4032,7 @@ else if ($id > 0 || ! empty($ref))
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Reverse back money or convert to reduction
|
// Reverse back money or convert to reduction
|
||||||
if ($object->type == Facture::TYPE_CREDIT_NOTE || $object->type == Facture::TYPE_DEPOSIT) {
|
if ($object->type == Facture::TYPE_CREDIT_NOTE || $object->type == Facture::TYPE_DEPOSIT || $object->type == Facture::TYPE_STANDARD) {
|
||||||
// For credit note only
|
// For credit note only
|
||||||
if ($object->type == Facture::TYPE_CREDIT_NOTE && $object->statut == 1 && $object->paye == 0 && $user->rights->facture->paiement)
|
if ($object->type == Facture::TYPE_CREDIT_NOTE && $object->statut == 1 && $object->paye == 0 && $user->rights->facture->paiement)
|
||||||
{
|
{
|
||||||
@ -4012,6 +4046,11 @@ else if ($id > 0 || ! empty($ref))
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// For standard invoice with excess received
|
||||||
|
if ($object->type == Facture::TYPE_STANDARD && empty($object->paye) && ($object->total_ttc - $totalpaye - $totalcreditnotes - $totaldeposits) < 0 && $user->rights->facture->creer && empty($discount->id))
|
||||||
|
{
|
||||||
|
print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER["PHP_SELF"].'?facid='.$object->id.'&action=converttoreduc">'.$langs->trans('ConvertExcessReceivedToReduc').'</a></div>';
|
||||||
|
}
|
||||||
// For credit note
|
// For credit note
|
||||||
if ($object->type == Facture::TYPE_CREDIT_NOTE && $object->statut == 1 && $object->paye == 0 && $user->rights->facture->creer && $object->getSommePaiement() == 0) {
|
if ($object->type == Facture::TYPE_CREDIT_NOTE && $object->statut == 1 && $object->paye == 0 && $user->rights->facture->creer && $object->getSommePaiement() == 0) {
|
||||||
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER["PHP_SELF"] . '?facid=' . $object->id . '&action=converttoreduc">' . $langs->trans('ConvertToReduc') . '</a></div>';
|
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER["PHP_SELF"] . '?facid=' . $object->id . '&action=converttoreduc">' . $langs->trans('ConvertToReduc') . '</a></div>';
|
||||||
|
|||||||
@ -3699,6 +3699,12 @@ abstract class CommonObject
|
|||||||
$discount->fetch($line->fk_remise_except);
|
$discount->fetch($line->fk_remise_except);
|
||||||
$this->tpl['description'] = $langs->transnoentities("DiscountFromDeposit",$discount->getNomUrl(0));
|
$this->tpl['description'] = $langs->transnoentities("DiscountFromDeposit",$discount->getNomUrl(0));
|
||||||
}
|
}
|
||||||
|
elseif ($line->desc == '(EXCESS RECEIVED)')
|
||||||
|
{
|
||||||
|
$discount=new DiscountAbsolute($this->db);
|
||||||
|
$discount->fetch($line->fk_remise_except);
|
||||||
|
$this->tpl['description'] = $langs->transnoentities("DiscountFromExcessReceived",$discount->getNomUrl(0));
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$this->tpl['description'] = dol_trunc($line->desc,60);
|
$this->tpl['description'] = dol_trunc($line->desc,60);
|
||||||
|
|||||||
@ -1171,6 +1171,7 @@ class Form
|
|||||||
$desc=dol_trunc($obj->description,40);
|
$desc=dol_trunc($obj->description,40);
|
||||||
if (preg_match('/\(CREDIT_NOTE\)/', $desc)) $desc=preg_replace('/\(CREDIT_NOTE\)/', $langs->trans("CreditNote"), $desc);
|
if (preg_match('/\(CREDIT_NOTE\)/', $desc)) $desc=preg_replace('/\(CREDIT_NOTE\)/', $langs->trans("CreditNote"), $desc);
|
||||||
if (preg_match('/\(DEPOSIT\)/', $desc)) $desc=preg_replace('/\(DEPOSIT\)/', $langs->trans("Deposit"), $desc);
|
if (preg_match('/\(DEPOSIT\)/', $desc)) $desc=preg_replace('/\(DEPOSIT\)/', $langs->trans("Deposit"), $desc);
|
||||||
|
if (preg_match('/\(EXCESS RECEIVED\)/', $desc)) $desc=preg_replace('/\(EXCESS RECEIVED\)/', $langs->trans("ExcessReceived"), $desc);
|
||||||
|
|
||||||
$selectstring='';
|
$selectstring='';
|
||||||
if ($selected > 0 && $selected == $obj->rowid) $selectstring=' selected';
|
if ($selected > 0 && $selected == $obj->rowid) $selectstring=' selected';
|
||||||
@ -4005,7 +4006,7 @@ class Form
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (! $filter || $filter=="fk_facture_source IS NULL OR (fk_facture_source IS NOT NULL AND description LIKE '(DEPOSIT)%')") print $langs->trans("CompanyHasAbsoluteDiscount",price($amount,0,$langs,0,0,-1,$conf->currency));
|
if (! $filter || $filter=="fk_facture_source IS NULL OR (fk_facture_source IS NOT NULL AND (description LIKE '(DEPOSIT)%' OR description LIKE '(EXCESS RECEIVED)%'))") print $langs->trans("CompanyHasAbsoluteDiscount",price($amount,0,$langs,0,0,-1,$conf->currency));
|
||||||
else print $langs->trans("CompanyHasCreditNote",price($amount,0,$langs,0,0,-1,$conf->currency));
|
else print $langs->trans("CompanyHasCreditNote",price($amount,0,$langs,0,0,-1,$conf->currency));
|
||||||
}
|
}
|
||||||
if (empty($hidelist)) print ': ';
|
if (empty($hidelist)) print ': ';
|
||||||
|
|||||||
@ -83,6 +83,12 @@ function doc_getlinedesc($line,$outputlangs,$hideref=0,$hidedesc=0,$issupplierli
|
|||||||
// Add date of deposit
|
// Add date of deposit
|
||||||
if (! empty($conf->global->INVOICE_ADD_DEPOSIT_DATE)) $libelleproduitservice.=' ('.dol_print_date($discount->datec,'day','',$outputlangs).')';
|
if (! empty($conf->global->INVOICE_ADD_DEPOSIT_DATE)) $libelleproduitservice.=' ('.dol_print_date($discount->datec,'day','',$outputlangs).')';
|
||||||
}
|
}
|
||||||
|
elseif ($desc == '(EXCESS RECEIVED)' && $line->fk_remise_except)
|
||||||
|
{
|
||||||
|
$discount=new DiscountAbsolute($db);
|
||||||
|
$discount->fetch($line->fk_remise_except);
|
||||||
|
$libelleproduitservice=$outputlangs->transnoentitiesnoconv("DiscountFromExcessReceived",$discount->ref_facture_source);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if ($idprod)
|
if ($idprod)
|
||||||
|
|||||||
@ -1211,6 +1211,12 @@ function pdf_getlinedesc($object,$i,$outputlangs,$hideref=0,$hidedesc=0,$issuppl
|
|||||||
// Add date of deposit
|
// Add date of deposit
|
||||||
if (! empty($conf->global->INVOICE_ADD_DEPOSIT_DATE)) echo ' ('.dol_print_date($discount->datec,'day','',$outputlangs).')';
|
if (! empty($conf->global->INVOICE_ADD_DEPOSIT_DATE)) echo ' ('.dol_print_date($discount->datec,'day','',$outputlangs).')';
|
||||||
}
|
}
|
||||||
|
if ($desc == '(EXCESS RECEIVED)' && $object->lines[$i]->fk_remise_except)
|
||||||
|
{
|
||||||
|
$discount=new DiscountAbsolute($db);
|
||||||
|
$discount->fetch($object->lines[$i]->fk_remise_except);
|
||||||
|
$libelleproduitservice=$outputlangs->transnoentitiesnoconv("DiscountFromExcessReceived",$discount->ref_facture_source);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if ($idprod)
|
if ($idprod)
|
||||||
|
|||||||
@ -63,6 +63,7 @@ if (empty($usemargins)) $usemargins=0;
|
|||||||
$txt='';
|
$txt='';
|
||||||
print img_object($langs->trans("ShowReduc"),'reduc').' ';
|
print img_object($langs->trans("ShowReduc"),'reduc').' ';
|
||||||
if ($line->description == '(DEPOSIT)') $txt=$langs->trans("Deposit");
|
if ($line->description == '(DEPOSIT)') $txt=$langs->trans("Deposit");
|
||||||
|
elseif ($line->description == '(EXCESS RECEIVED)') $txt=$langs->trans("ExcessReceived");
|
||||||
//else $txt=$langs->trans("Discount");
|
//else $txt=$langs->trans("Discount");
|
||||||
print $txt;
|
print $txt;
|
||||||
?>
|
?>
|
||||||
@ -85,6 +86,12 @@ if (empty($usemargins)) $usemargins=0;
|
|||||||
if (! empty($conf->global->INVOICE_ADD_DEPOSIT_DATE))
|
if (! empty($conf->global->INVOICE_ADD_DEPOSIT_DATE))
|
||||||
echo ' ('.dol_print_date($discount->datec).')';
|
echo ' ('.dol_print_date($discount->datec).')';
|
||||||
}
|
}
|
||||||
|
elseif ($line->description == '(EXCESS RECEIVED)' && $objp->fk_remise_except > 0)
|
||||||
|
{
|
||||||
|
$discount=new DiscountAbsolute($this->db);
|
||||||
|
$discount->fetch($line->fk_remise_except);
|
||||||
|
echo ($txt?' - ':'').$langs->transnoentities("DiscountFromExcessReceived",$discount->getNomUrl(0));
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
echo ($txt?' - ':'').dol_htmlentitiesbr($line->description);
|
echo ($txt?' - ':'').dol_htmlentitiesbr($line->description);
|
||||||
|
|||||||
@ -63,7 +63,7 @@ paymentInInvoiceCurrency=in invoices currency
|
|||||||
PaidBack=Paid back
|
PaidBack=Paid back
|
||||||
DeletePayment=Delete payment
|
DeletePayment=Delete payment
|
||||||
ConfirmDeletePayment=Are you sure you want to delete this payment ?
|
ConfirmDeletePayment=Are you sure you want to delete this payment ?
|
||||||
ConfirmConvertToReduc=Do you want to convert this credit note or deposit into an absolute discount?<br>The amount will so be saved among all discounts and could be used as a discount for a current or a future invoice for this customer.
|
ConfirmConvertToReduc=Do you want to convert this %s into an absolute discount ?<br>The amount will so be saved among all discounts and could be used as a discount for a current or a future invoice for this customer.
|
||||||
SupplierPayments=Suppliers payments
|
SupplierPayments=Suppliers payments
|
||||||
ReceivedPayments=Received payments
|
ReceivedPayments=Received payments
|
||||||
ReceivedCustomersPayments=Payments received from customers
|
ReceivedCustomersPayments=Payments received from customers
|
||||||
@ -105,6 +105,7 @@ SendRemindByMail=Send reminder by EMail
|
|||||||
DoPayment=Do payment
|
DoPayment=Do payment
|
||||||
DoPaymentBack=Do payment back
|
DoPaymentBack=Do payment back
|
||||||
ConvertToReduc=Convert into future discount
|
ConvertToReduc=Convert into future discount
|
||||||
|
ConvertExcessReceivedToReduc=Convert excess received into future discount
|
||||||
EnterPaymentReceivedFromCustomer=Enter payment received from customer
|
EnterPaymentReceivedFromCustomer=Enter payment received from customer
|
||||||
EnterPaymentDueToCustomer=Make payment due to customer
|
EnterPaymentDueToCustomer=Make payment due to customer
|
||||||
DisabledBecauseRemainderToPayIsZero=Disabled because remaining unpaid is zero
|
DisabledBecauseRemainderToPayIsZero=Disabled because remaining unpaid is zero
|
||||||
@ -272,6 +273,7 @@ Deposit=Deposit
|
|||||||
Deposits=Deposits
|
Deposits=Deposits
|
||||||
DiscountFromCreditNote=Discount from credit note %s
|
DiscountFromCreditNote=Discount from credit note %s
|
||||||
DiscountFromDeposit=Payments from deposit invoice %s
|
DiscountFromDeposit=Payments from deposit invoice %s
|
||||||
|
DiscountFromExcessReceived=Payments from excess received of invoice %s
|
||||||
AbsoluteDiscountUse=This kind of credit can be used on invoice before its validation
|
AbsoluteDiscountUse=This kind of credit can be used on invoice before its validation
|
||||||
CreditNoteDepositUse=Invoice must be validated to use this kind of credits
|
CreditNoteDepositUse=Invoice must be validated to use this kind of credits
|
||||||
NewGlobalDiscount=New absolute discount
|
NewGlobalDiscount=New absolute discount
|
||||||
@ -422,7 +424,7 @@ ChequeDeposits=Checks deposits
|
|||||||
Cheques=Checks
|
Cheques=Checks
|
||||||
DepositId=Id deposit
|
DepositId=Id deposit
|
||||||
NbCheque=Number of checks
|
NbCheque=Number of checks
|
||||||
CreditNoteConvertedIntoDiscount=This credit note or deposit invoice has been converted into %s
|
CreditNoteConvertedIntoDiscount=This %s has been converted into %s
|
||||||
UsBillingContactAsIncoiveRecipientIfExist=Use customer billing contact address instead of third party address as recipient for invoices
|
UsBillingContactAsIncoiveRecipientIfExist=Use customer billing contact address instead of third party address as recipient for invoices
|
||||||
ShowUnpaidAll=Show all unpaid invoices
|
ShowUnpaidAll=Show all unpaid invoices
|
||||||
ShowUnpaidLateOnly=Show late unpaid invoices only
|
ShowUnpaidLateOnly=Show late unpaid invoices only
|
||||||
|
|||||||
@ -479,6 +479,7 @@ if ($sql_select)
|
|||||||
$txt='';
|
$txt='';
|
||||||
print img_object($langs->trans("ShowReduc"),'reduc').' ';
|
print img_object($langs->trans("ShowReduc"),'reduc').' ';
|
||||||
if ($objp->description == '(DEPOSIT)') $txt=$langs->trans("Deposit");
|
if ($objp->description == '(DEPOSIT)') $txt=$langs->trans("Deposit");
|
||||||
|
elseif ($objp->description == '(EXCESS RECEIVED)') $txt=$langs->trans("ExcessReceived");
|
||||||
//else $txt=$langs->trans("Discount");
|
//else $txt=$langs->trans("Discount");
|
||||||
print $txt;
|
print $txt;
|
||||||
?>
|
?>
|
||||||
@ -492,6 +493,12 @@ if ($sql_select)
|
|||||||
$discount->fetch($objp->fk_remise_except);
|
$discount->fetch($objp->fk_remise_except);
|
||||||
echo ($txt?' - ':'').$langs->transnoentities("DiscountFromCreditNote",$discount->getNomUrl(0));
|
echo ($txt?' - ':'').$langs->transnoentities("DiscountFromCreditNote",$discount->getNomUrl(0));
|
||||||
}
|
}
|
||||||
|
if ($objp->description == '(EXCESS RECEIVED)' && $objp->fk_remise_except > 0)
|
||||||
|
{
|
||||||
|
$discount=new DiscountAbsolute($db);
|
||||||
|
$discount->fetch($objp->fk_remise_except);
|
||||||
|
echo ($txt?' - ':'').$langs->transnoentities("DiscountFromExcessReceived",$discount->getNomUrl(0));
|
||||||
|
}
|
||||||
elseif ($objp->description == '(DEPOSIT)' && $objp->fk_remise_except > 0)
|
elseif ($objp->description == '(DEPOSIT)' && $objp->fk_remise_except > 0)
|
||||||
{
|
{
|
||||||
$discount=new DiscountAbsolute($db);
|
$discount=new DiscountAbsolute($db);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user