Add bill tax code article for non profit organization VAT
This commit is contained in:
parent
fcc6431896
commit
7be9a98ef0
@ -1025,7 +1025,11 @@ class pdf_crabe extends ModelePDFFactures
|
||||
if ($this->emetteur->country_code == 'FR' && empty($mysoc->tva_assuj)) {
|
||||
$pdf->SetFont('', 'B', $default_font_size - 2);
|
||||
$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;
|
||||
}
|
||||
|
||||
@ -464,6 +464,7 @@ PaymentByChequeOrderedToShort=Règlement TTC par chèque à l'ordre de
|
||||
SendTo=envoyé à
|
||||
PaymentByTransferOnThisBankAccount=Règlement par virement sur le compte bancaire suivant
|
||||
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
|
||||
LawApplicationPart2=les marchandises demeurent la propriété du
|
||||
LawApplicationPart3=vendeur jusqu'à complet encaissement de
|
||||
|
||||
Loading…
Reference in New Issue
Block a user