2012-07-19 08:10:31 +00:00
|
|
|
from __future__ import unicode_literals
|
2012-05-11 05:41:46 +00:00
|
|
|
def execute():
|
|
|
|
import webnotes
|
|
|
|
sr = webnotes.conn.sql("select max(name) from `tabPage Role`")
|
|
|
|
if sr and sr[0][0].startswith('PR'):
|
2012-05-11 06:17:18 +00:00
|
|
|
webnotes.conn.sql("update tabSeries set current = %s where name = 'PR'", int(sr[0][0][2:]))
|