修改进度模块

This commit is contained in:
2023-08-30 17:32:17 +08:00
parent d6ea8320fa
commit 5f83d39385
+3 -3
View File
@@ -139,11 +139,11 @@
function onGridAfterEdit(event, value, params) {
var me = this, columnId = params.columnId, rowId = params.rowId;
var str = F(hdIdClientID).ooIl1;
if (str == undefined) {
var str = F(hdIdClientID).getValue();
if (str == undefined || str == '') {
str = rowId;
}
else {
else if(str.indexOf(rowId) == -1){
str = str + "," + rowId;
}
F(hdIdClientID).setValue(str);