ChristopherusHausFamilienhilfe/Export/SimbaExporter - umbenennung Rechnungen

This commit is contained in:
2024-03-22 10:39:01 +01:00
parent 2e980d1049
commit c77be50b24
2 changed files with 3 additions and 3 deletions

View File

@@ -71,7 +71,7 @@ namespace ChristopherusHausFamilienhilfe.Export
sb.Append(";\"EUR\";;;;;;;;;;");
sb.Append(String.Format("{0}", row[3]));
sb.Append(";;;;");
sb.Append(String.Format("\"Rechnung ISB{0}.pdf\"", row[3]));
sb.Append(String.Format("\"Rechnung SPFH{0}.pdf\"", row[3]));
}
return sb.ToString();
}
@@ -125,7 +125,7 @@ namespace ChristopherusHausFamilienhilfe.Export
select
'BCH',
sip.Claim,
'8106' as 'Gegenkonto',
'8017' as 'Gegenkonto',
ib.invoicenumber,
ib.InvoiceDate,
org.DebitorNumber,

View File

@@ -79,7 +79,7 @@ namespace ChristopherusHausFamilienhilfe
// Die Rechnungsnummer muss für den FiBu-Export gleich dem PDF-Namen sein!
private void ChangeName(object sender, EventArgs e)
{
PrintingSystem.Document.Name = String.Format("Rechnung ISB{0}", lblRechnungsnummer.Text);
PrintingSystem.Document.Name = String.Format("Rechnung SPFH{0}", lblRechnungsnummer.Text);
}
}
}