25 lines
689 B
C#
25 lines
689 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using BeWo.Data.Entities;
|
|
using BS.Shared;
|
|
using BS.Shared.Core;
|
|
using BS.Shared.DataContracts;
|
|
using BS.Shared.Services;
|
|
|
|
namespace BeWo.Service.Invoicing
|
|
{
|
|
internal class Club74SettlementInvoiceCreation : LWLSettlementInvoiceCreation
|
|
{
|
|
public override bool SchneideBeiErreichenDesBudgetsAb { get { return true; } }
|
|
|
|
public override void CreateInvoiceDetailsTheOldWay(Settlement2DC si, CostBearer2SupportConcept c2s)
|
|
{
|
|
base.CreateInvoiceDetailsTheOldWay(si, c2s);
|
|
|
|
si.RecordedBillableFLSNetto = si.RecordedMinutesTotal / 60;
|
|
}
|
|
}
|
|
}
|