метод получает информацию о настройках расчета "по-среднему"
var GetNastr();
отсутствуют
//Дата, на которую считаем отпуск var DateBeg=CreateObject("KDate"); DateBeg.SetDate(to_string(Date)); //класс для расчета среднего var Sredn = CreateObject("KCalcSredn"); Sredn.InitOtp(DateBeg,0); // Инициализация способа расчета "по-среднему" var Nastr = Sredn.GetNastr(); string OTPUSK_CNF_TABLE = "отпуск"; int flag_rvmes=GetCommonCnfInt("FLAG_RVMES",OTPUSK_CNF_TABLE); int tip_koef =GetCommonCnfInt("TIP_KOEF",OTPUSK_CNF_TABLE); Nastr.SetNastr(FLAG_RVMES,flag_rvmes); Nastr.SetNastr(TIP_KOEF,tip_koef); Sredn.Calculate(0); // расчет среднего return Sredn.SumSredn();