|
@@ -105,7 +105,16 @@ JpcBillTabSrv.prototype.createNew = function() {
|
|
|
if (!(tab_field[JV.PROP_HIDDEN])) {
|
|
|
const cellItem = JpcCommonOutputHelper.createCommonOutput(tab_field, '', controls);
|
|
|
cellItem[JV.PROP_AREA] = JpcAreaHelper.outputArea(tab_field[JV.PROP_AREA], band, unitFactor, 1, 0, 1, 0, 1, 0, false, false);
|
|
|
- rst.push(cellItem);
|
|
|
+ if (JE.isInterActionParam(tab_field[JV.PROP_PARAM_ID], $CURRENT_RPT)) {
|
|
|
+ const iParam = JE.P(tab_field[JV.PROP_PARAM_ID], $CURRENT_RPT);
|
|
|
+ cellItem[JV.PROP_BAND_NAME] = band.Name;
|
|
|
+ cellItem[JV.PROP_DATA_TYPE] = iParam[JV.PROP_DATA_TYPE];
|
|
|
+ cellItem[JV.PROP_LABEL] = iParam[JV.PROP_NAME];
|
|
|
+ cellItem[JV.PROP_PREFIX] = tab_field[JV.PROP_PREFIX];
|
|
|
+ this.interactRst.push(cellItem);
|
|
|
+ } else {
|
|
|
+ rst.push(cellItem);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
if (tab[JV.PROP_TEXT]) {
|