[#46] CreditNote: Show number of added business shares
All checks were successful
Test / Run tests (push) Successful in 1m57s
All checks were successful
Test / Run tests (push) Successful in 1m57s
This commit is contained in:
@ -18,7 +18,8 @@ namespace Elwig.Documents {
|
|||||||
public string MemberModifier;
|
public string MemberModifier;
|
||||||
public IEnumerable<(string Name, int Kg, decimal Amount)>? MemberUnderDeliveries;
|
public IEnumerable<(string Name, int Kg, decimal Amount)>? MemberUnderDeliveries;
|
||||||
public decimal MemberTotalUnderDelivery;
|
public decimal MemberTotalUnderDelivery;
|
||||||
public decimal MemberAutoBusinessShares;
|
public int MemberAutoBusinessShares;
|
||||||
|
public decimal MemberAutoBusinessSharesAmount;
|
||||||
|
|
||||||
public CreditNote(
|
public CreditNote(
|
||||||
AppDbContext ctx,
|
AppDbContext ctx,
|
||||||
@ -66,7 +67,8 @@ namespace Elwig.Documents {
|
|||||||
MemberAutoBusinessShares = ctx.MemberHistory
|
MemberAutoBusinessShares = ctx.MemberHistory
|
||||||
.Where(h => h.MgNr == p.Member.MgNr && h.Type == "auto")
|
.Where(h => h.MgNr == p.Member.MgNr && h.Type == "auto")
|
||||||
.Where(h => h.DateString.CompareTo(fromDate) >= 0 && h.DateString.CompareTo(toDate) <= 0)
|
.Where(h => h.DateString.CompareTo(fromDate) >= 0 && h.DateString.CompareTo(toDate) <= 0)
|
||||||
.Sum(h => h.BusinessShares) * (-season.BusinessShareValue ?? 0);
|
.Sum(h => h.BusinessShares);
|
||||||
|
MemberAutoBusinessSharesAmount = MemberAutoBusinessShares * (-season.BusinessShareValue ?? 0);
|
||||||
}
|
}
|
||||||
if (considerContractPenalties) {
|
if (considerContractPenalties) {
|
||||||
var varieties = ctx.WineVarieties.ToDictionary(v => v.SortId, v => v);
|
var varieties = ctx.WineVarieties.ToDictionary(v => v.SortId, v => v);
|
||||||
|
@ -153,9 +153,9 @@
|
|||||||
@Raw(FormatRow("Unterlieferung (GA)", Model.MemberTotalUnderDelivery, add: true));
|
@Raw(FormatRow("Unterlieferung (GA)", Model.MemberTotalUnderDelivery, add: true));
|
||||||
penalty += Model.MemberTotalUnderDelivery;
|
penalty += Model.MemberTotalUnderDelivery;
|
||||||
}
|
}
|
||||||
@if (Model.MemberAutoBusinessShares != 0) {
|
@if (Model.MemberAutoBusinessSharesAmount != 0) {
|
||||||
@Raw(FormatRow("Autom. Nachz. von GA", Model.MemberAutoBusinessShares, add: true));
|
@Raw(FormatRow($"Autom. Nachz. von GA ({Model.MemberAutoBusinessShares})", Model.MemberAutoBusinessSharesAmount, add: true));
|
||||||
penalty += Model.MemberAutoBusinessShares;
|
penalty += Model.MemberAutoBusinessSharesAmount;
|
||||||
}
|
}
|
||||||
|
|
||||||
@if (Model.Credit == null) {
|
@if (Model.Credit == null) {
|
||||||
|
Reference in New Issue
Block a user