diff --git a/one_fm/__init__.py b/one_fm/__init__.py index d792725fcd..a7e43ff8ac 100755 --- a/one_fm/__init__.py +++ b/one_fm/__init__.py @@ -49,12 +49,11 @@ from frappe.automation.doctype.assignment_rule.assignment_rule import AssignmentRule from one_fm.overrides.assignment_rule import do_assignment from one_fm.overrides.goal import get_childrens -from one_fm.overrides.frappe.oauth import OAuthWebRequestValidatorOverride __version__ = '15.0.0' -frappe.oauth.OAuthWebRequestValidator = OAuthWebRequestValidatorOverride + StockController.make_batches = make_batches_with_supplier_batch_id Interview.validate_overlap = validate_interview_overlap PaymentEntry.add_party_gl_entries = add_party_gl_entries_ diff --git a/one_fm/api/tasks.py b/one_fm/api/tasks.py index e12c338a0e..8e870e33a6 100644 --- a/one_fm/api/tasks.py +++ b/one_fm/api/tasks.py @@ -836,7 +836,7 @@ def create_shift_assignment(roster, date, time): INSERT INTO `tabShift Assignment` (`name`, `company`, `docstatus`, `employee`, `employee_name`, `shift_type`, `site`, `project`, `status`, `shift_classification`, `site_location`, `start_date`, `start_datetime`, `end_datetime`, `department`, `shift`, `operations_role`, `post_abbrv`, `roster_type`, `owner`, `modified_by`, `creation`, `modified`, - `shift_request`, `check_in_site`, `check_out_site`) + `shift_request`, `check_in_site`, `check_out_site`, `employee_schedule`) VALUES """ query_body = """""" @@ -861,7 +861,7 @@ def create_shift_assignment(roster, date, time): "{_shift_request.site or ''}", "{_project_r or ''}", 'Active', '{_shift_request.shift_type}', "{sites_list_dict.get(_shift_request.site) or ''}", "{date}", "{shift_r_start_time or str(date)+' 08:00:00'}", "{shift_r_end_time or str(date)+' 17:00:00'}", "{r.department}", "{_shift_request.operations_shift or ''}", "{_shift_request.operations_role or ''}", "{r.post_abbrv or ''}", "{_shift_request.roster_type}", - "{owner}", "{owner}", "{creation}", "{creation}", "{_shift_request.name}", "{_shift_request.check_in_site}", "{_shift_request.check_out_site}"),""" + "{owner}", "{owner}", "{creation}", "{creation}", "{_shift_request.name}", "{_shift_request.check_in_site}", "{_shift_request.check_out_site}"), "{r.name or ''}",""" else: _shift_type = shift_types_dict.get(r.shift_type) or default_shift query_body += f""" @@ -870,7 +870,7 @@ def create_shift_assignment(roster, date, time): "{r.site or ''}", "{r.project or ''}", 'Active', '{_shift_type.shift_type}', "{sites_list_dict.get(r.site) or ''}", "{date}", "{_shift_type.start_datetime or str(date)+' 08:00:00'}", "{_shift_type.end_datetime or str(date)+' 17:00:00'}", "{r.department}", "{r.shift or ''}", "{r.operations_role or ''}", "{r.post_abbrv or ''}", "{r.roster_type}", - "{owner}", "{owner}", "{creation}", "{creation}", '', '', ''),""" + "{owner}", "{owner}", "{creation}", "{creation}", '', '', '', "{r.name or ''}"),""" else: has_rostered.append(r.employee_name) @@ -898,8 +898,10 @@ def create_shift_assignment(roster, date, time): check_in_site = VALUES(check_in_site), check_out_site = VALUES(check_out_site), shift_classification = VALUES(shift_classification), - status = VALUES(status) + status = VALUES(status), + employee_schedule = VALUES(employee_schedule) """ + frappe.db.sql(query, values=[], as_dict=1) frappe.db.commit() diff --git a/one_fm/api/v1/legal.py b/one_fm/api/v1/legal.py index 6e91c5c290..0bdcafd01b 100644 --- a/one_fm/api/v1/legal.py +++ b/one_fm/api/v1/legal.py @@ -1,5 +1,8 @@ +from datetime import datetime +from random import choice + import frappe, base64, json, grpc -from frappe.utils import cint +from frappe.utils import cint, now from one_fm.legal.doctype.penalty_issuance.penalty_issuance import get_filtered_employees from one_fm.legal.doctype.penalty.penalty import send_email_to_legal from frappe import _ @@ -7,6 +10,20 @@ from one_fm.api.v1.utils import response from one_fm.utils import check_path, create_path + +# setup channel for face recognition +face_recognition_service_url = frappe.local.conf.face_recognition_service_url +options = [('grpc.max_message_length', 100 * 1024 * 1024* 10)] +channels = [ + grpc.secure_channel(i, grpc.ssl_channel_credentials(), options=options) for i in face_recognition_service_url +] + +# setup stub for face recognition +stubs = [ + facial_recognition_pb2_grpc.FaceRecognitionServiceStub(i) for i in channels +] + + @frappe.whitelist() def get_employee_list(shift: str = None, penalty_occurence_time: str = None) -> dict: @@ -44,7 +61,8 @@ def get_all_shifts(): try: result = frappe.db.sql("""SELECT osh.name, osh.site, osh.project, ost.site_location FROM `tabOperations Shift` osh, `tabOperations Site` ost - WHERE osh.site=ost.name + WHERE osh.site=ost.name + AND osh.status="Active" ORDER BY name ASC """, as_dict=1) return response("Success", 200, result) @@ -53,7 +71,7 @@ def get_all_shifts(): @frappe.whitelist() -def issue_penalty(penalty_category, issuing_time, issuing_location, penalty_location, penalty_occurence_time,company_damage, customer_property_damage, asset_damage, other_damages, shift=None, site=None, project=None, site_location=None, penalty_employees=[], penalty_details=[]): +def issue_penalty(penalty_category, issuing_location, issuing_time, penalty_location, penalty_occurence_time,company_damage, customer_property_damage, asset_damage, other_damages, shift=None, site=None, project=None, site_location=None, penalty_employees=[], penalty_details=[]): try: employee, employee_name, designation = frappe.get_value("Employee", {"user_id": frappe.session.user}, ["name","employee_name", "designation"]) @@ -111,8 +129,8 @@ def issue_penalty(penalty_category, issuing_time, issuing_location, penalty_loca return response("Success", 201, penalty_issuance) except Exception as error: - frappe.log_error(error, 'Penalty Issance Error') - return response("Internal Server Error", 500, None, error)@frappe.whitelist() + frappe.log_error(error, 'Penalty Issuance Error') + return response("Internal Server Error", 500, None, error) @frappe.whitelist() @@ -134,13 +152,13 @@ def get_penalties(employee_id: str = None, role: str = None) -> dict: return response("Resource not found", 404, None, "No employee found with {employee_id}".format(employee_id=employee_id)) if role and role == "Issuance": - result = frappe.get_list("Penalty", filters={"issuer_employee": employee}, fields=["name", "penalty_issuance_time", "workflow_state"], order_by="modified desc") + result = frappe.get_list("Penalty", filters={"issuer_employee": employee}, fields=["name", "penalty_issuance_time", "workflow_state", "recipient_name"], order_by="modified desc") if len(result) > 0: return response("Success", 200, result) else: return response("Resource not found", 404, None, "No penalties found for {employee} with role as {role}".format(employee=employee, role=role)) else: - result = frappe.get_list("Penalty", filters={"recipient_employee": employee}, fields=["name", "penalty_issuance_time", "workflow_state"], order_by="modified desc") + result = frappe.get_list("Penalty", filters={"recipient_employee": employee}, fields=["name", "penalty_issuance_time", "workflow_state", "issuer_name"], order_by="modified desc") if len(result) > 0: return response("Success", 200, result) else: @@ -296,3 +314,199 @@ def reject_penalty(rejection_reason: str = None, docname: str = None): except Exception as error: return response("Internal Server Error", 500, None, error) + + +@frappe.whitelist() +def get_pending_penalties(employee_id: str = None, role: str = None, is_pending: bool = True) -> dict: + if not employee_id: + return response("Bad Request", 400, None, "employee_id required.") + + if not isinstance(employee_id, str): + return response("Bad Request", 400, None, "employee_id must be of type str.") + + if role: + if not isinstance(role, str): + return response("Bad Request", 400, None ,"role must be of type str.") + + filter_param = dict() + if is_pending: + filter_param.update({"workflow_state": "Penalty Issued"}) + + + try: + employee = frappe.db.get_value("Employee", {"employee_id": employee_id}) + + if not employee: + return response("Resource not found", 404, None, "No employee found with {employee_id}".format(employee_id=employee_id)) + + if role and role == "Issuance": + result = frappe.get_list("Penalty", filters={"issuer_employee": employee, **filter_param}, fields=["name", "penalty_issuance_time", "workflow_state"], order_by="modified desc") + return response("Success", 200, result) + result = frappe.get_list("Penalty", filters={"recipient_employee": employee, **filter_param}, fields=["name", "penalty_issuance_time", "workflow_state"], order_by="modified desc") + return response("Success", 200, result) + + except Exception as error: + frappe.log_error(str(error), "Error while getting penalties (API)") + return response("Internal Server Error", 500, None, error) + + +@frappe.whitelist() +def get_subordinates(employee: str = None): + try: + if not employee: + return response("Bad Request", 400, None, "employee is required.") + + if not isinstance(employee, str): + return response("Bad Request", 400, None, "employee must be of type str.") + + the_subordinates = frappe.db.get_list("Employee", {"reports_to": employee}, ["employee_name", "name"]) + return response("Success", 200, the_subordinates) + except Exception as e: + frappe.log_error(str(e), "Error while getting subordinates (API)") + return response("Internal Server Error", 500, None, e) + + +@frappe.whitelist() +def new_issue_penalty(penalty_category, issuing_location, penalty_location, penalty_occurrence_time, company_damage, customer_property_damage, + asset_damage, other_damages, shift=None, site=None, project=None, site_location=None, penalty_employees=[], + penalty_files=[], issuing_time=datetime.strptime(now(), '%Y-%m-%d %H:%M:%S.%f'), penalty_issuance_details=[]): + try: + employee, employee_name, designation = frappe.get_value("Employee", {"user_id": frappe.session.user}, ["name","employee_name", "designation"]) + + penalty_issuance = frappe.new_doc("Penalty Issuance") + penalty_issuance.penalty_category = penalty_category.capitalize() + + penalty_issuance.issuing_time = issuing_time + penalty_issuance.location = issuing_location + penalty_issuance.penalty_location = penalty_location + penalty_issuance.penalty_occurence_time = penalty_occurrence_time + + penalty_issuance.issuing_employee = employee + penalty_issuance.employee_name = employee_name + penalty_issuance.designation = designation + + penalty_issuance.customer_property_damage = cint(customer_property_damage) + penalty_issuance.company_damage = cint(company_damage) + penalty_issuance.other_damages = cint(other_damages) + penalty_issuance.asset_damage = cint(asset_damage) + + + for employee in penalty_employees: + penalty_issuance.append('employees', {'employee_id':employee}) + + + path_name = frappe.utils.cstr(frappe.local.site)+"/public/files/Legal" + if not check_path(path_name): + create_path(path_name) + + for detail in penalty_files: + if detail.get("attachments") and detail.get("attachment_name"): + filename = detail["attachment_name"] + attach = detail["attachments"] + content = base64.b64decode(attach) + + OUTPUT_IMAGE_PATH = path_name+"/"+filename + fh = open(OUTPUT_IMAGE_PATH, "wb") + fh.write(content) + fh.close() + Attachment_file="/files/Legal/"+filename + detail.update({'attachments': Attachment_file}) + + + for obj in penalty_issuance_details: + penalty_issuance.append('penalty_issuance_details', {"penalty_type": obj}) + + if penalty_category == "Performance": + penalty_issuance.shift = shift + penalty_issuance.site = site + penalty_issuance.project = project + penalty_issuance.site_location = site_location + + + penalty_issuance.insert() + penalty_issuance.submit() + return response("Success", 201, penalty_issuance) + + except Exception as error: + frappe.log_error(error, 'Penalty Issuance Error') + return response("Internal Server Error", 500, None, error) + + +@frappe.whitelist() +def get_shift_employee_list(shift: str = None, penalty_occurrence_time: str = None) -> dict: + if not shift: + return response("Bad Request", 400, None, "shift required.") + + if not penalty_occurrence_time: + return response("Bad Request", 400, None, "penalty_ocurrence_time required.") + + if not isinstance(shift, str): + return response("Bad Request", 400, None, "shift must be of type str.") + + if not isinstance(penalty_occurrence_time, str): + return response("Bad Request", 400, None, "penalty_ocurrence_time must be of type str.") + + try: + result = frappe.db.sql(""" + SELECT sh.employee as name, sh.employee_name, emp.designation + FROM `tabShift Assignment` as sh, `tabEmployee` as emp + WHERE sh.shift="{shift}" AND sh.start_date=DATE("{date}") AND sh.employee=emp.name + """.format(shift=shift, date=penalty_occurrence_time), as_dict=1) + return response("Success", 200, result) + except Exception as error: + return response("Internal Server Error", 500, None, error) + +@frappe.whitelist() +def new_accept_penalty(docname: str = None) -> dict: + file = frappe.request.files.get("file") + if not file: + return response("Bad Request", 400, None, "Video recording is required") + + if not docname: + return response("Bad Request", 400, None, "docname required.") + + if not isinstance(docname, str): + return response("Bad Request", 400, None, "docname must be of type str.") + + try: + penalty_doc = frappe.get_doc("Penalty", docname) + + if not penalty_doc: + return response("Resource not found", 404, None, "No penalty of name {penalty_doc} found.".format(penalty_doc=penalty_doc)) + + + penalty_doc.retries = cint(penalty_doc.retries) - 1 + content_bytes = file.stream.read() + content_base64_bytes = base64.b64encode(content_bytes) + video_content = content_base64_bytes.decode('ascii') + + + #GRPC TO BE INTEGRATED + + # setup channel + # req = facial_recognition_pb2.FaceRecognitionRequest( + # username = frappe.session.user, + # media_type = "video", + # media_content = video_content + # ) + # Call service stub and get response + # res = choice(stubs).FaceRecognition(req) + # if res.verification == "OK": + if True: + if cint(penalty_doc.retries) == 0: + penalty_doc.verified = 0 + send_email_to_legal(penalty_doc) + else: + penalty_doc.verified = 1 + penalty_doc.workflow_state = "Penalty Accepted" + penalty_doc.save(ignore_permissions=True) + # upload image if available + frappe.db.commit() + return response("Success", 201, penalty_doc.as_dict()) + + else: + return response("Unauthorized", 401, None, "Face not recognized. Please try again.") + + except Exception as error: + frappe.log_error(error, "Penalty Acceptance Error") + return response("Internal Server Error", 500, None, error) \ No newline at end of file diff --git a/one_fm/api/v2/authentication.py b/one_fm/api/v2/authentication.py index d614e80304..62c2f9f1cd 100644 --- a/one_fm/api/v2/authentication.py +++ b/one_fm/api/v2/authentication.py @@ -473,7 +473,7 @@ def set_password(employee_user_id, new_password): @frappe.whitelist(allow_guest=True) def user_login(employee_id, password): - try: + try: username = frappe.db.get_value("Employee", {'employee_id': employee_id}, 'user_id') if not username: return response("Unauthorized", 401, None, "Invalid employee ID") @@ -499,9 +499,9 @@ def user_login(employee_id, password): else: msg.update({"supervisor": 0}) response("success", 200, msg) - except frappe.exceptions.AuthenticationError: - print('auth eror') + except frappe.exceptions.AuthenticationError as e: + frappe.log_error(message=frappe.get_traceback(), title="API Login") response("error", 401, None, frappe.local.response.message) except Exception as e: - print(frappe.get_traceback(), 'Email Login') + frappe.log_error(message=frappe.get_traceback(), title="API Login") response("error", 500, None, str(e)) \ No newline at end of file diff --git a/one_fm/fixtures/assignment_rule.json b/one_fm/fixtures/assignment_rule.json index 02ce927c4b..0e408a0e17 100644 --- a/one_fm/fixtures/assignment_rule.json +++ b/one_fm/fixtures/assignment_rule.json @@ -118,11 +118,11 @@ "field": "reports_to_user", "is_assignment_rule_with_workflow": 0, "last_user": "", - "modified": "2023-06-08 08:21:52.623492", + "modified": "2024-01-24 18:00:54.349067", "name": "Attendance Check Reports To", "priority": 2, "rule": "Based on Field", - "unassign_condition": null, + "unassign_condition": "workflow_state in ('Approved', 'Rejected')", "users": [] }, { @@ -181,11 +181,11 @@ "field": "site_supervisor_user", "is_assignment_rule_with_workflow": 0, "last_user": "", - "modified": "2023-06-08 08:22:10.786821", + "modified": "2024-01-24 18:00:38.952572", "name": "Attendance Check Site Supervisor", "priority": 1, "rule": "Based on Field", - "unassign_condition": null, + "unassign_condition": "workflow_state in ('Approved', 'Rejected')", "users": [] }, { @@ -244,11 +244,11 @@ "field": "shift_supervisor_user", "is_assignment_rule_with_workflow": 0, "last_user": "", - "modified": "2023-06-08 08:22:03.174673", + "modified": "2024-01-24 18:00:07.832120", "name": "Attendance Check Shift Supervisor", "priority": 0, "rule": "Based on Field", - "unassign_condition": null, + "unassign_condition": "workflow_state in ('Approved', 'Rejected')", "users": [] }, { diff --git a/one_fm/fixtures/property_setter.json b/one_fm/fixtures/property_setter.json index 5e11f59069..297d2fa5fe 100755 --- a/one_fm/fixtures/property_setter.json +++ b/one_fm/fixtures/property_setter.json @@ -1,4 +1,36 @@ [ + { + "default_value": null, + "doc_type": "Sales Invoice", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "naming_series", + "is_system_generated": 0, + "modified": "2020-06-21 21:34:40.874089", + "module": null, + "name": "Sales Invoice-naming_series-options", + "property": "options", + "property_type": "Text", + "row_name": null, + "value": "ACC-SINV-.YYYY.-" + }, + { + "default_value": null, + "doc_type": "Purchase Order", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "is_subcontracted", + "is_system_generated": 0, + "modified": "2020-06-29 10:26:18.634588", + "module": null, + "name": "Purchase Order-is_subcontracted-in_standard_filter", + "property": "in_standard_filter", + "property_type": "Check", + "row_name": null, + "value": "0" + }, { "default_value": null, "doc_type": "Project", @@ -17,15 +49,15 @@ }, { "default_value": null, - "doc_type": "Sales Invoice Item", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "barcode", + "field_name": "base_rounded_total", "is_system_generated": 0, - "modified": "2020-10-15 17:51:44.921751", + "modified": "2020-03-31 08:03:00.847395", "module": null, - "name": "Sales Invoice Item-barcode-hidden", + "name": "Delivery Note-base_rounded_total-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -33,351 +65,351 @@ }, { "default_value": null, - "doc_type": "Delivery Note Item", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "barcode", + "field_name": "base_rounded_total", "is_system_generated": 0, - "modified": "2020-05-06 10:57:12.264990", + "modified": "2020-03-31 08:03:01.008948", "module": null, - "name": "Delivery Note Item-barcode-hidden", - "property": "hidden", + "name": "Delivery Note-base_rounded_total-print_hide", + "property": "print_hide", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Delivery Note Item", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "section_break_17", + "field_name": "rounded_total", "is_system_generated": 0, - "modified": "2020-10-26 14:41:12.514064", + "modified": "2020-03-31 08:03:01.200735", "module": null, - "name": "Delivery Note Item-section_break_17-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Delivery Note-rounded_total-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "2" + "value": "0" }, { "default_value": null, - "doc_type": "Delivery Note Item", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "discount_and_margin", + "field_name": "rounded_total", "is_system_generated": 0, - "modified": "2020-10-26 14:41:12.606504", + "modified": "2020-03-31 08:03:01.458240", "module": null, - "name": "Delivery Note Item-discount_and_margin-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Delivery Note-rounded_total-print_hide", + "property": "print_hide", + "property_type": "Check", "row_name": null, - "value": "2" + "value": "0" }, { "default_value": null, - "doc_type": "Delivery Note Item", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "section_break_1", + "field_name": "in_words", "is_system_generated": 0, - "modified": "2020-10-26 14:41:12.653217", + "modified": "2020-03-31 08:03:04.529368", "module": null, - "name": "Delivery Note Item-section_break_1-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Delivery Note-in_words-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "2" + "value": "0" }, { "default_value": null, - "doc_type": "Delivery Note Item", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "section_break_25", + "field_name": "in_words", "is_system_generated": 0, - "modified": "2020-10-26 14:41:12.687968", + "modified": "2020-03-31 08:03:04.686963", "module": null, - "name": "Delivery Note Item-section_break_25-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Delivery Note-in_words-print_hide", + "property": "print_hide", + "property_type": "Check", "row_name": null, - "value": "2" + "value": "0" }, { "default_value": null, - "doc_type": "Delivery Note Item", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "rate", + "field_name": "scan_barcode", "is_system_generated": 0, - "modified": "2020-10-26 14:44:34.726483", + "modified": "2020-05-06 10:57:13.091035", "module": null, - "name": "Delivery Note Item-rate-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Delivery Note-scan_barcode-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "2" + "value": "1" }, { "default_value": null, - "doc_type": "Delivery Note Item", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "amount", + "field_name": "due_date", "is_system_generated": 0, - "modified": "2020-10-26 14:46:53.582317", + "modified": "2019-11-24 17:48:11.267047", "module": null, - "name": "Delivery Note Item-amount-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Sales Invoice-due_date-print_hide", + "property": "print_hide", + "property_type": "Check", "row_name": null, - "value": "2" + "value": "0" }, { "default_value": null, - "doc_type": "Delivery Note Item", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "warehouse", + "field_name": "payment_schedule", "is_system_generated": 0, - "modified": "2020-10-26 14:46:53.671757", + "modified": "2019-11-24 17:48:11.593936", "module": null, - "name": "Delivery Note Item-warehouse-in_list_view", - "property": "in_list_view", + "name": "Sales Invoice-payment_schedule-print_hide", + "property": "print_hide", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Delivery Note Item", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "batch_no", + "field_name": "cost_center", "is_system_generated": 0, - "modified": "2020-10-26 14:46:53.701236", + "modified": "2019-11-24 17:48:12.967509", "module": null, - "name": "Delivery Note Item-batch_no-in_list_view", - "property": "in_list_view", + "name": "Sales Invoice-cost_center-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Delivery Note Item", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "serial_no", + "field_name": "base_rounded_total", "is_system_generated": 0, - "modified": "2020-10-26 14:46:53.742035", + "modified": "2020-03-31 08:03:00.043010", "module": null, - "name": "Delivery Note Item-serial_no-in_list_view", - "property": "in_list_view", + "name": "Sales Invoice-base_rounded_total-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "0" }, { "default_value": null, - "doc_type": "Asset Finance Book", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "expected_value_after_useful_life", + "field_name": "base_rounded_total", "is_system_generated": 0, - "modified": "2020-11-26 10:58:40.954122", + "modified": "2020-03-31 08:03:00.244919", "module": null, - "name": "Asset Finance Book-expected_value_after_useful_life-depends_on", - "property": "depends_on", - "property_type": "Data", + "name": "Sales Invoice-base_rounded_total-print_hide", + "property": "print_hide", + "property_type": "Check", "row_name": null, - "value": "eval:parent.doctype == 'Asset' || parent.doctype == 'Customer Asset'" + "value": "1" }, { "default_value": null, - "doc_type": "Item Group", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "sec_break_taxes", + "field_name": "rounded_total", "is_system_generated": 0, - "modified": "2020-05-22 15:48:53.806012", + "modified": "2020-03-31 08:03:00.445011", "module": null, - "name": "Item Group-sec_break_taxes-hidden", + "name": "Sales Invoice-rounded_total-hidden", "property": "hidden", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Asset Category Account", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "depreciation_expense_account", + "field_name": "rounded_total", "is_system_generated": 0, - "modified": "2020-12-15 21:03:28.564015", + "modified": "2020-03-31 08:03:00.645418", "module": null, - "name": "Asset Category Account-depreciation_expense_account-in_list_view", - "property": "in_list_view", + "name": "Sales Invoice-rounded_total-print_hide", + "property": "print_hide", "property_type": "Check", "row_name": null, "value": "0" }, { "default_value": null, - "doc_type": "Depreciation Schedule", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "make_depreciation_entry", + "field_name": "in_words", "is_system_generated": 0, - "modified": "2020-12-21 20:47:17.973213", + "modified": "2020-03-31 08:03:04.115258", "module": null, - "name": "Depreciation Schedule-make_depreciation_entry-hidden", + "name": "Sales Invoice-in_words-hidden", "property": "hidden", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "disabled", + "field_name": "in_words", "is_system_generated": 0, - "modified": "2020-05-21 18:14:27.239874", + "modified": "2020-03-31 08:03:04.322400", "module": null, - "name": "Supplier-disabled-hidden", - "property": "hidden", + "name": "Sales Invoice-in_words-print_hide", + "property": "print_hide", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Shift Assignment", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "default_bank_account", + "field_name": "shift_type", "is_system_generated": 0, - "modified": "2020-05-21 18:17:12.512062", + "modified": "2020-05-31 22:44:02.659032", "module": null, - "name": "Supplier-default_bank_account-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Shift Assignment-shift_type-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": "1" + "value": "shift.shift_type" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Sales Invoice Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "tax_id", + "field_name": "barcode", "is_system_generated": 0, - "modified": "2020-05-21 18:17:12.529616", + "modified": "2020-10-15 17:51:44.921751", "module": null, - "name": "Supplier-tax_id-hidden", + "name": "Sales Invoice Item-barcode-hidden", "property": "hidden", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "tax_category", + "field_name": "scan_barcode", "is_system_generated": 0, - "modified": "2020-05-21 18:17:12.540210", + "modified": "2020-10-15 17:51:48.491378", "module": null, - "name": "Supplier-tax_category-hidden", + "name": "Sales Invoice-scan_barcode-hidden", "property": "hidden", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "tax_withholding_category", + "field_name": "manufacturing", "is_system_generated": 0, - "modified": "2020-05-21 18:17:12.549434", + "modified": "2019-10-22 08:38:57.275292", "module": null, - "name": "Supplier-tax_withholding_category-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Item-manufacturing-collapsible_depends_on", + "property": "collapsible_depends_on", + "property_type": "Code", "row_name": null, - "value": "1" + "value": "is_stock_item" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "is_transporter", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2020-05-21 18:17:12.558701", + "modified": "2019-12-17 12:32:30.766254", "module": null, - "name": "Supplier-is_transporter-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Item-naming_series-options", + "property": "options", + "property_type": "Text", "row_name": null, - "value": "1" + "value": "STO-ITEM-.YYYY.-" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "is_internal_supplier", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2020-05-21 18:17:12.568531", + "modified": "2020-05-06 10:57:10.470303", "module": null, - "name": "Supplier-is_internal_supplier-hidden", - "property": "hidden", + "name": "Item-naming_series-reqd", + "property": "reqd", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "represents_company", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2020-05-21 18:17:12.577718", + "modified": "2020-05-06 10:57:10.723520", "module": null, - "name": "Supplier-represents_company-hidden", + "name": "Item-naming_series-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -385,47 +417,47 @@ }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "supplier_group", + "field_name": "item_code", "is_system_generated": 0, - "modified": "2020-05-21 18:19:20.035165", + "modified": "2020-05-06 10:57:10.977092", "module": null, - "name": "Supplier-supplier_group-label", - "property": "label", - "property_type": "Data", + "name": "Item-item_code-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "Category" + "value": "0" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item Barcode", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "pan", + "field_name": "barcode", "is_system_generated": 0, - "modified": "2020-05-21 18:22:59.349434", + "modified": "2020-05-06 10:57:11.453937", "module": null, - "name": "Supplier-pan-hidden", + "name": "Item Barcode-barcode-hidden", "property": "hidden", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Delivery Note Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "language", + "field_name": "barcode", "is_system_generated": 0, - "modified": "2020-05-21 18:22:59.370579", + "modified": "2020-05-06 10:57:12.264990", "module": null, - "name": "Supplier-language-hidden", + "name": "Delivery Note Item-barcode-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -433,15 +465,15 @@ }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "allow_purchase_invoice_creation_without_purchase_order", + "field_name": "barcodes", "is_system_generated": 0, - "modified": "2020-05-21 18:22:59.380416", + "modified": "2020-05-06 10:57:12.821344", "module": null, - "name": "Supplier-allow_purchase_invoice_creation_without_purchase_order-hidden", + "name": "Item-barcodes-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -449,31 +481,31 @@ }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "allow_purchase_invoice_creation_without_purchase_receipt", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2020-05-21 18:22:59.389628", + "modified": "2020-05-22 17:55:32.951836", "module": null, - "name": "Supplier-allow_purchase_invoice_creation_without_purchase_receipt-hidden", - "property": "hidden", + "name": "Item-quick_entry", + "property": "quick_entry", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "warn_rfqs", + "field_name": "sb_barcodes", "is_system_generated": 0, - "modified": "2020-05-21 18:22:59.400915", + "modified": "2020-05-22 17:55:33.087811", "module": null, - "name": "Supplier-warn_rfqs-hidden", + "name": "Item-sb_barcodes-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -481,15 +513,15 @@ }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "warn_pos", + "field_name": "defaults", "is_system_generated": 0, - "modified": "2020-05-21 18:22:59.409961", + "modified": "2020-05-22 17:55:33.142535", "module": null, - "name": "Supplier-warn_pos-hidden", + "name": "Item-defaults-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -497,15 +529,15 @@ }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "prevent_rfqs", + "field_name": "foreign_trade_details", "is_system_generated": 0, - "modified": "2020-05-21 18:22:59.418888", + "modified": "2020-05-22 17:55:33.164862", "module": null, - "name": "Supplier-prevent_rfqs-hidden", + "name": "Item-foreign_trade_details-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -513,15 +545,15 @@ }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "prevent_pos", + "field_name": "deferred_revenue", "is_system_generated": 0, - "modified": "2020-05-21 18:22:59.427703", + "modified": "2020-05-22 17:55:33.185265", "module": null, - "name": "Supplier-prevent_pos-hidden", + "name": "Item-deferred_revenue-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -529,15 +561,15 @@ }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "allowed_to_transact_section", + "field_name": "deferred_expense_section", "is_system_generated": 0, - "modified": "2020-05-21 18:22:59.438834", + "modified": "2020-05-22 17:55:33.196181", "module": null, - "name": "Supplier-allowed_to_transact_section-hidden", + "name": "Item-deferred_expense_section-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -545,15 +577,15 @@ }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "section_credit_limit", + "field_name": "customer_details", "is_system_generated": 0, - "modified": "2020-05-21 18:32:39.807236", + "modified": "2020-05-22 17:55:33.206600", "module": null, - "name": "Supplier-section_credit_limit-hidden", + "name": "Item-customer_details-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -561,15 +593,15 @@ }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "default_payable_accounts", + "field_name": "item_tax_section_break", "is_system_generated": 0, - "modified": "2020-05-21 18:32:39.826596", + "modified": "2020-05-22 17:55:33.216286", "module": null, - "name": "Supplier-default_payable_accounts-hidden", + "name": "Item-item_tax_section_break-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -577,47 +609,47 @@ }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "manufacturing", "is_system_generated": 0, - "modified": "2021-02-03 20:22:37.493813", + "modified": "2020-05-22 17:55:33.227117", "module": null, - "name": "Supplier-naming_series-hidden", + "name": "Item-manufacturing-hidden", "property": "hidden", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "hub_publishing_sb", "is_system_generated": 0, - "modified": "2021-02-03 20:22:37.764962", + "modified": "2020-05-22 17:55:33.243335", "module": null, - "name": "Supplier-naming_series-reqd", - "property": "reqd", + "name": "Item-hub_publishing_sb-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "basic_info", + "field_name": "item_code", "is_system_generated": 0, - "modified": "2021-02-03 21:33:49.374970", + "modified": "2020-05-22 18:08:06.009261", "module": null, - "name": "Supplier-basic_info-read_only", + "name": "Item-item_code-read_only", "property": "read_only", "property_type": "Check", "row_name": null, @@ -625,847 +657,1263 @@ }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "item_name", "is_system_generated": 0, - "modified": "2021-02-03 21:34:07.885089", + "modified": "2020-05-22 18:08:06.030138", "module": null, - "name": "Supplier-naming_series-read_only", - "property": "read_only", + "name": "Item-item_name-in_list_view", + "property": "in_list_view", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "is_item_from_hub", "is_system_generated": 0, - "modified": "2021-02-03 21:41:34.134550", + "modified": "2020-05-22 18:08:06.061788", "module": null, - "name": "Supplier-naming_series-options", - "property": "options", - "property_type": "Text", + "name": "Item-is_item_from_hub-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "SUB-.######\nSUP-.######" + "value": "1" }, { "default_value": null, - "doc_type": "Supplier", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "stock_uom", "is_system_generated": 0, - "modified": "2021-02-03 21:48:49.204335", + "modified": "2020-05-22 18:08:06.071990", "module": null, - "name": "Supplier-naming_series-default", - "property": "default", - "property_type": "Text", + "name": "Item-stock_uom-label", + "property": "label", + "property_type": "Data", "row_name": null, - "value": "SUP-.######" + "value": "Unit of Measure" }, { "default_value": null, - "doc_type": "Job Offer", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "letter_head", + "field_name": "allow_alternative_item", "is_system_generated": 0, - "modified": "2021-02-17 13:15:42.396129", + "modified": "2020-05-22 18:08:06.084290", "module": null, - "name": "Job Offer-letter_head-fetch_from", - "property": "fetch_from", - "property_type": "Small Text", + "name": "Item-allow_alternative_item-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "" + "value": "1" }, { "default_value": null, - "doc_type": "Employee Advance", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "advance_account", + "field_name": "include_item_in_manufacturing", "is_system_generated": 0, - "modified": "2021-03-01 15:29:42.124409", + "modified": "2020-05-22 18:08:06.107966", "module": null, - "name": "Employee Advance-advance_account-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Item-include_item_in_manufacturing-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Employee Advance", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "mode_of_payment", + "field_name": "opening_stock", "is_system_generated": 0, - "modified": "2021-03-01 15:29:42.206576", + "modified": "2020-05-22 18:08:06.118850", "module": null, - "name": "Employee Advance-mode_of_payment-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Item-opening_stock-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Employee Advance", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "repay_unclaimed_amount_from_salary", + "field_name": "valuation_rate", "is_system_generated": 0, - "modified": "2021-03-01 15:29:42.278027", + "modified": "2020-05-22 18:08:06.129232", "module": null, - "name": "Employee Advance-repay_unclaimed_amount_from_salary-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Item-valuation_rate-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Expense Claim", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "approval_status", + "field_name": "over_delivery_receipt_allowance", "is_system_generated": 0, - "modified": "2021-03-01 16:12:07.542512", + "modified": "2020-05-22 18:08:06.171875", "module": null, - "name": "Expense Claim-approval_status-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Item-over_delivery_receipt_allowance-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Expense Claim", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "is_paid", + "field_name": "over_billing_allowance", "is_system_generated": 0, - "modified": "2021-03-01 16:12:07.618688", + "modified": "2020-05-22 18:08:06.181793", "module": null, - "name": "Expense Claim-is_paid-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Item-over_billing_allowance-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Expense Claim", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "mode_of_payment", + "field_name": "section_break_49", "is_system_generated": 0, - "modified": "2021-03-01 16:12:07.645444", + "modified": "2020-10-26 14:09:48.298545", "module": null, - "name": "Expense Claim-mode_of_payment-permlevel", + "name": "Delivery Note-section_break_49-permlevel", "property": "permlevel", "property_type": "Int", "row_name": null, - "value": "1" + "value": "2" }, { "default_value": null, - "doc_type": "Expense Claim", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "payable_account", + "field_name": "totals", "is_system_generated": 0, - "modified": "2021-03-01 16:12:07.691668", + "modified": "2020-10-26 14:09:48.445126", "module": null, - "name": "Expense Claim-payable_account-permlevel", + "name": "Delivery Note-totals-permlevel", "property": "permlevel", "property_type": "Int", "row_name": null, - "value": "1" + "value": "2" }, { "default_value": null, - "doc_type": "Expense Claim", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "advances", + "field_name": "total", "is_system_generated": 0, - "modified": "2021-03-01 16:12:07.719987", + "modified": "2020-10-26 14:15:04.533879", "module": null, - "name": "Expense Claim-advances-permlevel", + "name": "Delivery Note-total-permlevel", "property": "permlevel", "property_type": "Int", "row_name": null, - "value": "1" + "value": "2" }, { "default_value": null, - "doc_type": "Job Applicant", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "status", + "field_name": "net_total", "is_system_generated": 0, - "modified": "2021-07-13 13:44:29.852626", + "modified": "2020-10-26 14:15:04.607435", "module": null, - "name": "Job Applicant-status-options", - "property": "options", - "property_type": "Text", + "name": "Delivery Note-net_total-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, - "value": "Open\nReplied\nRejected\nHold\nAccepted" + "value": "2" }, { "default_value": null, - "doc_type": "Job Applicant", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "phone_number", + "field_name": "taxes_section", "is_system_generated": 0, - "modified": "2021-08-30 14:47:06.768715", + "modified": "2020-10-26 14:24:57.688120", "module": null, - "name": "Job Applicant-phone_number-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Delivery Note-taxes_section-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, - "value": "1" + "value": "2" }, { "default_value": null, - "doc_type": "Gender", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "gender", + "field_name": "section_break_41", "is_system_generated": 0, - "modified": "2021-09-01 08:18:04.100898", + "modified": "2020-10-26 14:24:57.734181", "module": null, - "name": "Gender-gender-unique", - "property": "unique", - "property_type": "Check", + "name": "Delivery Note-section_break_41-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, - "value": "1" + "value": "2" }, { "default_value": null, - "doc_type": "Gender", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "gender", + "field_name": "sec_tax_breakup", "is_system_generated": 0, - "modified": "2021-09-01 08:20:16.422005", + "modified": "2020-10-26 14:24:57.778406", "module": null, - "name": "Gender-gender-label", - "property": "label", - "property_type": "Data", + "name": "Delivery Note-sec_tax_breakup-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, - "value": "Gender (ENGLISH)" + "value": "2" }, { "default_value": null, - "doc_type": "Gender", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "section_break_44", "is_system_generated": 0, - "modified": "2021-09-01 08:20:27.618815", + "modified": "2020-10-26 14:24:57.830571", "module": null, - "name": "Gender-main-quick_entry", - "property": "quick_entry", - "property_type": "Check", + "name": "Delivery Note-section_break_44-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, - "value": "1" + "value": "2" }, { "default_value": null, - "doc_type": "Notification Log", + "doc_type": "Delivery Note Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "open_reference_document", + "field_name": "section_break_17", "is_system_generated": 0, - "modified": "2021-10-28 16:59:00.206716", + "modified": "2020-10-26 14:41:12.514064", "module": null, - "name": "Notification Log-open_reference_document-depends_on", - "property": "depends_on", - "property_type": "Data", + "name": "Delivery Note Item-section_break_17-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, - "value": "eval:doc.check_baled" + "value": "2" }, { "default_value": null, - "doc_type": "Packed Item", + "doc_type": "Delivery Note Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "rate", + "field_name": "discount_and_margin", "is_system_generated": 0, - "modified": "2021-12-29 12:49:37.965635", + "modified": "2020-10-26 14:41:12.606504", "module": null, - "name": "Packed Item-rate-read_only", - "property": "read_only", - "property_type": "Check", + "name": "Delivery Note Item-discount_and_margin-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, - "value": "1" + "value": "2" }, { "default_value": null, - "doc_type": "Shift Type", + "doc_type": "Delivery Note Item", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "section_break_1", "is_system_generated": 0, - "modified": "2020-06-08 12:08:35.952797", + "modified": "2020-10-26 14:41:12.653217", "module": null, - "name": "Shift Type-quick_entry", - "property": "quick_entry", - "property_type": "Check", + "name": "Delivery Note Item-section_break_1-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, - "value": "0" + "value": "2" }, { "default_value": null, - "doc_type": "Shift Type", + "doc_type": "Delivery Note Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "start_time", + "field_name": "section_break_25", "is_system_generated": 0, - "modified": "2020-05-12 21:59:48.065967", + "modified": "2020-10-26 14:41:12.687968", "module": null, - "name": "Shift Type-start_time-fetch_from", - "property": "fetch_from", - "property_type": "Small Text", + "name": "Delivery Note Item-section_break_25-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, - "value": "" + "value": "2" }, { "default_value": null, - "doc_type": "Shift Type", + "doc_type": "Delivery Note Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "end_time", + "field_name": "rate", "is_system_generated": 0, - "modified": "2020-05-12 21:59:48.509959", + "modified": "2020-10-26 14:44:34.726483", "module": null, - "name": "Shift Type-end_time-fetch_from", - "property": "fetch_from", - "property_type": "Small Text", + "name": "Delivery Note Item-rate-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, - "value": "" + "value": "2" }, { "default_value": null, - "doc_type": "Shift Type", + "doc_type": "Delivery Note Item", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "amount", "is_system_generated": 0, - "modified": "2020-05-13 15:02:21.676828", + "modified": "2020-10-26 14:46:53.582317", "module": null, - "name": "Shift Type-search_fields", - "property": "search_fields", - "property_type": "Data", + "name": "Delivery Note Item-amount-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, - "value": "start_time, end_time, duration" + "value": "2" }, { "default_value": null, - "doc_type": "Timesheet", + "doc_type": "Delivery Note Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "warehouse", "is_system_generated": 0, - "modified": "2020-06-16 18:43:31.267766", + "modified": "2020-10-26 14:46:53.671757", "module": null, - "name": "Timesheet-naming_series-options", - "property": "options", - "property_type": "Text", + "name": "Delivery Note Item-warehouse-in_list_view", + "property": "in_list_view", + "property_type": "Check", "row_name": null, - "value": "TS-.YYYY.-" + "value": "0" }, { "default_value": null, - "doc_type": "Job Applicant", + "doc_type": "Delivery Note Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "designation", + "field_name": "batch_no", "is_system_generated": 0, - "modified": "2022-03-17 13:48:22.215608", + "modified": "2020-10-26 14:46:53.701236", "module": null, - "name": "Job Applicant-designation-fetch_from", - "property": "fetch_from", - "property_type": "Small Text", + "name": "Delivery Note Item-batch_no-in_list_view", + "property": "in_list_view", + "property_type": "Check", + "row_name": null, + "value": "0" + }, + { + "default_value": null, + "doc_type": "Delivery Note Item", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "serial_no", + "is_system_generated": 0, + "modified": "2020-10-26 14:46:53.742035", + "module": null, + "name": "Delivery Note Item-serial_no-in_list_view", + "property": "in_list_view", + "property_type": "Check", + "row_name": null, + "value": "0" + }, + { + "default_value": null, + "doc_type": "Company", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocType", + "field_name": null, + "is_system_generated": 0, + "modified": "2019-12-22 16:31:00.353656", + "module": null, + "name": "Company-sort_field", + "property": "sort_field", + "property_type": "Data", + "row_name": null, + "value": "chart_of_accounts" + }, + { + "default_value": null, + "doc_type": "Company", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "write_off_account", + "is_system_generated": 0, + "modified": "2019-12-23 08:54:15.614105", + "module": null, + "name": "Company-write_off_account-label", + "property": "label", + "property_type": "Data", + "row_name": null, + "value": "" + }, + { + "default_value": null, + "doc_type": "Asset Finance Book", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "expected_value_after_useful_life", + "is_system_generated": 0, + "modified": "2020-11-26 10:58:40.954122", + "module": null, + "name": "Asset Finance Book-expected_value_after_useful_life-depends_on", + "property": "depends_on", + "property_type": "Data", + "row_name": null, + "value": "eval:parent.doctype == 'Asset' || parent.doctype == 'Customer Asset'" + }, + { + "default_value": null, + "doc_type": "Item Group", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "sec_break_taxes", + "is_system_generated": 0, + "modified": "2020-05-22 15:48:53.806012", + "module": null, + "name": "Item Group-sec_break_taxes-hidden", + "property": "hidden", + "property_type": "Check", + "row_name": null, + "value": "1" + }, + { + "default_value": null, + "doc_type": "Item", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "item_group", + "is_system_generated": 0, + "modified": "2020-12-01 10:43:17.250416", + "module": null, + "name": "Item-item_group-label", + "property": "label", + "property_type": "Data", + "row_name": null, + "value": "Subgroup" + }, + { + "default_value": null, + "doc_type": "Item", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "item_code", + "is_system_generated": 0, + "modified": "2020-12-03 11:24:15.852497", + "module": null, + "name": "Item-item_code-reqd", + "property": "reqd", + "property_type": "Check", + "row_name": null, + "value": "1" + }, + { + "default_value": null, + "doc_type": "Location", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "parent_location", + "is_system_generated": 0, + "modified": "2020-06-03 23:30:34.512352", + "module": null, + "name": "Location-parent_location-hidden", + "property": "hidden", + "property_type": "Check", + "row_name": null, + "value": "1" + }, + { + "default_value": null, + "doc_type": "Location", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "is_container", + "is_system_generated": 0, + "modified": "2020-06-03 23:30:34.605343", + "module": null, + "name": "Location-is_container-hidden", + "property": "hidden", + "property_type": "Check", + "row_name": null, + "value": "1" + }, + { + "default_value": null, + "doc_type": "Location", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "is_group", + "is_system_generated": 0, + "modified": "2020-06-03 23:30:34.638824", + "module": null, + "name": "Location-is_group-hidden", + "property": "hidden", + "property_type": "Check", + "row_name": null, + "value": "1" + }, + { + "default_value": null, + "doc_type": "Location", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "area", + "is_system_generated": 0, + "modified": "2020-06-03 23:30:34.676031", + "module": null, + "name": "Location-area-hidden", + "property": "hidden", + "property_type": "Check", + "row_name": null, + "value": "1" + }, + { + "default_value": null, + "doc_type": "Location", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "area_uom", + "is_system_generated": 0, + "modified": "2020-06-03 23:30:34.708356", + "module": null, + "name": "Location-area_uom-hidden", + "property": "hidden", + "property_type": "Check", + "row_name": null, + "value": "1" + }, + { + "default_value": null, + "doc_type": "Location", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "latitude", + "is_system_generated": 0, + "modified": "2020-06-03 23:37:31.343836", + "module": null, + "name": "Location-latitude-reqd", + "property": "reqd", + "property_type": "Check", + "row_name": null, + "value": "1" + }, + { + "default_value": null, + "doc_type": "Location", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "longitude", + "is_system_generated": 0, + "modified": "2020-06-03 23:37:31.442704", + "module": null, + "name": "Location-longitude-reqd", + "property": "reqd", + "property_type": "Check", + "row_name": null, + "value": "1" + }, + { + "default_value": null, + "doc_type": "Location", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "latitude", + "is_system_generated": 0, + "modified": "2020-06-03 23:49:32.641893", + "module": null, + "name": "Location-latitude-precision", + "property": "precision", + "property_type": "Select", + "row_name": null, + "value": "9" + }, + { + "default_value": null, + "doc_type": "Location", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "longitude", + "is_system_generated": 0, + "modified": "2020-06-03 23:49:32.712615", + "module": null, + "name": "Location-longitude-precision", + "property": "precision", + "property_type": "Select", + "row_name": null, + "value": "9" + }, + { + "default_value": null, + "doc_type": "Location", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "location", + "is_system_generated": 0, + "modified": "2020-05-11 16:32:19.267865", + "module": null, + "name": "Location-location-hidden", + "property": "hidden", + "property_type": "Check", + "row_name": null, + "value": "1" + }, + { + "default_value": null, + "doc_type": "Purchase Receipt Item", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "barcode", + "is_system_generated": 0, + "modified": "2020-05-06 10:57:12.466085", + "module": null, + "name": "Purchase Receipt Item-barcode-hidden", + "property": "hidden", + "property_type": "Check", + "row_name": null, + "value": "1" + }, + { + "default_value": null, + "doc_type": "Asset Category Account", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "depreciation_expense_account", + "is_system_generated": 0, + "modified": "2020-12-15 21:03:28.564015", + "module": null, + "name": "Asset Category Account-depreciation_expense_account-in_list_view", + "property": "in_list_view", + "property_type": "Check", + "row_name": null, + "value": "0" + }, + { + "default_value": null, + "doc_type": "Depreciation Schedule", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "make_depreciation_entry", + "is_system_generated": 0, + "modified": "2020-12-21 20:47:17.973213", + "module": null, + "name": "Depreciation Schedule-make_depreciation_entry-hidden", + "property": "hidden", + "property_type": "Check", + "row_name": null, + "value": "1" + }, + { + "default_value": null, + "doc_type": "Asset", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "asset_owner", + "is_system_generated": 0, + "modified": "2020-12-21 21:13:35.436900", + "module": null, + "name": "Asset-asset_owner-options", + "property": "options", + "property_type": "Text", "row_name": null, - "value": "job_title.designation" + "value": "Company\nSupplier" }, { "default_value": null, - "doc_type": "Interview Feedback", + "doc_type": "Purchase Order", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocType", + "field_name": null, + "is_system_generated": 0, + "modified": "2020-12-23 07:20:30.841266", + "module": null, + "name": "Purchase Order-default_print_format", + "property": "default_print_format", + "property_type": "Data", + "row_name": null, + "value": "Purchase Order" + }, + { + "default_value": null, + "doc_type": "Sales Invoice Timesheet", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "result", + "field_name": "timesheet_detail", "is_system_generated": 0, - "modified": "2022-03-23 13:29:44.890856", + "modified": "2020-12-30 15:20:18.286593", "module": null, - "name": "Interview Feedback-result-options", - "property": "options", - "property_type": "Text", + "name": "Sales Invoice Timesheet-timesheet_detail-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "\nCleared\nRejected\nPending" + "value": "0" }, { "default_value": null, - "doc_type": "Interview Feedback", + "doc_type": "Purchase Order", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "result", + "field_name": "due_date", "is_system_generated": 0, - "modified": "2022-03-23 13:29:45.208945", + "modified": "2019-11-24 17:48:11.923178", "module": null, - "name": "Interview Feedback-result-default", - "property": "default", - "property_type": "Text", + "name": "Purchase Order-due_date-print_hide", + "property": "print_hide", + "property_type": "Check", "row_name": null, - "value": "Pending" + "value": "0" }, { "default_value": null, - "doc_type": "Help Category", + "doc_type": "Purchase Order", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "route", + "field_name": "payment_schedule", "is_system_generated": 0, - "modified": "2022-04-07 10:18:01.572897", + "modified": "2019-11-24 17:48:12.165059", "module": null, - "name": "Help Category-route-read_only", - "property": "read_only", + "name": "Purchase Order-payment_schedule-print_hide", + "property": "print_hide", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Help Article", + "doc_type": "Purchase Order", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "route", + "field_name": "base_rounded_total", "is_system_generated": 0, - "modified": "2022-04-07 11:58:04.796692", + "modified": "2020-03-31 08:03:02.121521", "module": null, - "name": "Help Article-route-read_only", - "property": "read_only", + "name": "Purchase Order-base_rounded_total-hidden", + "property": "hidden", + "property_type": "Check", + "row_name": null, + "value": "0" + }, + { + "default_value": null, + "doc_type": "Purchase Order", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "base_rounded_total", + "is_system_generated": 0, + "modified": "2020-03-31 08:03:02.275988", + "module": null, + "name": "Purchase Order-base_rounded_total-print_hide", + "property": "print_hide", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Project", + "doc_type": "Purchase Order", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "rounded_total", "is_system_generated": 0, - "modified": "2022-04-25 11:55:24.606561", + "modified": "2020-03-31 08:03:02.426792", "module": null, - "name": "Project-main-autoname", - "property": "autoname", - "property_type": "Data", + "name": "Purchase Order-rounded_total-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "field:project_name" + "value": "0" }, { "default_value": null, - "doc_type": "Project", + "doc_type": "Purchase Order", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "rounded_total", "is_system_generated": 0, - "modified": "2022-04-25 11:55:24.908504", + "modified": "2020-03-31 08:03:02.578790", "module": null, - "name": "Project-naming_series-default", - "property": "default", - "property_type": "Text", + "name": "Purchase Order-rounded_total-print_hide", + "property": "print_hide", + "property_type": "Check", "row_name": null, - "value": "PROJ-.####" + "value": "0" }, { "default_value": null, - "doc_type": "Shift Type", + "doc_type": "Purchase Order", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "in_words", "is_system_generated": 0, - "modified": "2022-05-17 12:30:02.342601", + "modified": "2020-03-31 08:03:05.096644", "module": null, - "name": "Shift Type-main-autoname", - "property": "autoname", - "property_type": "Data", + "name": "Purchase Order-in_words-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "" + "value": "0" }, { "default_value": null, - "doc_type": "Timesheet", + "doc_type": "Purchase Order", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "parent_project", + "field_name": "in_words", "is_system_generated": 0, - "modified": "2022-10-25 14:57:07.606108", + "modified": "2020-03-31 08:03:05.247413", "module": null, - "name": "Timesheet-parent_project-fetch_from", - "property": "fetch_from", - "property_type": "Small Text", + "name": "Purchase Order-in_words-print_hide", + "property": "print_hide", + "property_type": "Check", "row_name": null, - "value": "employee.project" + "value": "0" }, { "default_value": null, - "doc_type": "Timesheet Detail", + "doc_type": "Purchase Receipt", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "billing_rate", + "field_name": "in_words", "is_system_generated": 0, - "modified": "2020-10-28 11:35:24.333938", + "modified": "2020-03-31 08:03:05.751536", "module": null, - "name": "Timesheet Detail-billing_rate-precision", - "property": "precision", - "property_type": "Select", + "name": "Purchase Receipt-in_words-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "3" + "value": "0" }, { "default_value": null, - "doc_type": "Timesheet Detail", + "doc_type": "Purchase Receipt", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "billing_amount", + "field_name": "in_words", "is_system_generated": 0, - "modified": "2020-10-28 11:35:24.428229", + "modified": "2020-03-31 08:03:05.892364", "module": null, - "name": "Timesheet Detail-billing_amount-precision", - "property": "precision", - "property_type": "Select", + "name": "Purchase Receipt-in_words-print_hide", + "property": "print_hide", + "property_type": "Check", "row_name": null, - "value": "3" + "value": "0" }, { "default_value": null, - "doc_type": "Budget", + "doc_type": "Purchase Order", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "scan_barcode", "is_system_generated": 0, - "modified": "2020-05-20 17:48:25.828961", + "modified": "2020-05-06 10:57:13.810176", "module": null, - "name": "Budget-quick_entry", - "property": "quick_entry", + "name": "Purchase Order-scan_barcode-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Budget", + "doc_type": "Purchase Receipt", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "budget_against", + "field_name": "scan_barcode", "is_system_generated": 0, - "modified": "2019-12-23 08:49:17.550063", + "modified": "2020-05-06 10:57:14.707959", "module": null, - "name": "Budget-budget_against-options", - "property": "options", - "property_type": "Text", + "name": "Purchase Receipt-scan_barcode-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "\nCost Center\nProject\n" + "value": "1" }, { "default_value": null, - "doc_type": "Timesheet", + "doc_type": "Vehicle", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocType", "field_name": null, "is_system_generated": 0, - "modified": "2023-01-03 14:14:44.478736", + "modified": "2021-01-12 10:16:31.208534", "module": null, - "name": "Timesheet-main-naming_rule", - "property": "naming_rule", - "property_type": "Data", + "name": "Vehicle-quick_entry", + "property": "quick_entry", + "property_type": "Check", "row_name": null, - "value": "Expression" + "value": "0" }, { "default_value": null, - "doc_type": "Timesheet", + "doc_type": "Vehicle", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocType", "field_name": null, "is_system_generated": 0, - "modified": "2023-01-03 14:14:44.718895", + "modified": "2021-01-12 10:56:38.094962", + "module": null, + "name": "Vehicle-image_field", + "property": "image_field", + "property_type": "Data", + "row_name": null, + "value": "image" + }, + { + "default_value": null, + "doc_type": "Purchase Order", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "naming_series", + "is_system_generated": 0, + "modified": "2021-01-31 18:32:50.536379", + "module": null, + "name": "Purchase Order-naming_series-options", + "property": "options", + "property_type": "Text", + "row_name": null, + "value": "PUR-ORD-.YYYY.-\nPOR-.YYYY.-.######" + }, + { + "default_value": null, + "doc_type": "Purchase Order", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "naming_series", + "is_system_generated": 0, + "modified": "2021-01-31 18:34:27.526717", + "module": null, + "name": "Purchase Order-naming_series-default", + "property": "default", + "property_type": "Text", + "row_name": null, + "value": "POR-.YYYY.-.######" + }, + { + "default_value": null, + "doc_type": "Item", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "description", + "is_system_generated": 0, + "modified": "2021-01-31 19:23:05.503355", "module": null, - "name": "Timesheet-main-autoname", - "property": "autoname", - "property_type": "Data", + "name": "Item-description-in_list_view", + "property": "in_list_view", + "property_type": "Check", "row_name": null, - "value": "format:TMS-{YYYY}-{MM}-{DD}-{###}" + "value": "1" }, { "default_value": null, - "doc_type": "Timesheet", + "doc_type": "Purchase Receipt", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", "field_name": "naming_series", "is_system_generated": 0, - "modified": "2023-01-03 22:39:57.026707", + "modified": "2021-02-02 09:52:00.352557", "module": null, - "name": "Timesheet-naming_series-default", - "property": "default", + "name": "Purchase Receipt-naming_series-options", + "property": "options", "property_type": "Text", "row_name": null, - "value": "TS-.YYYY.-" + "value": "MAT-PRE-.YYYY.-\nPRC-.YYYY.-.######" }, { "default_value": null, - "doc_type": "Shift Type", + "doc_type": "Purchase Receipt", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "early_exit_grace_period", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2023-01-10 18:55:36.207658", + "modified": "2021-02-02 09:52:00.454883", "module": null, - "name": "Shift Type-early_exit_grace_period-default", + "name": "Purchase Receipt-naming_series-default", "property": "default", "property_type": "Text", "row_name": null, - "value": "0" + "value": "PRC-.YYYY.-.######" }, { "default_value": null, - "doc_type": "Attendance Request", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "reason", + "field_name": "disabled", "is_system_generated": 0, - "modified": "2022-05-25 11:06:50.999897", + "modified": "2020-05-21 18:14:27.239874", "module": null, - "name": "Attendance Request-reason-in_list_view", - "property": "in_list_view", + "name": "Supplier-disabled-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Attendance Request", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "employee_name", + "field_name": "default_bank_account", "is_system_generated": 0, - "modified": "2022-05-25 11:06:51.034604", + "modified": "2020-05-21 18:17:12.512062", "module": null, - "name": "Attendance Request-employee_name-in_list_view", - "property": "in_list_view", + "name": "Supplier-default_bank_account-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Attendance Request", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "employee", + "field_name": "tax_id", "is_system_generated": 0, - "modified": "2022-05-25 11:06:51.042055", + "modified": "2020-05-21 18:17:12.529616", "module": null, - "name": "Attendance Request-employee-in_list_view", - "property": "in_list_view", + "name": "Supplier-tax_id-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Attendance Request", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "from_date", + "field_name": "tax_category", "is_system_generated": 0, - "modified": "2022-05-25 11:06:51.049074", + "modified": "2020-05-21 18:17:12.540210", "module": null, - "name": "Attendance Request-from_date-in_list_view", - "property": "in_list_view", + "name": "Supplier-tax_category-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Attendance Request", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "to_date", + "field_name": "tax_withholding_category", "is_system_generated": 0, - "modified": "2022-05-25 11:06:51.056162", + "modified": "2020-05-21 18:17:12.549434", "module": null, - "name": "Attendance Request-to_date-in_list_view", - "property": "in_list_view", + "name": "Supplier-tax_withholding_category-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Attendance Request", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "workflow_state", + "field_name": "is_transporter", "is_system_generated": 0, - "modified": "2022-05-25 11:06:51.062882", + "modified": "2020-05-21 18:17:12.558701", "module": null, - "name": "Attendance Request-workflow_state-in_list_view", - "property": "in_list_view", + "name": "Supplier-is_transporter-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Attendance Request", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "explanation", + "field_name": "is_internal_supplier", "is_system_generated": 0, - "modified": "2023-02-11 23:31:05.168275", + "modified": "2020-05-21 18:17:12.568531", "module": null, - "name": "Attendance Request-explanation-reqd", - "property": "reqd", + "name": "Supplier-is_internal_supplier-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "represents_company", "is_system_generated": 0, - "modified": "2023-02-13 16:10:38.483128", + "modified": "2020-05-21 18:17:12.577718", "module": null, - "name": "Employee-main-search_fields", - "property": "search_fields", - "property_type": "Data", + "name": "Supplier-represents_company-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "employee_name, employee_id" + "value": "1" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", - "is_system_generated": 1, - "modified": "2020-05-02 09:04:17.802419", + "field_name": "supplier_group", + "is_system_generated": 0, + "modified": "2020-05-21 18:19:20.035165", "module": null, - "name": "Employee-naming_series-options", - "property": "options", - "property_type": "Text", + "name": "Supplier-supplier_group-label", + "property": "label", + "property_type": "Data", "row_name": null, - "value": "HR-EMP-" + "value": "Category" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "middle_name", - "is_system_generated": 1, - "modified": "2020-08-15 11:45:26.747610", + "field_name": "pan", + "is_system_generated": 0, + "modified": "2020-05-21 18:22:59.349434", "module": null, - "name": "Employee-middle_name-label", - "property": "label", - "property_type": "Data", + "name": "Supplier-pan-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "Second Name" + "value": "1" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "status", - "is_system_generated": 1, - "modified": "2021-10-06 10:06:01.372386", + "field_name": "language", + "is_system_generated": 0, + "modified": "2020-05-21 18:22:59.370579", "module": null, - "name": "Employee-status-options", - "property": "options", - "property_type": "Text", + "name": "Supplier-language-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "\nActive\nCourt Case\nAbsconding\nLeft\nVacation" + "value": "1" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "bank_name", - "is_system_generated": 1, - "modified": "2021-12-21 08:43:22.815577", + "field_name": "allow_purchase_invoice_creation_without_purchase_order", + "is_system_generated": 0, + "modified": "2020-05-21 18:22:59.380416", "module": null, - "name": "Employee-bank_name-hidden", + "name": "Supplier-allow_purchase_invoice_creation_without_purchase_order-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -1473,15 +1921,15 @@ }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "bank_ac_no", - "is_system_generated": 1, - "modified": "2021-12-21 08:43:23.418516", + "field_name": "allow_purchase_invoice_creation_without_purchase_receipt", + "is_system_generated": 0, + "modified": "2020-05-21 18:22:59.389628", "module": null, - "name": "Employee-bank_ac_no-hidden", + "name": "Supplier-allow_purchase_invoice_creation_without_purchase_receipt-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -1489,31 +1937,31 @@ }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "last_name", - "is_system_generated": 1, - "modified": "2022-04-17 14:37:43.176128", + "field_name": "warn_rfqs", + "is_system_generated": 0, + "modified": "2020-05-21 18:22:59.400915", "module": null, - "name": "Employee-last_name-reqd", - "property": "reqd", + "name": "Supplier-warn_rfqs-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "final_confirmation_date", - "is_system_generated": 1, - "modified": "2022-04-17 14:37:43.636920", + "field_name": "warn_pos", + "is_system_generated": 0, + "modified": "2020-05-21 18:22:59.409961", "module": null, - "name": "Employee-final_confirmation_date-hidden", + "name": "Supplier-warn_pos-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -1521,15 +1969,15 @@ }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "date_of_retirement", - "is_system_generated": 1, - "modified": "2022-04-17 14:37:43.776600", + "field_name": "prevent_rfqs", + "is_system_generated": 0, + "modified": "2020-05-21 18:22:59.418888", "module": null, - "name": "Employee-date_of_retirement-hidden", + "name": "Supplier-prevent_rfqs-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -1537,15 +1985,15 @@ }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "approvers_section", - "is_system_generated": 1, - "modified": "2022-04-17 14:37:43.915200", + "field_name": "prevent_pos", + "is_system_generated": 0, + "modified": "2020-05-21 18:22:59.427703", "module": null, - "name": "Employee-approvers_section-hidden", + "name": "Supplier-prevent_pos-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -1553,15 +2001,15 @@ }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "payroll_cost_center", - "is_system_generated": 1, - "modified": "2022-04-17 14:37:44.184515", + "field_name": "allowed_to_transact_section", + "is_system_generated": 0, + "modified": "2020-05-21 18:22:59.438834", "module": null, - "name": "Employee-payroll_cost_center-hidden", + "name": "Supplier-allowed_to_transact_section-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -1569,15 +2017,15 @@ }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "attendance_device_id", - "is_system_generated": 1, - "modified": "2022-04-23 18:56:07.690995", + "field_name": "section_credit_limit", + "is_system_generated": 0, + "modified": "2020-05-21 18:32:39.807236", "module": null, - "name": "Employee-attendance_device_id-hidden", + "name": "Supplier-section_credit_limit-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -1585,527 +2033,527 @@ }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "department", + "field_name": "default_payable_accounts", "is_system_generated": 0, - "modified": "2020-02-25 12:43:20.816164", + "modified": "2020-05-21 18:32:39.826596", "module": null, - "name": "Employee-department-reqd", - "property": "reqd", + "name": "Supplier-default_payable_accounts-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Purchase Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "due_date", "is_system_generated": 0, - "modified": "2020-07-21 09:31:11.476383", + "modified": "2019-11-24 17:48:12.401098", "module": null, - "name": "Employee-naming_series-hidden", - "property": "hidden", + "name": "Purchase Invoice-due_date-print_hide", + "property": "print_hide", "property_type": "Check", "row_name": null, "value": "0" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Purchase Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "payment_schedule", "is_system_generated": 0, - "modified": "2020-07-21 09:31:11.848503", + "modified": "2019-11-24 17:48:12.678900", "module": null, - "name": "Employee-naming_series-reqd", - "property": "reqd", + "name": "Purchase Invoice-payment_schedule-print_hide", + "property": "print_hide", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Purchase Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "employee_number", + "field_name": "cost_center", "is_system_generated": 0, - "modified": "2020-07-21 09:31:12.130141", + "modified": "2019-11-24 17:48:13.301192", "module": null, - "name": "Employee-employee_number-reqd", - "property": "reqd", + "name": "Purchase Invoice-cost_center-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Purchase Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "employee_number", + "field_name": "base_rounded_total", "is_system_generated": 0, - "modified": "2020-07-21 09:31:12.318118", + "modified": "2020-03-31 08:03:02.735812", "module": null, - "name": "Employee-employee_number-hidden", + "name": "Purchase Invoice-base_rounded_total-hidden", "property": "hidden", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Purchase Invoice", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "base_rounded_total", "is_system_generated": 0, - "modified": "2022-10-27 10:26:39.196418", + "modified": "2020-03-31 08:03:02.911039", "module": null, - "name": "Employee-main-track_changes", - "property": "track_changes", + "name": "Purchase Invoice-base_rounded_total-print_hide", + "property": "print_hide", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Purchase Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "marital_status", + "field_name": "rounded_total", "is_system_generated": 0, - "modified": "2022-12-29 09:14:23.119145", + "modified": "2020-03-31 08:03:03.094452", "module": null, - "name": "Employee-marital_status-options", - "property": "options", - "property_type": "select", + "name": "Purchase Invoice-rounded_total-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "Unmarried\nMarried\nWidow\nDivorce\nUnknown" + "value": "0" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Purchase Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "column_break1", + "field_name": "rounded_total", "is_system_generated": 0, - "modified": "2023-02-13 05:54:10.227158", + "modified": "2020-03-31 08:03:03.269385", "module": null, - "name": "Employee-column_break1-hidden", - "property": "hidden", + "name": "Purchase Invoice-rounded_total-print_hide", + "property": "print_hide", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Purchase Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "branch", + "field_name": "in_words", "is_system_generated": 0, - "modified": "2023-02-19 14:50:29.202987", + "modified": "2020-03-31 08:03:05.398875", "module": null, - "name": "Employee-branch-hidden", + "name": "Purchase Invoice-in_words-hidden", "property": "hidden", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Purchase Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "holiday_list", + "field_name": "in_words", "is_system_generated": 0, - "modified": "2023-03-26 14:14:09.610883", + "modified": "2020-03-31 08:03:05.573054", "module": null, - "name": "Employee-holiday_list-mandatory_depends_on", - "property": "mandatory_depends_on", - "property_type": "Data", + "name": "Purchase Invoice-in_words-print_hide", + "property": "print_hide", + "property_type": "Check", "row_name": null, - "value": "eval:doc.shift_working==0 && !doc.attendance_by_timesheet" + "value": "0" }, { "default_value": null, - "doc_type": "Project Type", + "doc_type": "Purchase Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "project_type", + "field_name": "scan_barcode", "is_system_generated": 0, - "modified": "2023-04-25 11:48:17.214273", + "modified": "2020-05-06 10:57:14.062014", "module": null, - "name": "Project Type-project_type-unique", - "property": "unique", + "name": "Purchase Invoice-scan_barcode-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Task", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2023-04-25 15:29:03.831602", + "modified": "2021-02-03 20:22:37.493813", "module": null, - "name": "Task-main-allow_auto_repeat", - "property": "allow_auto_repeat", + "name": "Supplier-naming_series-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Task", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2022-12-21 09:43:41.075552", + "modified": "2021-02-03 20:22:37.764962", "module": null, - "name": "Task-main-sender_field", - "property": "sender_field", - "property_type": "Data", + "name": "Supplier-naming_series-reqd", + "property": "reqd", + "property_type": "Check", "row_name": null, - "value": "email_sender" + "value": "1" }, { "default_value": null, - "doc_type": "Task", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "basic_info", "is_system_generated": 0, - "modified": "2022-12-21 09:51:24.035672", + "modified": "2021-02-03 21:33:49.374970", "module": null, - "name": "Task-main-email_append_to", - "property": "email_append_to", + "name": "Supplier-basic_info-read_only", + "property": "read_only", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Task", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2022-12-21 09:51:24.183491", + "modified": "2021-02-03 21:34:07.885089", "module": null, - "name": "Task-main-subject_field", - "property": "subject_field", - "property_type": "Data", + "name": "Supplier-naming_series-read_only", + "property": "read_only", + "property_type": "Check", "row_name": null, - "value": "subject" + "value": "1" }, { "default_value": null, - "doc_type": "Task", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "type", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2023-04-30 14:08:24.616089", + "modified": "2021-02-03 21:41:34.134550", "module": null, - "name": "Task-type-allow_in_quick_entry", - "property": "allow_in_quick_entry", - "property_type": "Check", + "name": "Supplier-naming_series-options", + "property": "options", + "property_type": "Text", "row_name": null, - "value": "1" + "value": "SUB-.######\nSUP-.######" }, { "default_value": null, - "doc_type": "Employee", + "doc_type": "Supplier", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "reports_to", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2023-04-30 17:47:28.321699", + "modified": "2021-02-03 21:48:49.204335", "module": null, - "name": "Employee-reports_to-mandatory_depends_on", - "property": "mandatory_depends_on", - "property_type": "Data", + "name": "Supplier-naming_series-default", + "property": "default", + "property_type": "Text", "row_name": null, - "value": "" + "value": "SUP-.######" }, { "default_value": null, - "doc_type": "Project", + "doc_type": "Purchase Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "customer", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2023-05-24 16:32:53.425254", + "modified": "2021-02-06 07:49:32.224666", "module": null, - "name": "Project-customer-depends_on", - "property": "depends_on", - "property_type": "Data", + "name": "Purchase Invoice-naming_series-options", + "property": "options", + "property_type": "Text", "row_name": null, - "value": "" + "value": "ACC-PINV-.YYYY.-\nPIN-.YYYY.-.######" }, { "default_value": null, - "doc_type": "Project", + "doc_type": "Purchase Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "customer", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2023-05-24 16:38:39.362975", + "modified": "2021-02-06 07:49:32.373043", "module": null, - "name": "Project-customer-mandatory_depends_on", - "property": "mandatory_depends_on", - "property_type": "Data", + "name": "Purchase Invoice-naming_series-default", + "property": "default", + "property_type": "Text", "row_name": null, - "value": "eval:doc.project_type == 'External'" + "value": "PIN-.YYYY.-.######" }, { "default_value": null, "doc_type": "Job Offer", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "letter_head", "is_system_generated": 0, - "modified": "2021-02-17 11:53:55.696737", + "modified": "2021-02-17 13:15:42.396129", "module": null, - "name": "Job Offer-default_print_format", - "property": "default_print_format", - "property_type": "Data", + "name": "Job Offer-letter_head-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": "One FM Job Offer" + "value": "" }, { "default_value": null, - "doc_type": "Job Offer", + "doc_type": "Journal Entry Account", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "letter_head", + "field_name": "reference_type", "is_system_generated": 0, - "modified": "2021-02-17 11:53:56.220272", + "modified": "2021-02-28 18:50:24.217317", "module": null, - "name": "Job Offer-letter_head-default", - "property": "default", + "name": "Journal Entry Account-reference_type-options", + "property": "options", "property_type": "Text", "row_name": null, - "value": "ONE FM - Job Offer" + "value": "\nSales Invoice\nPurchase Invoice\nJournal Entry\nSales Order\nPurchase Order\nExpense Claim\nAsset\nLoan\nPayroll Entry\nEmployee Advance\nExchange Rate Revaluation\nInvoice Discounting\nRecruitment Trip Request" }, { "default_value": null, - "doc_type": "Timesheet", + "doc_type": "Employee Advance", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "advance_account", "is_system_generated": 0, - "modified": "2023-06-10 17:41:12.583953", + "modified": "2021-03-01 15:29:42.124409", "module": null, - "name": "Timesheet-main-links_order", - "property": "links_order", - "property_type": "Small Text", + "name": "Employee Advance-advance_account-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, - "value": "[\"38e508964c\"]" + "value": "1" }, { "default_value": null, - "doc_type": "Job Offer", + "doc_type": "Employee Advance", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "status", + "field_name": "mode_of_payment", "is_system_generated": 0, - "modified": "2023-06-11 06:19:21.496984", + "modified": "2021-03-01 15:29:42.206576", "module": null, - "name": "Job Offer-status-read_only", - "property": "read_only", - "property_type": "Check", + "name": "Employee Advance-mode_of_payment-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Stock Entry Detail", + "doc_type": "Employee Advance", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "barcode", + "field_name": "repay_unclaimed_amount_from_salary", "is_system_generated": 0, - "modified": "2020-05-06 10:57:12.098787", + "modified": "2021-03-01 15:29:42.278027", "module": null, - "name": "Stock Entry Detail-barcode-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Employee Advance-repay_unclaimed_amount_from_salary-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Stock Entry Detail", + "doc_type": "Expense Claim", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "s_warehouse", + "field_name": "approval_status", "is_system_generated": 0, - "modified": "2023-08-15 11:41:14.214462", + "modified": "2021-03-01 16:12:07.542512", "module": null, - "name": "Stock Entry Detail-s_warehouse-ignore_user_permissions", - "property": "ignore_user_permissions", - "property_type": "Check", + "name": "Expense Claim-approval_status-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Stock Entry Detail", + "doc_type": "Expense Claim", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "t_warehouse", + "field_name": "is_paid", "is_system_generated": 0, - "modified": "2023-08-15 11:41:14.506432", + "modified": "2021-03-01 16:12:07.618688", "module": null, - "name": "Stock Entry Detail-t_warehouse-ignore_user_permissions", - "property": "ignore_user_permissions", - "property_type": "Check", + "name": "Expense Claim-is_paid-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Stock Entry", + "doc_type": "Expense Claim", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "from_warehouse", + "field_name": "mode_of_payment", "is_system_generated": 0, - "modified": "2023-08-15 11:48:06.695070", + "modified": "2021-03-01 16:12:07.645444", "module": null, - "name": "Stock Entry-from_warehouse-ignore_user_permissions", - "property": "ignore_user_permissions", - "property_type": "Check", + "name": "Expense Claim-mode_of_payment-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Stock Entry", + "doc_type": "Expense Claim", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "to_warehouse", + "field_name": "payable_account", "is_system_generated": 0, - "modified": "2023-08-15 11:48:06.914828", + "modified": "2021-03-01 16:12:07.691668", "module": null, - "name": "Stock Entry-to_warehouse-ignore_user_permissions", - "property": "ignore_user_permissions", - "property_type": "Check", + "name": "Expense Claim-payable_account-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Job Offer", + "doc_type": "Expense Claim", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "advances", "is_system_generated": 0, - "modified": "2023-08-18 10:49:55.579542", + "modified": "2021-03-01 16:12:07.719987", "module": null, - "name": "Job Offer-main-track_changes", - "property": "track_changes", - "property_type": "Check", + "name": "Expense Claim-advances-permlevel", + "property": "permlevel", + "property_type": "Int", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Job Offer", + "doc_type": "Customer", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "job_applicant", + "field_name": "customer_name", "is_system_generated": 0, - "modified": "2023-08-18 10:49:55.753140", + "modified": "2020-05-12 15:27:51.059690", "module": null, - "name": "Job Offer-job_applicant-read_only", - "property": "read_only", + "name": "Customer-customer_name-translatable", + "property": "translatable", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Stock Entry", + "doc_type": "Customer", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", "field_name": "naming_series", "is_system_generated": 0, - "modified": "2022-11-02 00:56:53.407196", + "modified": "2020-05-06 10:12:37.049477", "module": null, - "name": "Stock Entry-naming_series-options", + "name": "Customer-naming_series-options", "property": "options", "property_type": "Text", "row_name": null, - "value": "MAT-STE-.YYYY.-" + "value": "CUST-.YYYY.-" }, { "default_value": null, - "doc_type": "Stock Entry", + "doc_type": "Customer", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "scan_barcode", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2020-05-06 10:57:13.593165", + "modified": "2020-03-31 08:02:56.986390", "module": null, - "name": "Stock Entry-scan_barcode-hidden", - "property": "hidden", + "name": "Customer-naming_series-reqd", + "property": "reqd", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Stock Entry", + "doc_type": "Customer", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "set_posting_time", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2020-05-22 16:38:48.286367", + "modified": "2020-03-31 08:02:57.102560", "module": null, - "name": "Stock Entry-set_posting_time-hidden", + "name": "Customer-naming_series-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -2113,95 +2561,111 @@ }, { "default_value": null, - "doc_type": "Stock Entry", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "inspection_required", + "field_name": "tax_id", "is_system_generated": 0, - "modified": "2020-05-22 16:38:48.400707", + "modified": "2021-06-24 00:07:26.924771", "module": null, - "name": "Stock Entry-inspection_required-hidden", + "name": "Sales Invoice-tax_id-hidden", "property": "hidden", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Stock Entry", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "get_stock_and_rate", + "field_name": "tax_id", "is_system_generated": 0, - "modified": "2020-05-22 16:38:48.413799", + "modified": "2021-06-24 00:07:27.443143", "module": null, - "name": "Stock Entry-get_stock_and_rate-hidden", - "property": "hidden", + "name": "Sales Invoice-tax_id-print_hide", + "property": "print_hide", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Stock Entry", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "printing_settings", + "field_name": "tax_id", "is_system_generated": 0, - "modified": "2020-05-22 16:38:48.436694", + "modified": "2021-06-24 00:07:27.922600", "module": null, - "name": "Stock Entry-printing_settings-hidden", + "name": "Delivery Note-tax_id-hidden", "property": "hidden", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Stock Entry", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "from_bom", + "field_name": "tax_id", "is_system_generated": 0, - "modified": "2020-05-22 16:49:19.894767", + "modified": "2021-06-24 00:07:28.342965", "module": null, - "name": "Stock Entry-from_bom-hidden", - "property": "hidden", + "name": "Delivery Note-tax_id-print_hide", + "property": "print_hide", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Warehouse", + "doc_type": "Job Applicant", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "warehouse_contact_info", + "field_name": "status", "is_system_generated": 0, - "modified": "2023-09-04 14:28:41.149547", + "modified": "2021-07-13 13:44:29.852626", "module": null, - "name": "Warehouse-warehouse_contact_info-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Job Applicant-status-options", + "property": "options", + "property_type": "Text", "row_name": null, - "value": "1" + "value": "Open\nReplied\nRejected\nHold\nAccepted" }, { "default_value": null, - "doc_type": "Warehouse", + "doc_type": "Issue", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "transit_section", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2023-09-04 14:28:41.316338", + "modified": "2021-07-19 19:21:05.024303", "module": null, - "name": "Warehouse-transit_section-hidden", + "name": "Issue-naming_series-options", + "property": "options", + "property_type": "Text", + "row_name": null, + "value": "ISS-.YYYY.-" + }, + { + "default_value": null, + "doc_type": "Job Applicant", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "phone_number", + "is_system_generated": 0, + "modified": "2021-08-30 14:47:06.768715", + "module": null, + "name": "Job Applicant-phone_number-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -2209,111 +2673,111 @@ }, { "default_value": null, - "doc_type": "Warehouse", + "doc_type": "Gender", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "column_break_3", + "field_name": "gender", "is_system_generated": 0, - "modified": "2023-09-04 14:31:59.831346", + "modified": "2021-09-01 08:18:04.100898", "module": null, - "name": "Warehouse-column_break_3-collapsible", - "property": "collapsible", + "name": "Gender-gender-unique", + "property": "unique", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Warehouse", + "doc_type": "Gender", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "column_break_3", + "field_name": "gender", "is_system_generated": 0, - "modified": "2023-09-04 14:32:32.017373", + "modified": "2021-09-01 08:20:16.422005", "module": null, - "name": "Warehouse-column_break_3-label", + "name": "Gender-gender-label", "property": "label", "property_type": "Data", "row_name": null, - "value": "Account and Cost Center" + "value": "Gender (ENGLISH)" }, { "default_value": null, - "doc_type": "Stock Entry", + "doc_type": "Gender", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "project", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2023-09-05 11:24:05.200019", - "module": null, - "name": "Stock Entry-project-fetch_from", - "property": "fetch_from", - "property_type": "Small Text", + "modified": "2021-09-01 08:20:27.618815", + "module": null, + "name": "Gender-main-quick_entry", + "property": "quick_entry", + "property_type": "Check", "row_name": null, - "value": "from_warehouse.one_fm_project" + "value": "1" }, { "default_value": null, - "doc_type": "Stock Entry", + "doc_type": "Issue", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "project", + "field_name": "issue_type", "is_system_generated": 0, - "modified": "2023-09-05 11:24:05.530860", + "modified": "2021-10-24 14:59:26.607953", "module": null, - "name": "Stock Entry-project-fetch_if_empty", - "property": "fetch_if_empty", + "name": "Issue-issue_type-reqd", + "property": "reqd", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Stock Entry", + "doc_type": "Issue", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "project", + "field_name": "issue_type", "is_system_generated": 0, - "modified": "2023-09-05 11:24:05.655088", + "modified": "2021-10-24 14:59:26.668193", "module": null, - "name": "Stock Entry-project-read_only", - "property": "read_only", + "name": "Issue-issue_type-allow_in_quick_entry", + "property": "allow_in_quick_entry", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Stock Entry Detail", + "doc_type": "Notification Log", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "description", + "field_name": "open_reference_document", "is_system_generated": 0, - "modified": "2023-09-16 11:51:24.068361", + "modified": "2021-10-28 16:59:00.206716", "module": null, - "name": "Stock Entry Detail-description-read_only", - "property": "read_only", - "property_type": "Check", + "name": "Notification Log-open_reference_document-depends_on", + "property": "depends_on", + "property_type": "Data", "row_name": null, - "value": "1" + "value": "eval:doc.check_baled" }, { "default_value": null, - "doc_type": "Stock Entry Detail", + "doc_type": "Employee Incentive", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "uom", + "field_name": "company", "is_system_generated": 0, - "modified": "2023-09-16 11:51:24.287953", + "modified": "2021-11-11 20:22:04.164327", "module": null, - "name": "Stock Entry Detail-uom-read_only", + "name": "Employee Incentive-company-read_only", "property": "read_only", "property_type": "Check", "row_name": null, @@ -2321,147 +2785,147 @@ }, { "default_value": null, - "doc_type": "Stock Entry Detail", + "doc_type": "Salary Slip", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "basic_rate", + "field_name": "rounded_total", "is_system_generated": 0, - "modified": "2023-09-16 11:51:24.408309", + "modified": "2020-07-21 09:31:12.520260", "module": null, - "name": "Stock Entry Detail-basic_rate-read_only", - "property": "read_only", + "name": "Salary Slip-rounded_total-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Shift Request", + "doc_type": "Salary Slip", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "shift_type", + "field_name": "rounded_total", "is_system_generated": 0, - "modified": "2023-09-26 11:36:24.663762", + "modified": "2020-07-21 09:31:12.687945", "module": null, - "name": "Shift Request-shift_type-fetch_if_empty", - "property": "fetch_if_empty", + "name": "Salary Slip-rounded_total-print_hide", + "property": "print_hide", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Shift Request", + "doc_type": "Packed Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "shift_type", + "field_name": "rate", "is_system_generated": 0, - "modified": "2023-09-26 11:36:24.794290", + "modified": "2021-12-29 12:49:37.965635", "module": null, - "name": "Shift Request-shift_type-depends_on", - "property": "depends_on", - "property_type": "Data", + "name": "Packed Item-rate-read_only", + "property": "read_only", + "property_type": "Check", "row_name": null, - "value": "eval:doc.operations_shift" + "value": "1" }, { "default_value": null, - "doc_type": "Shift Request", + "doc_type": "Shift Type", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocType", "field_name": null, "is_system_generated": 0, - "modified": "2023-09-26 11:52:33.219921", + "modified": "2020-06-08 12:08:35.952797", "module": null, - "name": "Shift Request-main-links_order", - "property": "links_order", - "property_type": "Small Text", + "name": "Shift Type-quick_entry", + "property": "quick_entry", + "property_type": "Check", "row_name": null, - "value": "[\"b494321b08\"]" + "value": "0" }, { "default_value": null, - "doc_type": "Interview", + "doc_type": "Shift Type", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "from_time", + "field_name": "start_time", "is_system_generated": 0, - "modified": "2022-08-02 10:05:36.621699", + "modified": "2020-05-12 21:59:48.065967", "module": null, - "name": "Interview-from_time-set_only_once", - "property": "set_only_once", - "property_type": "0", + "name": "Shift Type-start_time-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": null + "value": "" }, { "default_value": null, - "doc_type": "Interview", + "doc_type": "Shift Type", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "to_time", + "field_name": "end_time", "is_system_generated": 0, - "modified": "2022-08-02 10:06:25.612587", + "modified": "2020-05-12 21:59:48.509959", "module": null, - "name": "Interview-to_time-set_only_once", - "property": "set_only_once", - "property_type": "0", + "name": "Shift Type-end_time-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": null + "value": "" }, { "default_value": null, - "doc_type": "Attendance Check", + "doc_type": "Shift Type", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocType", "field_name": null, "is_system_generated": 0, - "modified": "2023-10-31 09:59:13.428664", + "modified": "2020-05-13 15:02:21.676828", "module": null, - "name": "Attendance Check-main-field_order", - "property": "field_order", + "name": "Shift Type-search_fields", + "property": "search_fields", "property_type": "Data", "row_name": null, - "value": "[\"workflow_state\", \"employee\", \"employee_name\", \"department\", \"roster_type\", \"column_break_1\", \"date\", \"reports_to\", \"reports_to_user\", \"report_to_name\", \"site_supervisor\", \"site_supervisor_name\", \"site_supervisor_user\", \"shift_supervisor\", \"shift_supervisor_name\", \"shift_supervisor_user\", \"justification_section\", \"attendance_status\", \"justification\", \"column_break_wtkg0\", \"mobile_brand\", \"mobile_model\", \"screenshot\", \"employee_checkin_details_section\", \"has_checkin_record\", \"has_checkout_record\", \"section_break_o6yav\", \"checkin_record\", \"column_break_k9wny\", \"checkout_record\", \"shift_assignment_details_section\", \"has_shift_assignment\", \"section_break_nirwm\", \"shift_assignment\", \"column_break_2\", \"start_time\", \"column_break_3\", \"end_time\", \"section_break_pidnl\", \"has_shift_pemission\", \"shift_permission\", \"attendance_details_section\", \"attendance_marked\", \"section_break_qe614\", \"attendance\", \"attendance_comment\", \"column_break_ujiag\", \"marked_attendance_status\", \"section_break_xzkb1\", \"has_attendance_request\", \"attendance_request\", \"comment\", \"amended_from\"]" + "value": "start_time, end_time, duration" }, { "default_value": null, - "doc_type": "Sales Invoice", + "doc_type": "Timesheet", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", "field_name": "naming_series", "is_system_generated": 0, - "modified": "2020-06-21 21:34:40.874089", + "modified": "2020-06-16 18:43:31.267766", "module": null, - "name": "Sales Invoice-naming_series-options", + "name": "Timesheet-naming_series-options", "property": "options", "property_type": "Text", "row_name": null, - "value": "ACC-SINV-.YYYY.-" + "value": "TS-.YYYY.-" }, { "default_value": null, - "doc_type": "Purchase Order", + "doc_type": "Delivery Note", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "is_subcontracted", + "field_name": "project", "is_system_generated": 0, - "modified": "2020-06-29 10:26:18.634588", + "modified": "2022-02-01 12:12:38.361549", "module": null, - "name": "Purchase Order-is_subcontracted-in_standard_filter", - "property": "in_standard_filter", - "property_type": "Check", + "name": "Delivery Note-project-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": "0" + "value": "contracts.project" }, { "default_value": null, @@ -2469,379 +2933,411 @@ "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "base_rounded_total", + "field_name": "project", "is_system_generated": 0, - "modified": "2020-03-31 08:03:00.847395", + "modified": "2022-02-01 12:12:38.663408", "module": null, - "name": "Delivery Note-base_rounded_total-hidden", - "property": "hidden", + "name": "Delivery Note-project-fetch_if_empty", + "property": "fetch_if_empty", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Warehouse", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "base_rounded_total", + "field_name": "disabled", "is_system_generated": 0, - "modified": "2020-03-31 08:03:01.008948", + "modified": "2022-02-07 15:00:29.705546", "module": null, - "name": "Delivery Note-base_rounded_total-print_hide", - "property": "print_hide", + "name": "Warehouse-disabled-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Job Applicant", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "rounded_total", + "field_name": "designation", "is_system_generated": 0, - "modified": "2020-03-31 08:03:01.200735", + "modified": "2022-03-17 13:48:22.215608", "module": null, - "name": "Delivery Note-rounded_total-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Job Applicant-designation-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": "0" + "value": "job_title.designation" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Interview Feedback", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "rounded_total", + "field_name": "result", "is_system_generated": 0, - "modified": "2020-03-31 08:03:01.458240", + "modified": "2022-03-23 13:29:44.890856", "module": null, - "name": "Delivery Note-rounded_total-print_hide", - "property": "print_hide", - "property_type": "Check", + "name": "Interview Feedback-result-options", + "property": "options", + "property_type": "Text", "row_name": null, - "value": "0" + "value": "\nCleared\nRejected\nPending" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Interview Feedback", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "in_words", + "field_name": "result", "is_system_generated": 0, - "modified": "2020-03-31 08:03:04.529368", + "modified": "2022-03-23 13:29:45.208945", "module": null, - "name": "Delivery Note-in_words-hidden", - "property": "hidden", + "name": "Interview Feedback-result-default", + "property": "default", + "property_type": "Text", + "row_name": null, + "value": "Pending" + }, + { + "default_value": null, + "doc_type": "Help Category", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocField", + "field_name": "route", + "is_system_generated": 0, + "modified": "2022-04-07 10:18:01.572897", + "module": null, + "name": "Help Category-route-read_only", + "property": "read_only", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Help Article", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "in_words", + "field_name": "route", "is_system_generated": 0, - "modified": "2020-03-31 08:03:04.686963", + "modified": "2022-04-07 11:58:04.796692", "module": null, - "name": "Delivery Note-in_words-print_hide", - "property": "print_hide", + "name": "Help Article-route-read_only", + "property": "read_only", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" + }, + { + "default_value": null, + "doc_type": "Project", + "docstatus": 0, + "doctype": "Property Setter", + "doctype_or_field": "DocType", + "field_name": null, + "is_system_generated": 0, + "modified": "2022-04-25 11:55:24.606561", + "module": null, + "name": "Project-main-autoname", + "property": "autoname", + "property_type": "Data", + "row_name": null, + "value": "field:project_name" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Project", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "scan_barcode", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2020-05-06 10:57:13.091035", + "modified": "2022-04-25 11:55:24.908504", "module": null, - "name": "Delivery Note-scan_barcode-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Project-naming_series-default", + "property": "default", + "property_type": "Text", "row_name": null, - "value": "1" + "value": "PROJ-.####" }, { "default_value": null, - "doc_type": "Sales Invoice", + "doc_type": "Bank Account", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "due_date", + "field_name": "iban", "is_system_generated": 0, - "modified": "2019-11-24 17:48:11.267047", + "modified": "2022-04-27 12:43:47.386119", "module": null, - "name": "Sales Invoice-due_date-print_hide", - "property": "print_hide", + "name": "Bank Account-iban-unique", + "property": "unique", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Sales Invoice", + "doc_type": "Bank Account", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "payment_schedule", + "field_name": "bank_account_no", "is_system_generated": 0, - "modified": "2019-11-24 17:48:11.593936", + "modified": "2022-04-27 12:43:47.512438", "module": null, - "name": "Sales Invoice-payment_schedule-print_hide", - "property": "print_hide", + "name": "Bank Account-bank_account_no-unique", + "property": "unique", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Sales Invoice", + "doc_type": "Shift Type", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "cost_center", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2019-11-24 17:48:12.967509", + "modified": "2022-05-17 12:30:02.342601", "module": null, - "name": "Sales Invoice-cost_center-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Shift Type-main-autoname", + "property": "autoname", + "property_type": "Data", "row_name": null, - "value": "1" + "value": "" }, { "default_value": null, - "doc_type": "Sales Invoice", + "doc_type": "Timesheet", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "base_rounded_total", + "field_name": "parent_project", "is_system_generated": 0, - "modified": "2020-03-31 08:03:00.043010", + "modified": "2022-10-25 14:57:07.606108", "module": null, - "name": "Sales Invoice-base_rounded_total-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Timesheet-parent_project-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": "0" + "value": "employee.project" }, { "default_value": null, - "doc_type": "Sales Invoice", + "doc_type": "Timesheet Detail", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "base_rounded_total", + "field_name": "billing_rate", "is_system_generated": 0, - "modified": "2020-03-31 08:03:00.244919", + "modified": "2020-10-28 11:35:24.333938", "module": null, - "name": "Sales Invoice-base_rounded_total-print_hide", - "property": "print_hide", - "property_type": "Check", + "name": "Timesheet Detail-billing_rate-precision", + "property": "precision", + "property_type": "Select", "row_name": null, - "value": "1" + "value": "3" }, { "default_value": null, - "doc_type": "Sales Invoice", + "doc_type": "Timesheet Detail", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "rounded_total", + "field_name": "billing_amount", "is_system_generated": 0, - "modified": "2020-03-31 08:03:00.445011", + "modified": "2020-10-28 11:35:24.428229", "module": null, - "name": "Sales Invoice-rounded_total-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Timesheet Detail-billing_amount-precision", + "property": "precision", + "property_type": "Select", "row_name": null, - "value": "0" + "value": "3" }, { "default_value": null, - "doc_type": "Sales Invoice", + "doc_type": "Budget", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "rounded_total", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2020-03-31 08:03:00.645418", + "modified": "2020-05-20 17:48:25.828961", "module": null, - "name": "Sales Invoice-rounded_total-print_hide", - "property": "print_hide", + "name": "Budget-quick_entry", + "property": "quick_entry", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Sales Invoice", + "doc_type": "Budget", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "in_words", + "field_name": "budget_against", "is_system_generated": 0, - "modified": "2020-03-31 08:03:04.115258", + "modified": "2019-12-23 08:49:17.550063", "module": null, - "name": "Sales Invoice-in_words-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Budget-budget_against-options", + "property": "options", + "property_type": "Text", "row_name": null, - "value": "0" + "value": "\nCost Center\nProject\n" }, { "default_value": null, - "doc_type": "Sales Invoice", + "doc_type": "Timesheet", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "in_words", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2020-03-31 08:03:04.322400", + "modified": "2023-01-03 14:14:44.478736", "module": null, - "name": "Sales Invoice-in_words-print_hide", - "property": "print_hide", - "property_type": "Check", + "name": "Timesheet-main-naming_rule", + "property": "naming_rule", + "property_type": "Data", "row_name": null, - "value": "0" + "value": "Expression" }, { "default_value": null, - "doc_type": "Shift Assignment", + "doc_type": "Timesheet", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "shift_type", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2020-05-31 22:44:02.659032", + "modified": "2023-01-03 14:14:44.718895", "module": null, - "name": "Shift Assignment-shift_type-fetch_from", - "property": "fetch_from", - "property_type": "Small Text", + "name": "Timesheet-main-autoname", + "property": "autoname", + "property_type": "Data", "row_name": null, - "value": "shift.shift_type" + "value": "format:TMS-{YYYY}-{MM}-{DD}-{###}" }, { "default_value": null, - "doc_type": "Sales Invoice", + "doc_type": "Timesheet", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "scan_barcode", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2020-10-15 17:51:48.491378", + "modified": "2023-01-03 22:39:57.026707", "module": null, - "name": "Sales Invoice-scan_barcode-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Timesheet-naming_series-default", + "property": "default", + "property_type": "Text", "row_name": null, - "value": "0" + "value": "TS-.YYYY.-" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "manufacturing", + "field_name": "shift", "is_system_generated": 0, - "modified": "2019-10-22 08:38:57.275292", + "modified": "2023-01-10 18:33:54.123127", "module": null, - "name": "Item-manufacturing-collapsible_depends_on", - "property": "collapsible_depends_on", - "property_type": "Code", + "name": "Employee Checkin-shift-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "is_stock_item" + "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "shift_start", "is_system_generated": 0, - "modified": "2019-12-17 12:32:30.766254", + "modified": "2023-01-10 18:49:40.155216", "module": null, - "name": "Item-naming_series-options", - "property": "options", - "property_type": "Text", + "name": "Employee Checkin-shift_start-read_only", + "property": "read_only", + "property_type": "Check", "row_name": null, - "value": "STO-ITEM-.YYYY.-" + "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "shift_end", "is_system_generated": 0, - "modified": "2020-05-06 10:57:10.470303", + "modified": "2023-01-10 18:49:40.279715", "module": null, - "name": "Item-naming_series-reqd", - "property": "reqd", + "name": "Employee Checkin-shift_end-read_only", + "property": "read_only", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "shift_actual_start", "is_system_generated": 0, - "modified": "2020-05-06 10:57:10.723520", + "modified": "2023-01-10 18:49:40.336674", "module": null, - "name": "Item-naming_series-hidden", + "name": "Employee Checkin-shift_actual_start-hidden", "property": "hidden", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "item_code", + "field_name": "shift_actual_start", "is_system_generated": 0, - "modified": "2020-05-06 10:57:10.977092", + "modified": "2023-01-10 18:49:40.396848", "module": null, - "name": "Item-item_code-hidden", - "property": "hidden", + "name": "Employee Checkin-shift_actual_start-read_only", + "property": "read_only", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Item Barcode", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "barcode", + "field_name": "shift_actual_end", "is_system_generated": 0, - "modified": "2020-05-06 10:57:11.453937", + "modified": "2023-01-10 18:49:40.457141", "module": null, - "name": "Item Barcode-barcode-hidden", + "name": "Employee Checkin-shift_actual_end-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -2849,207 +3345,207 @@ }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "barcodes", + "field_name": "shift_actual_end", "is_system_generated": 0, - "modified": "2020-05-06 10:57:12.821344", + "modified": "2023-01-10 18:49:40.524825", "module": null, - "name": "Item-barcodes-hidden", - "property": "hidden", + "name": "Employee Checkin-shift_actual_end-read_only", + "property": "read_only", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Shift Type", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "early_exit_grace_period", "is_system_generated": 0, - "modified": "2020-05-22 17:55:32.951836", + "modified": "2023-01-10 18:55:36.207658", "module": null, - "name": "Item-quick_entry", - "property": "quick_entry", - "property_type": "Check", + "name": "Shift Type-early_exit_grace_period-default", + "property": "default", + "property_type": "Text", "row_name": null, "value": "0" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "sb_barcodes", + "field_name": "log_type", "is_system_generated": 0, - "modified": "2020-05-22 17:55:33.087811", + "modified": "2023-01-23 16:36:45.153209", "module": null, - "name": "Item-sb_barcodes-hidden", - "property": "hidden", + "name": "Employee Checkin-log_type-reqd", + "property": "reqd", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Attendance", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "unit_of_measure_conversion", + "field_name": "status", "is_system_generated": 0, - "modified": "2020-05-22 17:55:33.110545", - "module": null, - "name": "Item-unit_of_measure_conversion-hidden", - "property": "hidden", - "property_type": "Check", + "modified": "2023-02-01 18:16:03.017012", + "module": "One Fm", + "name": "Attendance-status-options", + "property": "options", + "property_type": "Select", "row_name": null, - "value": "1" + "value": "Present\nAbsent\nOn Leave\nHalf Day\nWork From Home\nDay Off\nHoliday\nOn Hold" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Attendance", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "defaults", + "field_name": "attendance_date", "is_system_generated": 0, - "modified": "2020-05-22 17:55:33.142535", + "modified": "2023-02-01 18:25:23.250494", "module": null, - "name": "Item-defaults-hidden", - "property": "hidden", + "name": "Attendance-attendance_date-in_standard_filter", + "property": "in_standard_filter", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Shift Assignment", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "foreign_trade_details", + "field_name": "start_date", "is_system_generated": 0, - "modified": "2020-05-22 17:55:33.164862", + "modified": "2023-02-01 18:46:58.929151", "module": null, - "name": "Item-foreign_trade_details-hidden", - "property": "hidden", + "name": "Shift Assignment-start_date-in_standard_filter", + "property": "in_standard_filter", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Shift Assignment", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "deferred_revenue", + "field_name": "end_date", "is_system_generated": 0, - "modified": "2020-05-22 17:55:33.185265", + "modified": "2023-02-01 18:46:59.001473", "module": null, - "name": "Item-deferred_revenue-hidden", - "property": "hidden", + "name": "Shift Assignment-end_date-in_list_view", + "property": "in_list_view", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Shift Assignment", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "deferred_expense_section", + "field_name": "end_date", "is_system_generated": 0, - "modified": "2020-05-22 17:55:33.196181", + "modified": "2023-02-01 18:46:59.050508", "module": null, - "name": "Item-deferred_expense_section-hidden", - "property": "hidden", + "name": "Shift Assignment-end_date-in_standard_filter", + "property": "in_standard_filter", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Shift Assignment", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "customer_details", + "field_name": "employee", "is_system_generated": 0, - "modified": "2020-05-22 17:55:33.206600", + "modified": "2023-02-01 18:47:40.479659", "module": null, - "name": "Item-customer_details-hidden", - "property": "hidden", + "name": "Shift Assignment-employee-in_standard_filter", + "property": "in_standard_filter", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "item_tax_section_break", + "field_name": "employee", "is_system_generated": 0, - "modified": "2020-05-22 17:55:33.216286", + "modified": "2023-02-02 09:53:00.266494", "module": null, - "name": "Item-item_tax_section_break-hidden", - "property": "hidden", + "name": "Employee Checkin-employee-in_standard_filter", + "property": "in_standard_filter", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Attendance", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "manufacturing", + "field_name": "shift", "is_system_generated": 0, - "modified": "2020-05-22 17:55:33.227117", + "modified": "2023-02-04 18:19:32.558851", "module": null, - "name": "Item-manufacturing-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Attendance-shift-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": "1" + "value": "shift_assignment.shift_type" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Attendance", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "hub_publishing_sb", + "field_name": "shift", "is_system_generated": 0, - "modified": "2020-05-22 17:55:33.243335", + "modified": "2023-02-04 18:19:32.703551", "module": null, - "name": "Item-hub_publishing_sb-hidden", - "property": "hidden", + "name": "Attendance-shift-fetch_if_empty", + "property": "fetch_if_empty", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Attendance", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "item_code", + "field_name": "shift", "is_system_generated": 0, - "modified": "2020-05-22 18:08:06.009261", + "modified": "2023-02-04 18:20:44.198475", "module": null, - "name": "Item-item_code-read_only", + "name": "Attendance-shift-read_only", "property": "read_only", "property_type": "Check", "row_name": null, @@ -3057,335 +3553,335 @@ }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Attendance", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "item_name", + "field_name": "working_hours", "is_system_generated": 0, - "modified": "2020-05-22 18:08:06.030138", + "modified": "2023-02-04 18:29:58.997619", "module": null, - "name": "Item-item_name-in_list_view", - "property": "in_list_view", - "property_type": "Check", + "name": "Attendance-working_hours-depends_on", + "property": "depends_on", + "property_type": "Data", "row_name": null, - "value": "1" + "value": "" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Attendance Request", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "is_item_from_hub", + "field_name": "reason", "is_system_generated": 0, - "modified": "2020-05-22 18:08:06.061788", + "modified": "2022-05-25 11:06:50.999897", "module": null, - "name": "Item-is_item_from_hub-hidden", - "property": "hidden", + "name": "Attendance Request-reason-in_list_view", + "property": "in_list_view", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Attendance Request", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "stock_uom", + "field_name": "employee_name", "is_system_generated": 0, - "modified": "2020-05-22 18:08:06.071990", + "modified": "2022-05-25 11:06:51.034604", "module": null, - "name": "Item-stock_uom-label", - "property": "label", - "property_type": "Data", + "name": "Attendance Request-employee_name-in_list_view", + "property": "in_list_view", + "property_type": "Check", "row_name": null, - "value": "Unit of Measure" + "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Attendance Request", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "allow_alternative_item", + "field_name": "employee", "is_system_generated": 0, - "modified": "2020-05-22 18:08:06.084290", + "modified": "2022-05-25 11:06:51.042055", "module": null, - "name": "Item-allow_alternative_item-hidden", - "property": "hidden", + "name": "Attendance Request-employee-in_list_view", + "property": "in_list_view", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Attendance Request", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "include_item_in_manufacturing", + "field_name": "from_date", "is_system_generated": 0, - "modified": "2020-05-22 18:08:06.107966", + "modified": "2022-05-25 11:06:51.049074", "module": null, - "name": "Item-include_item_in_manufacturing-hidden", - "property": "hidden", + "name": "Attendance Request-from_date-in_list_view", + "property": "in_list_view", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Attendance Request", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "opening_stock", + "field_name": "to_date", "is_system_generated": 0, - "modified": "2020-05-22 18:08:06.118850", + "modified": "2022-05-25 11:06:51.056162", "module": null, - "name": "Item-opening_stock-hidden", - "property": "hidden", + "name": "Attendance Request-to_date-in_list_view", + "property": "in_list_view", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Attendance Request", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "valuation_rate", + "field_name": "workflow_state", "is_system_generated": 0, - "modified": "2020-05-22 18:08:06.129232", + "modified": "2022-05-25 11:06:51.062882", "module": null, - "name": "Item-valuation_rate-hidden", - "property": "hidden", + "name": "Attendance Request-workflow_state-in_list_view", + "property": "in_list_view", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Attendance Request", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "over_delivery_receipt_allowance", + "field_name": "explanation", "is_system_generated": 0, - "modified": "2020-05-22 18:08:06.171875", + "modified": "2023-02-11 23:31:05.168275", "module": null, - "name": "Item-over_delivery_receipt_allowance-hidden", - "property": "hidden", + "name": "Attendance Request-explanation-reqd", + "property": "reqd", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "over_billing_allowance", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2020-05-22 18:08:06.181793", + "modified": "2023-02-13 16:10:38.483128", "module": null, - "name": "Item-over_billing_allowance-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Employee-main-search_fields", + "property": "search_fields", + "property_type": "Data", "row_name": null, - "value": "1" + "value": "employee_name, employee_id" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "section_break_49", - "is_system_generated": 0, - "modified": "2020-10-26 14:09:48.298545", + "field_name": "naming_series", + "is_system_generated": 1, + "modified": "2020-05-02 09:04:17.802419", "module": null, - "name": "Delivery Note-section_break_49-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Employee-naming_series-options", + "property": "options", + "property_type": "Text", "row_name": null, - "value": "2" + "value": "HR-EMP-" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "totals", - "is_system_generated": 0, - "modified": "2020-10-26 14:09:48.445126", + "field_name": "middle_name", + "is_system_generated": 1, + "modified": "2020-08-15 11:45:26.747610", "module": null, - "name": "Delivery Note-totals-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Employee-middle_name-label", + "property": "label", + "property_type": "Data", "row_name": null, - "value": "2" + "value": "Second Name" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "total", - "is_system_generated": 0, - "modified": "2020-10-26 14:15:04.533879", + "field_name": "status", + "is_system_generated": 1, + "modified": "2021-10-06 10:06:01.372386", "module": null, - "name": "Delivery Note-total-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Employee-status-options", + "property": "options", + "property_type": "Text", "row_name": null, - "value": "2" + "value": "\nActive\nCourt Case\nAbsconding\nLeft\nVacation" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "net_total", - "is_system_generated": 0, - "modified": "2020-10-26 14:15:04.607435", + "field_name": "bank_name", + "is_system_generated": 1, + "modified": "2021-12-21 08:43:22.815577", "module": null, - "name": "Delivery Note-net_total-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Employee-bank_name-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "2" + "value": "1" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "taxes_section", - "is_system_generated": 0, - "modified": "2020-10-26 14:24:57.688120", + "field_name": "bank_ac_no", + "is_system_generated": 1, + "modified": "2021-12-21 08:43:23.418516", "module": null, - "name": "Delivery Note-taxes_section-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Employee-bank_ac_no-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "2" + "value": "1" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "section_break_41", - "is_system_generated": 0, - "modified": "2020-10-26 14:24:57.734181", + "field_name": "last_name", + "is_system_generated": 1, + "modified": "2022-04-17 14:37:43.176128", "module": null, - "name": "Delivery Note-section_break_41-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Employee-last_name-reqd", + "property": "reqd", + "property_type": "Check", "row_name": null, - "value": "2" + "value": "1" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "sec_tax_breakup", - "is_system_generated": 0, - "modified": "2020-10-26 14:24:57.778406", + "field_name": "final_confirmation_date", + "is_system_generated": 1, + "modified": "2022-04-17 14:37:43.636920", "module": null, - "name": "Delivery Note-sec_tax_breakup-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Employee-final_confirmation_date-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "2" + "value": "1" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "section_break_44", - "is_system_generated": 0, - "modified": "2020-10-26 14:24:57.830571", + "field_name": "date_of_retirement", + "is_system_generated": 1, + "modified": "2022-04-17 14:37:43.776600", "module": null, - "name": "Delivery Note-section_break_44-permlevel", - "property": "permlevel", - "property_type": "Int", + "name": "Employee-date_of_retirement-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "2" + "value": "1" }, { "default_value": null, - "doc_type": "Company", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, - "is_system_generated": 0, - "modified": "2019-12-22 16:31:00.353656", + "doctype_or_field": "DocField", + "field_name": "approvers_section", + "is_system_generated": 1, + "modified": "2022-04-17 14:37:43.915200", "module": null, - "name": "Company-sort_field", - "property": "sort_field", - "property_type": "Data", + "name": "Employee-approvers_section-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "chart_of_accounts" + "value": "1" }, { "default_value": null, - "doc_type": "Company", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "write_off_account", - "is_system_generated": 0, - "modified": "2019-12-23 08:54:15.614105", + "field_name": "payroll_cost_center", + "is_system_generated": 1, + "modified": "2022-04-17 14:37:44.184515", "module": null, - "name": "Company-write_off_account-label", - "property": "label", - "property_type": "Data", + "name": "Employee-payroll_cost_center-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "" + "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "item_group", - "is_system_generated": 0, - "modified": "2020-12-01 10:43:17.250416", + "field_name": "attendance_device_id", + "is_system_generated": 1, + "modified": "2022-04-23 18:56:07.690995", "module": null, - "name": "Item-item_group-label", - "property": "label", - "property_type": "Data", + "name": "Employee-attendance_device_id-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "Subgroup" + "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "item_code", + "field_name": "department", "is_system_generated": 0, - "modified": "2020-12-03 11:24:15.852497", + "modified": "2020-02-25 12:43:20.816164", "module": null, - "name": "Item-item_code-reqd", + "name": "Employee-department-reqd", "property": "reqd", "property_type": "Check", "row_name": null, @@ -3393,63 +3889,63 @@ }, { "default_value": null, - "doc_type": "Location", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "parent_location", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2020-06-03 23:30:34.512352", + "modified": "2020-07-21 09:31:11.476383", "module": null, - "name": "Location-parent_location-hidden", + "name": "Employee-naming_series-hidden", "property": "hidden", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Location", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "is_container", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2020-06-03 23:30:34.605343", + "modified": "2020-07-21 09:31:11.848503", "module": null, - "name": "Location-is_container-hidden", - "property": "hidden", + "name": "Employee-naming_series-reqd", + "property": "reqd", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Location", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "is_group", + "field_name": "employee_number", "is_system_generated": 0, - "modified": "2020-06-03 23:30:34.638824", + "modified": "2020-07-21 09:31:12.130141", "module": null, - "name": "Location-is_group-hidden", - "property": "hidden", + "name": "Employee-employee_number-reqd", + "property": "reqd", "property_type": "Check", "row_name": null, - "value": "1" + "value": "0" }, { "default_value": null, - "doc_type": "Location", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "area", + "field_name": "employee_number", "is_system_generated": 0, - "modified": "2020-06-03 23:30:34.676031", + "modified": "2020-07-21 09:31:12.318118", "module": null, - "name": "Location-area-hidden", + "name": "Employee-employee_number-hidden", "property": "hidden", "property_type": "Check", "row_name": null, @@ -3457,752 +3953,752 @@ }, { "default_value": null, - "doc_type": "Location", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "area_uom", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2020-06-03 23:30:34.708356", + "modified": "2022-10-27 10:26:39.196418", "module": null, - "name": "Location-area_uom-hidden", - "property": "hidden", + "name": "Employee-main-track_changes", + "property": "track_changes", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Location", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "latitude", + "field_name": "marital_status", "is_system_generated": 0, - "modified": "2020-06-03 23:37:31.343836", + "modified": "2022-12-29 09:14:23.119145", "module": null, - "name": "Location-latitude-reqd", - "property": "reqd", - "property_type": "Check", + "name": "Employee-marital_status-options", + "property": "options", + "property_type": "select", "row_name": null, - "value": "1" + "value": "Unmarried\nMarried\nWidow\nDivorce\nUnknown" }, { "default_value": null, - "doc_type": "Location", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "longitude", + "field_name": "column_break1", "is_system_generated": 0, - "modified": "2020-06-03 23:37:31.442704", + "modified": "2023-02-13 05:54:10.227158", "module": null, - "name": "Location-longitude-reqd", - "property": "reqd", + "name": "Employee-column_break1-hidden", + "property": "hidden", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Location", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "latitude", + "field_name": "branch", "is_system_generated": 0, - "modified": "2020-06-03 23:49:32.641893", + "modified": "2023-02-19 14:50:29.202987", "module": null, - "name": "Location-latitude-precision", - "property": "precision", - "property_type": "Select", + "name": "Employee-branch-hidden", + "property": "hidden", + "property_type": "Check", "row_name": null, - "value": "9" + "value": "1" }, { "default_value": null, - "doc_type": "Location", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "longitude", + "field_name": "half_day", "is_system_generated": 0, - "modified": "2020-06-03 23:49:32.712615", + "modified": "2022-08-04 16:08:13.073913", "module": null, - "name": "Location-longitude-precision", - "property": "precision", - "property_type": "Select", + "name": "Leave Application-half_day-read_only_depends_on", + "property": "read_only_depends_on", + "property_type": "Data", "row_name": null, - "value": "9" + "value": "eval:doc.workflow_state=='Open' || doc.workflow_state=='Approved' || doc.workflow_state=='Rejected'" }, { "default_value": null, - "doc_type": "Location", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "location", + "field_name": "description", "is_system_generated": 0, - "modified": "2020-05-11 16:32:19.267865", + "modified": "2022-08-04 16:09:21.698737", "module": null, - "name": "Location-location-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Leave Application-description-read_only_depends_on", + "property": "read_only_depends_on", + "property_type": "Data", "row_name": null, - "value": "1" + "value": "eval:doc.workflow_state=='Open' || doc.workflow_state=='Approved' || doc.workflow_state=='Rejected'" }, { "default_value": null, - "doc_type": "Purchase Receipt Item", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "barcode", + "field_name": "from_date", "is_system_generated": 0, - "modified": "2020-05-06 10:57:12.466085", + "modified": "2022-08-09 16:34:45.659902", "module": null, - "name": "Purchase Receipt Item-barcode-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Leave Application-from_date-read_only_depends_on", + "property": "read_only_depends_on", + "property_type": "Data", "row_name": null, - "value": "1" + "value": "" }, { "default_value": null, - "doc_type": "Asset", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "asset_owner", + "field_name": "to_date", "is_system_generated": 0, - "modified": "2020-12-21 21:13:35.436900", + "modified": "2022-08-09 16:41:06.117636", "module": null, - "name": "Asset-asset_owner-options", - "property": "options", - "property_type": "Text", + "name": "Leave Application-to_date-read_only_depends_on", + "property": "read_only_depends_on", + "property_type": "Data", "row_name": null, - "value": "Company\nSupplier" + "value": "" }, { "default_value": null, - "doc_type": "Purchase Order", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "status", "is_system_generated": 0, - "modified": "2020-12-23 07:20:30.841266", + "modified": "2022-08-09 16:41:26.473533", "module": null, - "name": "Purchase Order-default_print_format", - "property": "default_print_format", + "name": "Leave Application-status-read_only_depends_on", + "property": "read_only_depends_on", "property_type": "Data", "row_name": null, - "value": "Purchase Order" + "value": "" }, { "default_value": null, - "doc_type": "Sales Invoice Timesheet", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "timesheet_detail", + "field_name": "leave_approver", "is_system_generated": 0, - "modified": "2020-12-30 15:20:18.286593", + "modified": "2022-08-09 16:52:46.846289", "module": null, - "name": "Sales Invoice Timesheet-timesheet_detail-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Leave Application-leave_approver-read_only_depends_on", + "property": "read_only_depends_on", + "property_type": "Data", "row_name": null, - "value": "0" + "value": "" }, { "default_value": null, - "doc_type": "Purchase Order", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "due_date", + "field_name": "employee", "is_system_generated": 0, - "modified": "2019-11-24 17:48:11.923178", + "modified": "2022-08-11 10:03:42.784786", "module": null, - "name": "Purchase Order-due_date-print_hide", - "property": "print_hide", - "property_type": "Check", + "name": "Leave Application-employee-read_only_depends_on", + "property": "read_only_depends_on", + "property_type": "Data", "row_name": null, - "value": "0" + "value": "" }, { "default_value": null, - "doc_type": "Purchase Order", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "payment_schedule", + "field_name": "leave_type", "is_system_generated": 0, - "modified": "2019-11-24 17:48:12.165059", + "modified": "2022-08-11 10:03:42.955182", "module": null, - "name": "Purchase Order-payment_schedule-print_hide", - "property": "print_hide", - "property_type": "Check", + "name": "Leave Application-leave_type-read_only_depends_on", + "property": "read_only_depends_on", + "property_type": "Data", "row_name": null, - "value": "1" + "value": "" }, { "default_value": null, - "doc_type": "Purchase Order", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "base_rounded_total", + "field_name": "status", "is_system_generated": 0, - "modified": "2020-03-31 08:03:02.121521", + "modified": "2022-09-09 17:21:50.979010", "module": null, - "name": "Purchase Order-base_rounded_total-hidden", - "property": "hidden", + "name": "Leave Application-status-read_only", + "property": "read_only", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Purchase Order", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "base_rounded_total", + "field_name": "naming_series", "is_system_generated": 0, - "modified": "2020-03-31 08:03:02.275988", + "modified": "2020-01-10 16:05:59.832403", "module": null, - "name": "Purchase Order-base_rounded_total-print_hide", - "property": "print_hide", - "property_type": "Check", + "name": "Leave Application-naming_series-options", + "property": "options", + "property_type": "Text", "row_name": null, - "value": "1" + "value": "HR-LAP-.YYYY.-" }, { "default_value": null, - "doc_type": "Purchase Order", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "rounded_total", + "field_name": "leave_approver", "is_system_generated": 0, - "modified": "2020-03-31 08:03:02.426792", + "modified": "2020-01-08 21:35:17.814724", "module": null, - "name": "Purchase Order-rounded_total-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Leave Application-leave_approver-default", + "property": "default", + "property_type": "Text", "row_name": null, - "value": "0" + "value": "Administrator" }, { "default_value": null, - "doc_type": "Purchase Order", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "rounded_total", + "field_name": "follow_via_email", "is_system_generated": 0, - "modified": "2020-03-31 08:03:02.578790", + "modified": "2020-01-08 21:35:17.878242", "module": null, - "name": "Purchase Order-rounded_total-print_hide", - "property": "print_hide", - "property_type": "Check", + "name": "Leave Application-follow_via_email-default", + "property": "default", + "property_type": "Text", "row_name": null, "value": "0" }, { "default_value": null, - "doc_type": "Purchase Order", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "in_words", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2020-03-31 08:03:05.096644", + "modified": "2022-11-07 15:14:53.620396", "module": null, - "name": "Purchase Order-in_words-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Leave Application-main-max_attachments", + "property": "max_attachments", + "property_type": "Int", "row_name": null, - "value": "0" + "value": "5" }, { "default_value": null, - "doc_type": "Purchase Order", + "doc_type": "Wiki Page", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "in_words", + "field_name": "route", "is_system_generated": 0, - "modified": "2020-03-31 08:03:05.247413", + "modified": "2023-02-28 11:48:26.712892", "module": null, - "name": "Purchase Order-in_words-print_hide", - "property": "print_hide", + "name": "Wiki Page-route-read_only", + "property": "read_only", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Purchase Receipt", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "in_words", + "field_name": "shift", "is_system_generated": 0, - "modified": "2020-03-31 08:03:05.751536", + "modified": "2023-03-04 16:39:48.533626", "module": null, - "name": "Purchase Receipt-in_words-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Employee Checkin-shift-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": "0" + "value": "shift_assignment.shift_type" }, { "default_value": null, - "doc_type": "Purchase Receipt", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "in_words", + "field_name": "shift", "is_system_generated": 0, - "modified": "2020-03-31 08:03:05.892364", + "modified": "2023-03-04 16:39:48.642343", "module": null, - "name": "Purchase Receipt-in_words-print_hide", - "property": "print_hide", + "name": "Employee Checkin-shift-fetch_if_empty", + "property": "fetch_if_empty", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Purchase Order", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "scan_barcode", + "field_name": "shift_actual_start", "is_system_generated": 0, - "modified": "2020-05-06 10:57:13.810176", + "modified": "2023-03-04 16:39:48.711892", "module": null, - "name": "Purchase Order-scan_barcode-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Employee Checkin-shift_actual_start-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": "1" + "value": "shift_assignment.start_datetime" }, { "default_value": null, - "doc_type": "Purchase Receipt", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "scan_barcode", + "field_name": "shift_actual_start", "is_system_generated": 0, - "modified": "2020-05-06 10:57:14.707959", + "modified": "2023-03-04 16:39:48.770298", "module": null, - "name": "Purchase Receipt-scan_barcode-hidden", - "property": "hidden", + "name": "Employee Checkin-shift_actual_start-fetch_if_empty", + "property": "fetch_if_empty", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Vehicle", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "shift_actual_end", "is_system_generated": 0, - "modified": "2021-01-12 10:16:31.208534", + "modified": "2023-03-04 16:39:48.830674", "module": null, - "name": "Vehicle-quick_entry", - "property": "quick_entry", - "property_type": "Check", + "name": "Employee Checkin-shift_actual_end-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": "0" + "value": "shift_assignment.end_datetime" }, { "default_value": null, - "doc_type": "Vehicle", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "shift_actual_end", "is_system_generated": 0, - "modified": "2021-01-12 10:56:38.094962", + "modified": "2023-03-04 16:39:48.900113", "module": null, - "name": "Vehicle-image_field", - "property": "image_field", - "property_type": "Data", + "name": "Employee Checkin-shift_actual_end-fetch_if_empty", + "property": "fetch_if_empty", + "property_type": "Check", "row_name": null, - "value": "image" + "value": "1" }, { "default_value": null, - "doc_type": "Purchase Order", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "shift_start", "is_system_generated": 0, - "modified": "2021-01-31 18:32:50.536379", + "modified": "2023-03-04 16:42:08.000454", "module": null, - "name": "Purchase Order-naming_series-options", - "property": "options", - "property_type": "Text", + "name": "Employee Checkin-shift_start-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": "PUR-ORD-.YYYY.-\nPOR-.YYYY.-.######" + "value": "shift_assignment.start_date" }, { "default_value": null, - "doc_type": "Purchase Order", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "shift_start", "is_system_generated": 0, - "modified": "2021-01-31 18:34:27.526717", + "modified": "2023-03-04 16:42:08.074064", "module": null, - "name": "Purchase Order-naming_series-default", - "property": "default", - "property_type": "Text", + "name": "Employee Checkin-shift_start-fetch_if_empty", + "property": "fetch_if_empty", + "property_type": "Check", "row_name": null, - "value": "POR-.YYYY.-.######" + "value": "1" }, { "default_value": null, - "doc_type": "Item", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "description", + "field_name": "shift_end", "is_system_generated": 0, - "modified": "2021-01-31 19:23:05.503355", + "modified": "2023-03-04 16:42:08.129499", "module": null, - "name": "Item-description-in_list_view", - "property": "in_list_view", - "property_type": "Check", + "name": "Employee Checkin-shift_end-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": "1" + "value": "shift_assignment.end_date" }, { "default_value": null, - "doc_type": "Purchase Receipt", + "doc_type": "Employee Checkin", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "shift_end", "is_system_generated": 0, - "modified": "2021-02-02 09:52:00.352557", + "modified": "2023-03-04 16:42:08.182693", "module": null, - "name": "Purchase Receipt-naming_series-options", - "property": "options", - "property_type": "Text", + "name": "Employee Checkin-shift_end-fetch_if_empty", + "property": "fetch_if_empty", + "property_type": "Check", "row_name": null, - "value": "MAT-PRE-.YYYY.-\nPRC-.YYYY.-.######" + "value": "1" }, { "default_value": null, - "doc_type": "Purchase Receipt", + "doc_type": "Leave Application", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "employee", "is_system_generated": 0, - "modified": "2021-02-02 09:52:00.454883", + "modified": "2023-03-19 15:16:39.868647", "module": null, - "name": "Purchase Receipt-naming_series-default", - "property": "default", - "property_type": "Text", + "name": "Leave Application-employee-ignore_user_permissions", + "property": "ignore_user_permissions", + "property_type": "Check", "row_name": null, - "value": "PRC-.YYYY.-.######" + "value": "1" }, { "default_value": null, - "doc_type": "Purchase Invoice", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "due_date", + "field_name": "holiday_list", "is_system_generated": 0, - "modified": "2019-11-24 17:48:12.401098", + "modified": "2023-03-26 14:14:09.610883", "module": null, - "name": "Purchase Invoice-due_date-print_hide", - "property": "print_hide", - "property_type": "Check", + "name": "Employee-holiday_list-mandatory_depends_on", + "property": "mandatory_depends_on", + "property_type": "Data", "row_name": null, - "value": "0" + "value": "eval:doc.shift_working==0 && !doc.attendance_by_timesheet" }, { "default_value": null, - "doc_type": "Purchase Invoice", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "payment_schedule", + "field_name": "project", "is_system_generated": 0, - "modified": "2019-11-24 17:48:12.678900", + "modified": "2023-04-02 02:03:43.997272", "module": null, - "name": "Purchase Invoice-payment_schedule-print_hide", - "property": "print_hide", - "property_type": "Check", + "name": "Sales Invoice-project-fetch_from", + "property": "fetch_from", + "property_type": "Small Text", "row_name": null, - "value": "1" + "value": "contracts.project" }, { "default_value": null, - "doc_type": "Purchase Invoice", + "doc_type": "Sales Invoice", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "cost_center", + "field_name": "project", "is_system_generated": 0, - "modified": "2019-11-24 17:48:13.301192", + "modified": "2023-04-02 02:03:44.277764", "module": null, - "name": "Purchase Invoice-cost_center-hidden", - "property": "hidden", + "name": "Sales Invoice-project-fetch_if_empty", + "property": "fetch_if_empty", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Purchase Invoice", + "doc_type": "Project Type", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "base_rounded_total", + "field_name": "project_type", "is_system_generated": 0, - "modified": "2020-03-31 08:03:02.735812", + "modified": "2023-04-25 11:48:17.214273", "module": null, - "name": "Purchase Invoice-base_rounded_total-hidden", - "property": "hidden", + "name": "Project Type-project_type-unique", + "property": "unique", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Purchase Invoice", + "doc_type": "Task", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "base_rounded_total", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2020-03-31 08:03:02.911039", + "modified": "2023-04-25 15:29:03.831602", "module": null, - "name": "Purchase Invoice-base_rounded_total-print_hide", - "property": "print_hide", + "name": "Task-main-allow_auto_repeat", + "property": "allow_auto_repeat", "property_type": "Check", "row_name": null, "value": "1" }, { "default_value": null, - "doc_type": "Purchase Invoice", + "doc_type": "Task", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "rounded_total", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2020-03-31 08:03:03.094452", + "modified": "2022-12-21 09:43:41.075552", "module": null, - "name": "Purchase Invoice-rounded_total-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Task-main-sender_field", + "property": "sender_field", + "property_type": "Data", "row_name": null, - "value": "0" + "value": "email_sender" }, { "default_value": null, - "doc_type": "Purchase Invoice", + "doc_type": "Task", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "rounded_total", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2020-03-31 08:03:03.269385", + "modified": "2022-12-21 09:51:24.035672", "module": null, - "name": "Purchase Invoice-rounded_total-print_hide", - "property": "print_hide", + "name": "Task-main-email_append_to", + "property": "email_append_to", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Purchase Invoice", + "doc_type": "Task", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "in_words", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2020-03-31 08:03:05.398875", + "modified": "2022-12-21 09:51:24.183491", "module": null, - "name": "Purchase Invoice-in_words-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Task-main-subject_field", + "property": "subject_field", + "property_type": "Data", "row_name": null, - "value": "0" + "value": "subject" }, { "default_value": null, - "doc_type": "Purchase Invoice", + "doc_type": "Task", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "in_words", + "field_name": "type", "is_system_generated": 0, - "modified": "2020-03-31 08:03:05.573054", + "modified": "2023-04-30 14:08:24.616089", "module": null, - "name": "Purchase Invoice-in_words-print_hide", - "property": "print_hide", + "name": "Task-type-allow_in_quick_entry", + "property": "allow_in_quick_entry", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Purchase Invoice", + "doc_type": "Employee", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "scan_barcode", + "field_name": "reports_to", "is_system_generated": 0, - "modified": "2020-05-06 10:57:14.062014", + "modified": "2023-04-30 17:47:28.321699", "module": null, - "name": "Purchase Invoice-scan_barcode-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Employee-reports_to-mandatory_depends_on", + "property": "mandatory_depends_on", + "property_type": "Data", "row_name": null, - "value": "1" + "value": "" }, { "default_value": null, - "doc_type": "Purchase Invoice", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "disabled", "is_system_generated": 0, - "modified": "2021-02-06 07:49:32.224666", + "modified": "2023-05-16 08:53:09.404105", "module": null, - "name": "Purchase Invoice-naming_series-options", - "property": "options", - "property_type": "Text", + "name": "Item-disabled-read_only_depends_on", + "property": "read_only_depends_on", + "property_type": "Data", "row_name": null, - "value": "ACC-PINV-.YYYY.-\nPIN-.YYYY.-.######" + "value": "is_stock_item" }, { "default_value": null, - "doc_type": "Purchase Invoice", + "doc_type": "Item", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "disabled", "is_system_generated": 0, - "modified": "2021-02-06 07:49:32.373043", + "modified": "2023-05-16 08:59:49.802902", "module": null, - "name": "Purchase Invoice-naming_series-default", + "name": "Item-disabled-default", "property": "default", "property_type": "Text", "row_name": null, - "value": "PIN-.YYYY.-.######" + "value": "1" }, { "default_value": null, - "doc_type": "Job Opening", + "doc_type": "Project", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocType", - "field_name": null, + "doctype_or_field": "DocField", + "field_name": "customer", "is_system_generated": 0, - "modified": "2021-02-11 08:25:27.091735", + "modified": "2023-05-24 16:32:53.425254", "module": null, - "name": "Job Opening-search_fields", - "property": "search_fields", + "name": "Project-customer-depends_on", + "property": "depends_on", "property_type": "Data", "row_name": null, - "value": "designation, department, one_fm_erf" + "value": "" }, { "default_value": null, - "doc_type": "Journal Entry Account", + "doc_type": "Project", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "reference_type", + "field_name": "customer", "is_system_generated": 0, - "modified": "2021-02-28 18:50:24.217317", + "modified": "2023-05-24 16:38:39.362975", "module": null, - "name": "Journal Entry Account-reference_type-options", - "property": "options", - "property_type": "Text", + "name": "Project-customer-mandatory_depends_on", + "property": "mandatory_depends_on", + "property_type": "Data", "row_name": null, - "value": "\nSales Invoice\nPurchase Invoice\nJournal Entry\nSales Order\nPurchase Order\nExpense Claim\nAsset\nLoan\nPayroll Entry\nEmployee Advance\nExchange Rate Revaluation\nInvoice Discounting\nRecruitment Trip Request" + "value": "eval:doc.project_type == 'External'" }, { "default_value": null, - "doc_type": "Customer", + "doc_type": "Job Offer", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "customer_name", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2020-05-12 15:27:51.059690", + "modified": "2021-02-17 11:53:55.696737", "module": null, - "name": "Customer-customer_name-translatable", - "property": "translatable", - "property_type": "Check", + "name": "Job Offer-default_print_format", + "property": "default_print_format", + "property_type": "Data", "row_name": null, - "value": "1" + "value": "One FM Job Offer" }, { "default_value": null, - "doc_type": "Customer", + "doc_type": "Job Offer", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "letter_head", "is_system_generated": 0, - "modified": "2020-05-06 10:12:37.049477", + "modified": "2021-02-17 11:53:56.220272", "module": null, - "name": "Customer-naming_series-options", - "property": "options", + "name": "Job Offer-letter_head-default", + "property": "default", "property_type": "Text", "row_name": null, - "value": "CUST-.YYYY.-" + "value": "ONE FM - Job Offer" }, { "default_value": null, - "doc_type": "Customer", + "doc_type": "Timesheet", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "naming_series", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2020-03-31 08:02:56.986390", + "modified": "2023-06-10 17:41:12.583953", "module": null, - "name": "Customer-naming_series-reqd", - "property": "reqd", - "property_type": "Check", + "name": "Timesheet-main-links_order", + "property": "links_order", + "property_type": "Small Text", "row_name": null, - "value": "0" + "value": "[\"38e508964c\"]" }, { "default_value": null, - "doc_type": "Customer", + "doc_type": "Job Offer", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "naming_series", + "field_name": "status", "is_system_generated": 0, - "modified": "2020-03-31 08:02:57.102560", + "modified": "2023-06-11 06:19:21.496984", "module": null, - "name": "Customer-naming_series-hidden", - "property": "hidden", + "name": "Job Offer-status-read_only", + "property": "read_only", "property_type": "Check", "row_name": null, "value": "1" @@ -4213,175 +4709,175 @@ "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "inventory_section", + "field_name": "attributes", "is_system_generated": 0, - "modified": "2021-05-01 03:29:17.804336", + "modified": "2023-06-26 00:22:09.698048", "module": null, - "name": "Item-inventory_section-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Item-attributes-mandatory_depends_on", + "property": "mandatory_depends_on", + "property_type": "Data", "row_name": null, - "value": "1" + "value": "eval:(doc.has_variants || doc.variant_of) && doc.variant_based_on==='Item Attribute'" }, { "default_value": null, - "doc_type": "Sales Invoice", + "doc_type": "Payment Entry Reference", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "tax_id", + "field_name": "reference_doctype", "is_system_generated": 0, - "modified": "2021-06-24 00:07:26.924771", + "modified": "2021-05-24 00:57:50.277146", "module": null, - "name": "Sales Invoice-tax_id-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Payment Entry Reference-reference_doctype-columns", + "property": "columns", + "property_type": "Int", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Sales Invoice", + "doc_type": "OKR Performance Profile Key Result", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "tax_id", + "field_name": "matched_row", "is_system_generated": 0, - "modified": "2021-06-24 00:07:27.443143", + "modified": "2023-08-01 12:38:07.715084", "module": null, - "name": "Sales Invoice-tax_id-print_hide", + "name": "OKR Performance Profile Key Result-matched_row-print_hide", "property": "print_hide", "property_type": "Check", "row_name": null, - "value": "0" + "value": "1" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Wiki Page Patch", "docstatus": 0, "doctype": "Property Setter", - "doctype_or_field": "DocField", - "field_name": "tax_id", + "doctype_or_field": "DocType", + "field_name": null, "is_system_generated": 0, - "modified": "2021-06-24 00:07:27.922600", + "modified": "2023-08-10 07:52:55.530208", "module": null, - "name": "Delivery Note-tax_id-hidden", - "property": "hidden", - "property_type": "Check", + "name": "Wiki Page Patch-main-naming_rule", + "property": "naming_rule", + "property_type": "Data", "row_name": null, - "value": "0" + "value": "" }, { "default_value": null, - "doc_type": "Delivery Note", + "doc_type": "Wiki Page Patch", "docstatus": 0, "doctype": "Property Setter", "doctype_or_field": "DocField", - "field_name": "tax_id", + "field_name": "compare", "is_system_generated": 0, - "modified": "2021-06-24 00:07:28.342965", + "modified": "2023-08-10 07:52:55.809506", "module": null, - "name": "Delivery Note-tax_id-print_hide", - "property": "print_hide", - "property_type": "Check", + "name": "Wiki Page Patch-compare-options", + "property": "options", + "property_type": "Text", "row_name": null, - "value": "0" + "value": "
Mission:
\nBetter Health and Well-being to all.
\n\n 9th Floor, Humoud Tower, Qibla, Kuwait City, Kuwait\n
\nMission:
\nBetter Health and Well-being to all.
\n\n 9th Floor, Humoud Tower, Qibla, Kuwait City, Kuwait\n
\nSr | \nDescription | \nDue Date | \nPay | \nAmount | \nMode of Pay | \n
---|---|---|---|---|---|
{{ row.idx }} | \n\n {{ row.description or '' }} \n | \n {{ row.get_formatted(\"due_date\", doc) }} | \n{{ row.invoice_portion }} % | \n{{ row.get_formatted(\"payment_amount\", doc) }} | \n{{ row.mode_of_payment or '' }} | \n
\n According to the understandings covenants and agreements reached between Supplier and Buyer,\n the Buyer hereby sends to the Supplier the following Confirmation, consisting of:\n
\nSr | \nItem Name | \nDescription | \n \nQty | \nRate | \nAmount | \n
---|---|---|---|---|---|
{{ row.idx }} | \n\n {{ row.item_name }}\n {% if row.item_code != row.item_name -%}\n Item Code: {{ row.item_code}}\n {%- endif %}\n | \n \n {{ row.description }} | \n {{ row.qty }} {{ row.uom or row.stock_uom }} | \n{{ row.get_formatted(\"rate\", doc) }} | \n{{ row.get_formatted(\"amount\", doc) }} | \n
\n Original invoices should be issued in favor of ONE FM and must be delivered to our premises to the address mentioned . Send also a copy of the invoice by email to: b.manuchandran@one-fm.com and finance@one-fm.com\n
\n\n Certificate of Origin (if required) and packing list must accompany the goods.\n
\n\n NOTE: To avoid payment delays, the invoice must state the above Order Confirmation Number and Your Banking Details.\n
\n{{message_heading}}'
+ msg_details = [
+ {'label':'Document Type', 'value': '{{doctype}}'},
+ {'label':'Document Name', 'value': '{{name}}'},
+ {'label':'Description', 'value': description},
+ {'label':'Content', 'value': '{{name}} Employee ID has changed to {{employee_id}}'},
+ {'label':'Document Link', 'value': doc_link},
+ ]
+ if msg_details:
+ message_html += '''
+
+ The details are as follows:
+
+
Label | +Value | +
---|---|
'''+msg_detail['label']+''' | +'''+msg_detail['value']+''' | +