|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # metadata
-
- import webnotes
-
- #=================================================================================
-
- def get_dt_values(doctype, fields, as_dict = 0):
- return webnotes.conn.sql('SELECT %s FROM tabDocType WHERE name="%s"' % (fields, doctype), as_dict = as_dict)
-
- def set_dt_value(doctype, field, value):
- return webnotes.conn.set_value('DocType', doctype, field, value)
-
- def is_single(doctype):
- try:
- return get_dt_values(doctype, 'issingle')[0][0]
- except IndexError, e:
- raise Exception, 'Cannot determine whether %s is single' % doctype
-
- #=================================================================================
-
- def get_parent_dt(dt):
- parent_dt = webnotes.conn.sql('select parent from tabDocField where fieldtype="Table" and options="%s" and (parent not like "old_parent:%%") limit 1' % dt)
- return parent_dt and parent_dt[0][0] or ''
-
- #=================================================================================
-
- def set_fieldname(field_id, fieldname):
- webnotes.conn.set_value('DocField', field_id, 'fieldname', fieldname)
-
- #=================================================================================
-
- def get_link_fields(doctype):
- """
- Returns list of link fields for a doctype in tuple (fieldname, options, label)
- """
- return webnotes.conn.sql("""
- SELECT fieldname, options, label
- FROM tabDocField
- WHERE parent='%s'
- and (fieldtype='Link' or (fieldtype='Select' and `options` like 'link:%%'))
- and fieldname!='owner'""" % (doctype))
-
- #=================================================================================
-
- def get_table_fields(doctype):
- return webnotes.conn.sql("select options, fieldname from tabDocField where parent='%s' and fieldtype='Table'" % doctype)
-
- #=================================================================================
-
- def get_search_criteria(dt):
- import webnotes.model.doc
- # load search criteria for reports (all)
- dl = []
- sc_list = webnotes.conn.sql("select name from `tabSearch Criteria` where doc_type = '%s' or parent_doc_type = '%s' and (disabled!=1 OR disabled IS NULL)" % (dt, dt))
- for sc in sc_list:
- if sc[0]:
- dl += webnotes.model.doc.get('Search Criteria', sc[0])
- return dl
-
- #=================================================================================
-
- def get_print_format_html(name):
- html = webnotes.conn.sql('select html from `tabPrint Format` where name="%s"' % name)
- return html and html[0][0] or ''
-
|