Browse Source

all fields visible if any other custom purpose in stock entry

develop
Nabin Hait 13 years ago
parent
commit
b09b3bc253
  1. 6
      erpnext/stock/doctype/stock_entry/stock_entry.js
  2. 11
      erpnext/stock/doctype/stock_entry/stock_entry.py
  3. 128
      erpnext/stock/doctype/stock_entry/stock_entry.txt

6
erpnext/stock/doctype/stock_entry/stock_entry.js

@ -23,7 +23,10 @@ cur_frm.cscript.onload = function(doc, cdt, cdn) {
var cfn_set_fields = function(doc, cdt, cdn) { var cfn_set_fields = function(doc, cdt, cdn) {
lst = ['supplier','supplier_name','supplier_address','customer','customer_name','customer_address']; lst = ['supplier','supplier_name','supplier_address','customer','customer_name','customer_address'];
hide_field(lst); if (in_list(['Material Issue', 'Material Transfer', 'Material Receipt', 'Production Order', 'Subcontracting', 'Other'], doc.purpose)) {
hide_field(lst);
} else unhide_field(lst);
if (doc.purpose == 'Production Order' || doc.purpose == 'Other'){ if (doc.purpose == 'Production Order' || doc.purpose == 'Other'){
unhide_field('Get Items'); unhide_field('Get Items');
@ -52,6 +55,7 @@ var cfn_set_fields = function(doc, cdt, cdn) {
if(doc.purpose == 'Purchase Return'){ if(doc.purpose == 'Purchase Return'){
doc.customer=doc.customer_name = doc.customer_address=doc.delivery_note_no=doc.sales_invoice_no=''; doc.customer=doc.customer_name = doc.customer_address=doc.delivery_note_no=doc.sales_invoice_no='';
unhide_field(['supplier','supplier_name','supplier_address','purchase_receipt_no']); unhide_field(['supplier','supplier_name','supplier_address','purchase_receipt_no']);
} }
else if(doc.purpose == 'Sales Return'){ else if(doc.purpose == 'Sales Return'){
doc.supplier=doc.supplier_name = doc.supplier_address=doc.purchase_receipt_no=''; doc.supplier=doc.supplier_name = doc.supplier_address=doc.purchase_receipt_no='';

11
erpnext/stock/doctype/stock_entry/stock_entry.py

@ -31,8 +31,9 @@ in_transaction = webnotes.conn.in_transaction
convert_to_lists = webnotes.conn.convert_to_lists convert_to_lists = webnotes.conn.convert_to_lists
# ----------------------------------------------------------------------------------------- # -----------------------------------------------------------------------------------------
from utilities.transaction_base import TransactionBase
class DocType: class DocType(TransactionBase):
def __init__(self, doc, doclist=[]): def __init__(self, doc, doclist=[]):
self.doc = doc self.doc = doc
self.doclist = doclist self.doclist = doclist
@ -510,10 +511,11 @@ class DocType:
def get_cust_addr(self): def get_cust_addr(self):
res = sql("select customer_name,address from `tabCustomer` where name = '%s'"%self.doc.customer) res = sql("select customer_name from `tabCustomer` where name = '%s'"%self.doc.customer)
addr = self.get_address_text(customer = self.doc.customer)
ret = { ret = {
'customer_name' : res and res[0][0] or '', 'customer_name' : res and res[0][0] or '',
'customer_address' : res and res[0][1] or ''} 'customer_address' : addr and addr[0] or ''}
return ret return ret
@ -530,7 +532,8 @@ class DocType:
def get_supp_addr(self): def get_supp_addr(self):
res = sql("select supplier_name,address from `tabSupplier` where name = '%s'"%self.doc.supplier) res = sql("select supplier_name,address from `tabSupplier` where name = '%s'"%self.doc.supplier)
addr = self.get_address_text(supplier = self.doc.supplier)
ret = { ret = {
'supplier_name' : res and res[0][0] or '', 'supplier_name' : res and res[0][0] or '',
'supplier_address' : res and res[0][1] or ''} 'supplier_address' : addr and addr[0] or ''}
return ret return ret

128
erpnext/stock/doctype/stock_entry/stock_entry.txt

@ -3,16 +3,16 @@
# These values are common in all dictionaries # These values are common in all dictionaries
{ {
'creation': '2010-08-08 17:09:25', 'creation': '2009-05-12 16:46:45',
'docstatus': 0, 'docstatus': 0,
'modified': '2012-03-21 11:00:48', 'modified': '2012-04-13 14:12:02',
'modified_by': u'Administrator', 'modified_by': u'Administrator',
'owner': u'Administrator' 'owner': u'Administrator'
}, },
# These values are common for all DocType # These values are common for all DocType
{ {
'_last_update': u'1332233897', '_last_update': u'1334303911',
'allow_attach': 0, 'allow_attach': 0,
'allow_copy': 0, 'allow_copy': 0,
'allow_email': 0, 'allow_email': 0,
@ -41,7 +41,7 @@
'subject': u'%(remarks)s', 'subject': u'%(remarks)s',
'tag_fields': u'purpose', 'tag_fields': u'purpose',
'use_template': 0, 'use_template': 0,
'version': 259 'version': 263
}, },
# These values are common for all DocField # These values are common for all DocField
@ -71,26 +71,14 @@
# DocPerm # DocPerm
{ {
'amend': 0, 'amend': 1,
'cancel': 0, 'cancel': 1,
'create': 0, 'create': 1,
'doctype': u'DocPerm',
'permlevel': 1,
'role': u'Material Manager',
'submit': 0,
'write': 0
},
# DocPerm
{
'amend': 0,
'cancel': 0,
'create': 0,
'doctype': u'DocPerm', 'doctype': u'DocPerm',
'permlevel': 1, 'permlevel': 0,
'role': u'Material User', 'role': u'Material User',
'submit': 0, 'submit': 1,
'write': 0 'write': 1
}, },
# DocPerm # DocPerm
@ -100,32 +88,20 @@
'create': 1, 'create': 1,
'doctype': u'DocPerm', 'doctype': u'DocPerm',
'permlevel': 0, 'permlevel': 0,
'role': u'Production User', 'role': u'Material Manager',
'submit': 1, 'submit': 1,
'write': 1 'write': 1
}, },
# DocPerm # DocPerm
{ {
'amend': 0, 'amend': 1,
'cancel': 0, 'cancel': 1,
'create': 0, 'create': 1,
'doctype': u'DocPerm',
'permlevel': 1,
'role': u'Production User',
'submit': 0,
'write': 0
},
# DocPerm
{
'amend': 0,
'cancel': 0,
'create': 0,
'doctype': u'DocPerm', 'doctype': u'DocPerm',
'permlevel': 2, 'permlevel': 0,
'role': u'Production User', 'role': u'Production User',
'submit': 0, 'submit': 1,
'write': 1 'write': 1
}, },
@ -148,20 +124,25 @@
'create': 0, 'create': 0,
'doctype': u'DocPerm', 'doctype': u'DocPerm',
'permlevel': 1, 'permlevel': 1,
'role': u'Production Manager', 'role': u'All',
'submit': 0, 'submit': 0,
'write': 0 'write': 0
}, },
# DocPerm # DocPerm
{ {
'amend': 0,
'cancel': 0,
'create': 0, 'create': 0,
'doctype': u'DocPerm',
'permlevel': 2,
'role': u'Production User',
'write': 1
},
# DocPerm
{
'doctype': u'DocPerm', 'doctype': u'DocPerm',
'permlevel': 2, 'permlevel': 2,
'role': u'Production Manager', 'role': u'Production Manager',
'submit': 0,
'write': 1 'write': 1
}, },
@ -191,12 +172,13 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'naming_series', 'fieldname': u'naming_series',
'fieldtype': u'Select', 'fieldtype': u'Select',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Series', 'label': u'Series',
'no_copy': 1, 'no_copy': 1,
'oldfieldname': u'naming_series', 'oldfieldname': u'naming_series',
'oldfieldtype': u'Select', 'oldfieldtype': u'Select',
'options': u'STE', 'options': u'\nSTE',
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
@ -211,6 +193,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'amendment_date', 'fieldname': u'amendment_date',
'fieldtype': u'Date', 'fieldtype': u'Date',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Amendment Date', 'label': u'Amendment Date',
'no_copy': 1, 'no_copy': 1,
@ -219,6 +202,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0 'search_index': 0
}, },
@ -229,6 +213,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'purpose', 'fieldname': u'purpose',
'fieldtype': u'Select', 'fieldtype': u'Select',
'hidden': 0,
'in_filter': 1, 'in_filter': 1,
'label': u'Purpose', 'label': u'Purpose',
'no_copy': 0, 'no_copy': 0,
@ -236,6 +221,7 @@
'oldfieldtype': u'Select', 'oldfieldtype': u'Select',
'options': u'Material Issue\nMaterial Receipt\nMaterial Transfer\nSales Return\nPurchase Return\nSubcontracting\nProduction Order\nOther', 'options': u'Material Issue\nMaterial Receipt\nMaterial Transfer\nSales Return\nPurchase Return\nSubcontracting\nProduction Order\nOther',
'permlevel': 0, 'permlevel': 0,
'print_hide': 0,
'report_hide': 0, 'report_hide': 0,
'reqd': 1, 'reqd': 1,
'search_index': 0, 'search_index': 0,
@ -259,6 +245,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 1, 'search_index': 1,
'trigger': u'Client' 'trigger': u'Client'
}, },
@ -280,6 +267,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 1, 'search_index': 1,
'trigger': u'Client' 'trigger': u'Client'
}, },
@ -303,7 +291,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'supplier', 'fieldname': u'supplier',
'fieldtype': u'Link', 'fieldtype': u'Link',
'hidden': 1, 'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Supplier', 'label': u'Supplier',
'no_copy': 0, 'no_copy': 0,
@ -313,6 +301,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0, 'search_index': 0,
'trigger': u'Client' 'trigger': u'Client'
}, },
@ -323,13 +312,16 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'supplier_name', 'fieldname': u'supplier_name',
'fieldtype': u'Data', 'fieldtype': u'Data',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Supplier Name', 'label': u'Supplier Name',
'no_copy': 0, 'no_copy': 0,
'oldfieldname': u'supplier_name', 'oldfieldname': u'supplier_name',
'oldfieldtype': u'Data', 'oldfieldtype': u'Data',
'permlevel': 1, 'permlevel': 1,
'print_hide': 0,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0 'search_index': 0
}, },
@ -340,14 +332,16 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'supplier_address', 'fieldname': u'supplier_address',
'fieldtype': u'Small Text', 'fieldtype': u'Small Text',
'hidden': 1, 'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Supplier Address', 'label': u'Supplier Address',
'no_copy': 0, 'no_copy': 0,
'oldfieldname': u'supplier_address', 'oldfieldname': u'supplier_address',
'oldfieldtype': u'Small Text', 'oldfieldtype': u'Small Text',
'permlevel': 0, 'permlevel': 0,
'print_hide': 0,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0, 'search_index': 0,
'trigger': u'Client' 'trigger': u'Client'
}, },
@ -359,7 +353,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'customer', 'fieldname': u'customer',
'fieldtype': u'Link', 'fieldtype': u'Link',
'hidden': 1, 'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Customer', 'label': u'Customer',
'no_copy': 0, 'no_copy': 0,
@ -369,6 +363,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0, 'search_index': 0,
'trigger': u'Client' 'trigger': u'Client'
}, },
@ -379,14 +374,16 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'customer_name', 'fieldname': u'customer_name',
'fieldtype': u'Data', 'fieldtype': u'Data',
'hidden': 1, 'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Customer Name', 'label': u'Customer Name',
'no_copy': 0, 'no_copy': 0,
'oldfieldname': u'customer_name', 'oldfieldname': u'customer_name',
'oldfieldtype': u'Data', 'oldfieldtype': u'Data',
'permlevel': 1, 'permlevel': 1,
'print_hide': 0,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0 'search_index': 0
}, },
@ -396,14 +393,16 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'customer_address', 'fieldname': u'customer_address',
'fieldtype': u'Small Text', 'fieldtype': u'Small Text',
'hidden': 1, 'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Customer Address', 'label': u'Customer Address',
'no_copy': 0, 'no_copy': 0,
'oldfieldname': u'customer_address', 'oldfieldname': u'customer_address',
'oldfieldtype': u'Small Text', 'oldfieldtype': u'Small Text',
'permlevel': 0, 'permlevel': 0,
'print_hide': 0,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0 'search_index': 0
}, },
@ -424,6 +423,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0, 'search_index': 0,
'trigger': u'Client' 'trigger': u'Client'
}, },
@ -445,6 +445,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 1, 'search_index': 1,
'trigger': u'Client' 'trigger': u'Client'
}, },
@ -479,6 +480,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'fg_completed_qty', 'fieldname': u'fg_completed_qty',
'fieldtype': u'Currency', 'fieldtype': u'Currency',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'FG Completed Qty', 'label': u'FG Completed Qty',
'no_copy': 0, 'no_copy': 0,
@ -487,6 +489,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0, 'search_index': 0,
'trigger': u'Client' 'trigger': u'Client'
}, },
@ -511,6 +514,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'from_warehouse', 'fieldname': u'from_warehouse',
'fieldtype': u'Link', 'fieldtype': u'Link',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Source Warehouse', 'label': u'Source Warehouse',
'no_copy': 0, 'no_copy': 0,
@ -533,6 +537,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'to_warehouse', 'fieldname': u'to_warehouse',
'fieldtype': u'Link', 'fieldtype': u'Link',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Target Warehouse', 'label': u'Target Warehouse',
'no_copy': 0, 'no_copy': 0,
@ -576,6 +581,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'transfer_date', 'fieldname': u'transfer_date',
'fieldtype': u'Date', 'fieldtype': u'Date',
'hidden': 0,
'in_filter': 1, 'in_filter': 1,
'label': u'Transfer Date', 'label': u'Transfer Date',
'no_copy': 1, 'no_copy': 1,
@ -595,6 +601,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'posting_date', 'fieldname': u'posting_date',
'fieldtype': u'Date', 'fieldtype': u'Date',
'hidden': 0,
'in_filter': 1, 'in_filter': 1,
'label': u'Posting Date', 'label': u'Posting Date',
'no_copy': 1, 'no_copy': 1,
@ -613,6 +620,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'posting_time', 'fieldname': u'posting_time',
'fieldtype': u'Time', 'fieldtype': u'Time',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Posting Time', 'label': u'Posting Time',
'no_copy': 1, 'no_copy': 1,
@ -631,6 +639,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'amended_from', 'fieldname': u'amended_from',
'fieldtype': u'Link', 'fieldtype': u'Link',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Amended From', 'label': u'Amended From',
'no_copy': 1, 'no_copy': 1,
@ -640,6 +649,7 @@
'permlevel': 1, 'permlevel': 1,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0 'search_index': 0
}, },
@ -649,6 +659,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'transporter', 'fieldname': u'transporter',
'fieldtype': u'Data', 'fieldtype': u'Data',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Transporter', 'label': u'Transporter',
'no_copy': 0, 'no_copy': 0,
@ -657,6 +668,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0 'search_index': 0
}, },
@ -666,6 +678,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'is_excisable_goods', 'fieldname': u'is_excisable_goods',
'fieldtype': u'Select', 'fieldtype': u'Select',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Is Excisable Goods', 'label': u'Is Excisable Goods',
'no_copy': 0, 'no_copy': 0,
@ -675,6 +688,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0 'search_index': 0
}, },
@ -684,6 +698,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'excisable_goods', 'fieldname': u'excisable_goods',
'fieldtype': u'Select', 'fieldtype': u'Select',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Excisable Goods', 'label': u'Excisable Goods',
'no_copy': 0, 'no_copy': 0,
@ -693,6 +708,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0 'search_index': 0
}, },
@ -712,6 +728,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0 'search_index': 0
}, },
@ -721,6 +738,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'remarks', 'fieldname': u'remarks',
'fieldtype': u'Text', 'fieldtype': u'Text',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Remarks', 'label': u'Remarks',
'no_copy': 1, 'no_copy': 1,
@ -795,6 +813,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0 'search_index': 0
}, },
@ -814,6 +833,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'mtn_details', 'fieldname': u'mtn_details',
'fieldtype': u'Table', 'fieldtype': u'Table',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'MTN Details', 'label': u'MTN Details',
'no_copy': 0, 'no_copy': 0,
@ -823,6 +843,7 @@
'permlevel': 0, 'permlevel': 0,
'print_hide': 0, 'print_hide': 0,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0 'search_index': 0
}, },
@ -832,6 +853,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'total_amount', 'fieldname': u'total_amount',
'fieldtype': u'Currency', 'fieldtype': u'Currency',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Total Amount', 'label': u'Total Amount',
'no_copy': 0, 'no_copy': 0,
@ -840,6 +862,7 @@
'permlevel': 1, 'permlevel': 1,
'print_hide': 1, 'print_hide': 1,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0 'search_index': 0
}, },
@ -858,6 +881,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'company', 'fieldname': u'company',
'fieldtype': u'Link', 'fieldtype': u'Link',
'hidden': 0,
'in_filter': 1, 'in_filter': 1,
'label': u'Company', 'label': u'Company',
'no_copy': 0, 'no_copy': 0,
@ -877,6 +901,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'fiscal_year', 'fieldname': u'fiscal_year',
'fieldtype': u'Select', 'fieldtype': u'Select',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Fiscal Year', 'label': u'Fiscal Year',
'no_copy': 0, 'no_copy': 0,
@ -896,6 +921,7 @@
'doctype': u'DocField', 'doctype': u'DocField',
'fieldname': u'select_print_heading', 'fieldname': u'select_print_heading',
'fieldtype': u'Link', 'fieldtype': u'Link',
'hidden': 0,
'in_filter': 0, 'in_filter': 0,
'label': u'Select Print Heading', 'label': u'Select Print Heading',
'no_copy': 0, 'no_copy': 0,
@ -903,7 +929,9 @@
'oldfieldtype': u'Link', 'oldfieldtype': u'Link',
'options': u'Print Heading', 'options': u'Print Heading',
'permlevel': 0, 'permlevel': 0,
'print_hide': 0,
'report_hide': 0, 'report_hide': 0,
'reqd': 0,
'search_index': 0 'search_index': 0
} }
] ]
Loading…
Cancel
Save