add RollCallInPerson and CustomizeCheckout handling in InstitutionContract workflows and update repository

This commit is contained in:
2025-10-09 10:51:23 +03:30
parent 4ce82679ff
commit b78a06e743

View File

@@ -1952,7 +1952,9 @@ public class InstitutionContractRepository : RepositoryBase<long, InstitutionCon
Insurance = service.Insurance,
InsuranceInPerson = service.InsuranceInPerson,
RollCall = service.RollCall,
WorkshopName = x.WorkshopName
WorkshopName = x.WorkshopName,
RollCallInPerson = service.RollCallInPerson
};
var institutionPlanForWorkshop = _planPercentageRepository.GetInstitutionPlanForWorkshop(command);
price = institutionPlanForWorkshop.OnlineAndInPersonSumAmountDouble;
@@ -1963,7 +1965,7 @@ public class InstitutionContractRepository : RepositoryBase<long, InstitutionCon
Id = x.id,
ContractAndCheckout = service.Contract,
ContractAndCheckoutInPerson = service.ContractInPerson,
CustomizeCheckout = service.ContractInPerson,
CustomizeCheckout = service.CustomizeCheckout,
CountPerson = x.PersonnelCount,
Insurance = service.Insurance,
InsuranceInPerson = service.InsuranceInPerson,