Answer the question
In order to leave comments, you need to log in
How to access document form fields in 1C:Enterprise 8.2?
Hello, I have a task: to calculate the student's annual grade in the document based on the results of his work in each quarter. It is clear that you just need to calculate the arithmetic mean, which would not seem difficult at all, but those very BUT appeared.
To do this, you need to refer to the "Annual" field and assign it an expression like ("I quarter" + "II quarter" + "III quarter" + "IV quarter") / 4. BUT how to access these fields?
In an attempt to find an answer, I went through various forums and found a code that could more or less suit me, but I had to change it, since it refers to slightly different data.
Here is the code I wrote:
&НаКлиенте
Процедура СписокНоменклатурыIчетвертьПриИзменении(Элемент)
Стр=Элементы.СписокНоменклатуры.ТекущиеДанные;
Стр.Годовая = (Стр.Iчетверть+Стр.IIчетверть+Стр.IIIчетверть+Стр.IVчетверть)/4;
КонецПроцедуры
&НаКлиенте
Процедура СписокНоменклатурыIIчетвертьПриИзменении(Элемент)
Стр=Элементы.СписокНоменклатуры.ТекущиеДанные;
Стр.Годовая = (Стр.Iчетверть+Стр.IIчетверть+Стр.IIIчетверть+Стр.IVчетверть)/4;
КонецПроцедуры
&НаКлиенте
Процедура СписокНоменклатурыIIIчетвертьПриИзменении(Элемент)
Стр=Элементы.СписокНоменклатуры.ТекущиеДанные;
Стр.Годовая = (Стр.Iчетверть+Стр.IIчетверть+Стр.IIIчетверть+Стр.IVчетверть)/4;
КонецПроцедуры
&НаКлиенте
Процедура СписокНоменклатурыIVчетвертьПриИзменении(Элемент)
Стр=Элементы.СписокНоменклатуры.ТекущиеДанные;
Стр.Годовая = (Стр.Iчетверть+Стр.IIчетверть+Стр.IIIчетверть+Стр.IVчетверть)/4;
КонецПроцедуры
Answer the question
In order to leave comments, you need to log in
First, what is a nomenclature list? Delete all nafig.
Next, in the form module, write only one procedure, the call of which write to all your four fields in the first of the handlers - OnChange:
&НаКлиенте
Процедура ОценкаЧетвертиПриИзменении(Элемент)
Объект.Годовая = (Объект.Iчетверть+Объект.IIчетверть+Объект.IIIчетверть+Объект.IVчетверть)/4;
КонецПроцедуры
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question