Merge Conflict SKM Aachen gelöst und Änderungen InvoiceNumberGenerator
This commit is contained in:
@@ -96,7 +96,7 @@ namespace SKMAachen.Invoicing
|
||||
return null;
|
||||
}
|
||||
|
||||
public override void IncreaseInvoiceNumber(int count, List<ServiceInvoice> newInvoices)
|
||||
public override void IncreaseInvoiceNumberForServiceInvoices(int count, List<ServiceInvoice> newInvoices)
|
||||
{
|
||||
if (count != 0)
|
||||
{
|
||||
|
||||
@@ -61,10 +61,7 @@
|
||||
<Compile Include="CustomMitarbeiterstundenkontoBerechnungMonate.cs" />
|
||||
<Compile Include="Invoicing\CustomBeWo67InvoiceCreation.cs" />
|
||||
<Compile Include="Invoicing\CustomInvoiceFactory.cs" />
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
<Compile Include="Invoicing\CustomInvoiceNumberGenerator.cs" />
|
||||
>>>>>>> master
|
||||
<Compile Include="Invoicing\SettlementInvoiceCreation.cs" />
|
||||
<Compile Include="Mitarbeiterarbeitszeitkonto.cs">
|
||||
<SubType>Component</SubType>
|
||||
|
||||
@@ -49,17 +49,17 @@ namespace BeWo.Service.Plugins
|
||||
{
|
||||
List<ServiceInvoice> newInvoices = null;
|
||||
|
||||
IncreaseInvoiceNumber(count, newInvoices);
|
||||
IncreaseInvoiceNumberForServiceInvoices(count, newInvoices);
|
||||
}
|
||||
|
||||
internal void IncreaseInvoiceNumber(int count, List<InvoiceBase> invoiceBaseList)
|
||||
{
|
||||
List<ServiceInvoice> newInvoices = null;
|
||||
|
||||
IncreaseInvoiceNumber(count, newInvoices);
|
||||
IncreaseInvoiceNumberForServiceInvoices(count, newInvoices);
|
||||
}
|
||||
|
||||
public virtual void IncreaseInvoiceNumber(int count, List<ServiceInvoice> newInvoices)
|
||||
public virtual void IncreaseInvoiceNumberForServiceInvoices(int count, List<ServiceInvoice> newInvoices)
|
||||
{
|
||||
if (count != 0)
|
||||
{
|
||||
|
||||
@@ -452,7 +452,7 @@ namespace BeWo.Service.ServiceImplementations
|
||||
|
||||
DAOFactory.GenericDAO.Insert(newInvoices);
|
||||
|
||||
inc.IncreaseInvoiceNumber(count, newInvoices);
|
||||
inc.IncreaseInvoiceNumberForServiceInvoices(count, newInvoices);
|
||||
}
|
||||
return newInvoices.Select(i => i.Oid.Value).ToList();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user