Skip to content

Commit

Permalink
compat FEC avec le format wawesoft
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Nov 25, 2024
1 parent e731910 commit ca9c0bc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions htdocs/accountancy/class/accountancyexport.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1363,9 +1363,9 @@ public function exportFEC($objectLines, $exportFile = null, $archiveFileList = a
$tab[] = "ValidDate";
$tab[] = "Montantdevise";
$tab[] = "Idevise";
$tab[] = "DateLimitReglmt";
$tab[] = "NumFacture";
$tab[] = "FichierFacture";
//$tab[] = "DateLimitReglmt";
//$tab[] = "NumFacture";
//$tab[] = "FichierFacture";

$output = implode($separator, $tab).$end_line;
if ($exportFile) {
Expand Down Expand Up @@ -1431,7 +1431,7 @@ public function exportFEC($objectLines, $exportFile = null, $archiveFileList = a
$tab[] = dol_string_unaccent($line->subledger_label);

// FEC:PieceRef
$tab[] = $line->doc_ref;
$tab[] = substr($line->doc_ref, 0, 20);

// FEC:PieceDate
$tab[] = dol_string_unaccent($date_creation);
Expand Down Expand Up @@ -1463,7 +1463,7 @@ public function exportFEC($objectLines, $exportFile = null, $archiveFileList = a
// FEC:Idevise
$tab[] = $line->multicurrency_code;

// FEC_suppl:DateLimitReglmt
/* // FEC_suppl:DateLimitReglmt
$tab[] = $date_limit_payment;
// FEC_suppl:NumFacture
Expand Down Expand Up @@ -1524,7 +1524,7 @@ public function exportFEC($objectLines, $exportFile = null, $archiveFileList = a
}
$tab[] = $attachmentFileName;

*/
$output = implode($separator, $tab).$end_line;

if ($exportFile) {
Expand Down

0 comments on commit ca9c0bc

Please sign in to comment.