Merge pull request #17164 from draceo/art261-7
Add bill tax code article for non profit organization VAT (fixes #17163)
This commit is contained in:
commit
244e83e18d
@ -1025,7 +1025,11 @@ class pdf_crabe extends ModelePDFFactures
|
|||||||
if ($this->emetteur->country_code == 'FR' && empty($mysoc->tva_assuj)) {
|
if ($this->emetteur->country_code == 'FR' && empty($mysoc->tva_assuj)) {
|
||||||
$pdf->SetFont('', 'B', $default_font_size - 2);
|
$pdf->SetFont('', 'B', $default_font_size - 2);
|
||||||
$pdf->SetXY($this->marge_gauche, $posy);
|
$pdf->SetXY($this->marge_gauche, $posy);
|
||||||
$pdf->MultiCell(100, 3, $outputlangs->transnoentities("VATIsNotUsedForInvoice"), 0, 'L', 0);
|
if ($mysoc->forme_juridique_code == 92) {
|
||||||
|
$pdf->MultiCell(100, 3, $outputlangs->transnoentities("VATIsNotUsedForInvoiceAsso"), 0, 'L', 0);
|
||||||
|
} else {
|
||||||
|
$pdf->MultiCell(100, 3, $outputlangs->transnoentities("VATIsNotUsedForInvoice"), 0, 'L', 0);
|
||||||
|
}
|
||||||
|
|
||||||
$posy = $pdf->GetY() + 4;
|
$posy = $pdf->GetY() + 4;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -464,6 +464,7 @@ PaymentByChequeOrderedToShort=Règlement TTC par chèque à l'ordre de
|
|||||||
SendTo=envoyé à
|
SendTo=envoyé à
|
||||||
PaymentByTransferOnThisBankAccount=Règlement par virement sur le compte bancaire suivant
|
PaymentByTransferOnThisBankAccount=Règlement par virement sur le compte bancaire suivant
|
||||||
VATIsNotUsedForInvoice=* TVA non applicable art-293B du CGI
|
VATIsNotUsedForInvoice=* TVA non applicable art-293B du CGI
|
||||||
|
VATIsNotUsedForInvoiceAsso=* TVA non applicable art-261-7 du CGI
|
||||||
LawApplicationPart1=Par application de la loi 80.335 du 12/05/80
|
LawApplicationPart1=Par application de la loi 80.335 du 12/05/80
|
||||||
LawApplicationPart2=les marchandises demeurent la propriété du
|
LawApplicationPart2=les marchandises demeurent la propriété du
|
||||||
LawApplicationPart3=vendeur jusqu'à complet encaissement de
|
LawApplicationPart3=vendeur jusqu'à complet encaissement de
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user