填报智能提交的一个细节
本帖最后由 wangnaiwen 于 2017-1-7 10:11 编辑
智能提交的的时候,如果数据存在,则自动更新,没有提示。为了解决这一问题,可以在提报前写一个JS。
首先,定义一参数 a ,sql("xxx","select count(*) from xxxx where xxx=‘"+B2+"’ and yyyy='"+C2+"'
",1,1),B2,C2为填报的内容所在单元格的位置.
然后 if (a>0)
{
if(confirm("是否覆盖原来的数据"))
{
setTimeout(function() {
_g('${sessionID}').writeReport();
}, 2000);
location.reload();
return true;
}
else
{
location.reload();
return false;
}
}
大功告成
55598