hns
3 years ago
179 changed files with 2080 additions and 476 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,43 +0,0 @@ |
|||
[ |
|||
{ |
|||
|
|||
"allow_on_submit": 0, |
|||
"bold": 0, |
|||
"collapsible": 0, |
|||
"collapsible_depends_on": null, |
|||
"columns": 0, |
|||
"default": null, |
|||
"depends_on": null, |
|||
"description": null, |
|||
"docstatus": 0, |
|||
"doctype": "Custom Field", |
|||
"dt": "User", |
|||
"fetch_from": null, |
|||
"fieldname": "pwd", |
|||
"fieldtype": "Data", |
|||
"hidden": 0, |
|||
"ignore_user_permissions": 0, |
|||
"ignore_xss_filter": 0, |
|||
"in_global_search": 0, |
|||
"in_list_view": 0, |
|||
"in_standard_filter": 0, |
|||
"insert_after": "new_password", |
|||
"label": "PWD", |
|||
"name": "User-pwd", |
|||
"no_copy": 0, |
|||
"options": "", |
|||
"permlevel": 0, |
|||
"precision": "", |
|||
"print_hide": 0, |
|||
"print_hide_if_no_value": 0, |
|||
"print_width": null, |
|||
"read_only": 0, |
|||
"report_hide": 0, |
|||
"reqd": 0, |
|||
"search_index": 0, |
|||
"translatable": 0, |
|||
"unique": 0, |
|||
"width": null |
|||
|
|||
} |
|||
] |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,8 @@ |
|||
// Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors
|
|||
// For license information, please see license.txt
|
|||
|
|||
frappe.ui.form.on('Asset 360', { |
|||
// refresh: function(frm) {
|
|||
|
|||
// }
|
|||
}); |
@ -0,0 +1,110 @@ |
|||
{ |
|||
"actions": [], |
|||
"autoname": "format:{vehicle}", |
|||
"creation": "2022-02-13 21:28:52.997368", |
|||
"doctype": "DocType", |
|||
"editable_grid": 1, |
|||
"engine": "InnoDB", |
|||
"field_order": [ |
|||
"vehicle", |
|||
"column_break_2", |
|||
"active_status", |
|||
"exterior_360_section", |
|||
"hero_shot", |
|||
"exterior_360_asset", |
|||
"exterior_360_hotspots", |
|||
"interior_360_section", |
|||
"interior_360_asset", |
|||
"interior_360_hotspots" |
|||
], |
|||
"fields": [ |
|||
{ |
|||
"fieldname": "vehicle", |
|||
"fieldtype": "Link", |
|||
"in_list_view": 1, |
|||
"label": "Vehicle", |
|||
"options": "Vehicle", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "column_break_2", |
|||
"fieldtype": "Column Break" |
|||
}, |
|||
{ |
|||
"fieldname": "active_status", |
|||
"fieldtype": "Select", |
|||
"in_list_view": 1, |
|||
"label": "Active Status", |
|||
"options": "Active\nInactive", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "exterior_360_section", |
|||
"fieldtype": "Section Break", |
|||
"label": "Exterior 360" |
|||
}, |
|||
{ |
|||
"fieldname": "exterior_360_asset", |
|||
"fieldtype": "Attach", |
|||
"in_list_view": 1, |
|||
"label": "Exterior 360 Asset", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "exterior_360_hotspots", |
|||
"fieldtype": "Table", |
|||
"label": "Exterior 360 Hotspots", |
|||
"options": "Asset 360 Hotspot Items" |
|||
}, |
|||
{ |
|||
"fieldname": "interior_360_section", |
|||
"fieldtype": "Section Break", |
|||
"label": "Interior 360" |
|||
}, |
|||
{ |
|||
"fieldname": "interior_360_asset", |
|||
"fieldtype": "Attach", |
|||
"in_list_view": 1, |
|||
"label": "Interior 360 Asset", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "interior_360_hotspots", |
|||
"fieldtype": "Table", |
|||
"label": "Interior 360 Hotspots", |
|||
"options": "Asset 360 Hotspot Items" |
|||
}, |
|||
{ |
|||
"description": "for Info stand", |
|||
"fieldname": "hero_shot", |
|||
"fieldtype": "Attach Image", |
|||
"label": "Hero Shot" |
|||
} |
|||
], |
|||
"image_field": "hero_shot", |
|||
"index_web_pages_for_search": 1, |
|||
"links": [], |
|||
"modified": "2022-02-13 21:32:04.109344", |
|||
"modified_by": "Administrator", |
|||
"module": "Masters", |
|||
"name": "Asset 360", |
|||
"owner": "Administrator", |
|||
"permissions": [ |
|||
{ |
|||
"create": 1, |
|||
"delete": 1, |
|||
"email": 1, |
|||
"export": 1, |
|||
"print": 1, |
|||
"read": 1, |
|||
"report": 1, |
|||
"role": "System Manager", |
|||
"share": 1, |
|||
"write": 1 |
|||
} |
|||
], |
|||
"sort_field": "modified", |
|||
"sort_order": "DESC", |
|||
"title_field": "vehicle", |
|||
"track_changes": 1 |
|||
} |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors |
|||
# For license information, please see license.txt |
|||
|
|||
# import frappe |
|||
from frappe.model.document import Document |
|||
|
|||
class Asset360(Document): |
|||
pass |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and Contributors |
|||
# See license.txt |
|||
|
|||
# import frappe |
|||
import unittest |
|||
|
|||
class TestAsset360(unittest.TestCase): |
|||
pass |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,39 @@ |
|||
{ |
|||
"actions": [], |
|||
"creation": "2022-02-13 21:27:45.788343", |
|||
"doctype": "DocType", |
|||
"editable_grid": 1, |
|||
"engine": "InnoDB", |
|||
"field_order": [ |
|||
"hotspot_id", |
|||
"remarks" |
|||
], |
|||
"fields": [ |
|||
{ |
|||
"columns": 3, |
|||
"fieldname": "hotspot_id", |
|||
"fieldtype": "Data", |
|||
"in_list_view": 1, |
|||
"label": "Hotspot ID", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"columns": 7, |
|||
"fieldname": "remarks", |
|||
"fieldtype": "Data", |
|||
"in_list_view": 1, |
|||
"label": "Remarks" |
|||
} |
|||
], |
|||
"index_web_pages_for_search": 1, |
|||
"istable": 1, |
|||
"links": [], |
|||
"modified": "2022-02-13 21:27:45.788343", |
|||
"modified_by": "Administrator", |
|||
"module": "Masters", |
|||
"name": "Asset 360 Hotspot Items", |
|||
"owner": "Administrator", |
|||
"permissions": [], |
|||
"sort_field": "modified", |
|||
"sort_order": "DESC" |
|||
} |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors |
|||
# For license information, please see license.txt |
|||
|
|||
# import frappe |
|||
from frappe.model.document import Document |
|||
|
|||
class Asset360HotspotItems(Document): |
|||
pass |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,8 @@ |
|||
// Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors
|
|||
// For license information, please see license.txt
|
|||
|
|||
frappe.ui.form.on('Competitor', { |
|||
// refresh: function(frm) {
|
|||
|
|||
// }
|
|||
}); |
@ -0,0 +1,67 @@ |
|||
{ |
|||
"actions": [], |
|||
"autoname": "format:{vehicle_name}", |
|||
"creation": "2022-02-13 19:33:17.995623", |
|||
"doctype": "DocType", |
|||
"editable_grid": 1, |
|||
"engine": "InnoDB", |
|||
"field_order": [ |
|||
"vehicle_name", |
|||
"variant", |
|||
"active_status", |
|||
"image" |
|||
], |
|||
"fields": [ |
|||
{ |
|||
"fieldname": "vehicle_name", |
|||
"fieldtype": "Data", |
|||
"in_list_view": 1, |
|||
"label": "Vehicle Name", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "active_status", |
|||
"fieldtype": "Select", |
|||
"in_list_view": 1, |
|||
"label": "Active Status", |
|||
"options": "Active\nInactive", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "image", |
|||
"fieldtype": "Attach Image", |
|||
"label": "Image" |
|||
}, |
|||
{ |
|||
"fieldname": "variant", |
|||
"fieldtype": "Data", |
|||
"label": "Variant" |
|||
} |
|||
], |
|||
"image_field": "image", |
|||
"index_web_pages_for_search": 1, |
|||
"links": [], |
|||
"modified": "2022-02-13 19:43:53.741741", |
|||
"modified_by": "Administrator", |
|||
"module": "Masters", |
|||
"name": "Competitor", |
|||
"owner": "Administrator", |
|||
"permissions": [ |
|||
{ |
|||
"create": 1, |
|||
"delete": 1, |
|||
"email": 1, |
|||
"export": 1, |
|||
"print": 1, |
|||
"read": 1, |
|||
"report": 1, |
|||
"role": "System Manager", |
|||
"share": 1, |
|||
"write": 1 |
|||
} |
|||
], |
|||
"sort_field": "modified", |
|||
"sort_order": "DESC", |
|||
"title_field": "vehicle_name", |
|||
"track_changes": 1 |
|||
} |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors |
|||
# For license information, please see license.txt |
|||
|
|||
# import frappe |
|||
from frappe.model.document import Document |
|||
|
|||
class Competitor(Document): |
|||
pass |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and Contributors |
|||
# See license.txt |
|||
|
|||
# import frappe |
|||
import unittest |
|||
|
|||
class TestCompetitor(unittest.TestCase): |
|||
pass |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,8 @@ |
|||
// Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors
|
|||
// For license information, please see license.txt
|
|||
|
|||
frappe.ui.form.on('Customer Profile', { |
|||
// refresh: function(frm) {
|
|||
|
|||
// }
|
|||
}); |
@ -0,0 +1,81 @@ |
|||
{ |
|||
"actions": [], |
|||
"autoname": "CUST.#####", |
|||
"creation": "2022-02-13 20:55:57.161845", |
|||
"doctype": "DocType", |
|||
"editable_grid": 1, |
|||
"engine": "InnoDB", |
|||
"field_order": [ |
|||
"name1", |
|||
"mobile", |
|||
"email", |
|||
"column_break_4", |
|||
"dealer_code", |
|||
"registration_time" |
|||
], |
|||
"fields": [ |
|||
{ |
|||
"fieldname": "name1", |
|||
"fieldtype": "Data", |
|||
"in_list_view": 1, |
|||
"label": "Name", |
|||
"options": "Name", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "mobile", |
|||
"fieldtype": "Data", |
|||
"in_list_view": 1, |
|||
"label": "Mobile", |
|||
"options": "Phone", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "email", |
|||
"fieldtype": "Data", |
|||
"in_list_view": 1, |
|||
"label": "Email", |
|||
"options": "Email", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "column_break_4", |
|||
"fieldtype": "Column Break" |
|||
}, |
|||
{ |
|||
"fieldname": "dealer_code", |
|||
"fieldtype": "Link", |
|||
"label": "Dealer Code", |
|||
"options": "Dealer" |
|||
}, |
|||
{ |
|||
"fieldname": "registration_time", |
|||
"fieldtype": "Data", |
|||
"label": "Registration Time" |
|||
} |
|||
], |
|||
"index_web_pages_for_search": 1, |
|||
"links": [], |
|||
"modified": "2022-02-15 10:02:07.864699", |
|||
"modified_by": "Administrator", |
|||
"module": "Masters", |
|||
"name": "Customer Profile", |
|||
"owner": "Administrator", |
|||
"permissions": [ |
|||
{ |
|||
"create": 1, |
|||
"delete": 1, |
|||
"email": 1, |
|||
"export": 1, |
|||
"print": 1, |
|||
"read": 1, |
|||
"report": 1, |
|||
"role": "System Manager", |
|||
"share": 1, |
|||
"write": 1 |
|||
} |
|||
], |
|||
"sort_field": "modified", |
|||
"sort_order": "DESC", |
|||
"track_changes": 1 |
|||
} |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors |
|||
# For license information, please see license.txt |
|||
|
|||
# import frappe |
|||
from frappe.model.document import Document |
|||
|
|||
class CustomerProfile(Document): |
|||
pass |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and Contributors |
|||
# See license.txt |
|||
|
|||
# import frappe |
|||
import unittest |
|||
|
|||
class TestCustomerProfile(unittest.TestCase): |
|||
pass |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,8 @@ |
|||
// Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors
|
|||
// For license information, please see license.txt
|
|||
|
|||
frappe.ui.form.on('Dealer', { |
|||
// refresh: function(frm) {
|
|||
|
|||
// }
|
|||
}); |
@ -0,0 +1,61 @@ |
|||
{ |
|||
"actions": [], |
|||
"autoname": "format:{dealer_name}", |
|||
"creation": "2022-02-13 20:51:54.246914", |
|||
"doctype": "DocType", |
|||
"editable_grid": 1, |
|||
"engine": "InnoDB", |
|||
"field_order": [ |
|||
"dealer_name", |
|||
"dealer_code", |
|||
"mobile_number" |
|||
], |
|||
"fields": [ |
|||
{ |
|||
"fieldname": "dealer_name", |
|||
"fieldtype": "Data", |
|||
"in_list_view": 1, |
|||
"label": "Dealer Name", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "dealer_code", |
|||
"fieldtype": "Data", |
|||
"in_list_view": 1, |
|||
"label": "Dealer Code", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "mobile_number", |
|||
"fieldtype": "Data", |
|||
"in_list_view": 1, |
|||
"label": "Mobile Number", |
|||
"reqd": 1 |
|||
} |
|||
], |
|||
"index_web_pages_for_search": 1, |
|||
"links": [], |
|||
"modified": "2022-02-13 20:51:54.246914", |
|||
"modified_by": "Administrator", |
|||
"module": "Masters", |
|||
"name": "Dealer", |
|||
"owner": "Administrator", |
|||
"permissions": [ |
|||
{ |
|||
"create": 1, |
|||
"delete": 1, |
|||
"email": 1, |
|||
"export": 1, |
|||
"print": 1, |
|||
"read": 1, |
|||
"report": 1, |
|||
"role": "System Manager", |
|||
"share": 1, |
|||
"write": 1 |
|||
} |
|||
], |
|||
"sort_field": "modified", |
|||
"sort_order": "DESC", |
|||
"title_field": "dealer_name", |
|||
"track_changes": 1 |
|||
} |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors |
|||
# For license information, please see license.txt |
|||
|
|||
# import frappe |
|||
from frappe.model.document import Document |
|||
|
|||
class Dealer(Document): |
|||
pass |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and Contributors |
|||
# See license.txt |
|||
|
|||
# import frappe |
|||
import unittest |
|||
|
|||
class TestDealer(unittest.TestCase): |
|||
pass |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,8 @@ |
|||
// Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors
|
|||
// For license information, please see license.txt
|
|||
|
|||
frappe.ui.form.on('Gallery', { |
|||
// refresh: function(frm) {
|
|||
|
|||
// }
|
|||
}); |
@ -0,0 +1,72 @@ |
|||
{ |
|||
"actions": [], |
|||
"autoname": "format:{vehicle}", |
|||
"creation": "2022-02-13 04:51:17.414100", |
|||
"doctype": "DocType", |
|||
"editable_grid": 1, |
|||
"engine": "InnoDB", |
|||
"field_order": [ |
|||
"vehicle", |
|||
"column_break_2", |
|||
"active_status", |
|||
"section_break_4", |
|||
"gallery_items" |
|||
], |
|||
"fields": [ |
|||
{ |
|||
"fieldname": "vehicle", |
|||
"fieldtype": "Link", |
|||
"in_list_view": 1, |
|||
"label": "Vehicle", |
|||
"options": "Vehicle", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "column_break_2", |
|||
"fieldtype": "Column Break" |
|||
}, |
|||
{ |
|||
"fieldname": "active_status", |
|||
"fieldtype": "Select", |
|||
"in_list_view": 1, |
|||
"label": "Active Status", |
|||
"options": "Active\nInactive", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "section_break_4", |
|||
"fieldtype": "Section Break" |
|||
}, |
|||
{ |
|||
"fieldname": "gallery_items", |
|||
"fieldtype": "Table", |
|||
"label": "Gallery Items", |
|||
"options": "Gallery Items" |
|||
} |
|||
], |
|||
"index_web_pages_for_search": 1, |
|||
"links": [], |
|||
"modified": "2022-02-13 04:51:17.414100", |
|||
"modified_by": "Administrator", |
|||
"module": "Masters", |
|||
"name": "Gallery", |
|||
"owner": "Administrator", |
|||
"permissions": [ |
|||
{ |
|||
"create": 1, |
|||
"delete": 1, |
|||
"email": 1, |
|||
"export": 1, |
|||
"print": 1, |
|||
"read": 1, |
|||
"report": 1, |
|||
"role": "System Manager", |
|||
"share": 1, |
|||
"write": 1 |
|||
} |
|||
], |
|||
"sort_field": "modified", |
|||
"sort_order": "DESC", |
|||
"title_field": "vehicle", |
|||
"track_changes": 1 |
|||
} |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors |
|||
# For license information, please see license.txt |
|||
|
|||
# import frappe |
|||
from frappe.model.document import Document |
|||
|
|||
class Gallery(Document): |
|||
pass |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and Contributors |
|||
# See license.txt |
|||
|
|||
# import frappe |
|||
import unittest |
|||
|
|||
class TestGallery(unittest.TestCase): |
|||
pass |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,46 @@ |
|||
{ |
|||
"actions": [], |
|||
"creation": "2022-02-13 04:47:57.408390", |
|||
"doctype": "DocType", |
|||
"editable_grid": 1, |
|||
"engine": "InnoDB", |
|||
"field_order": [ |
|||
"gallery_item", |
|||
"preview", |
|||
"remarks" |
|||
], |
|||
"fields": [ |
|||
{ |
|||
"fieldname": "gallery_item", |
|||
"fieldtype": "Attach", |
|||
"in_list_view": 1, |
|||
"in_preview": 1, |
|||
"label": "Gallery Item", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "preview", |
|||
"fieldtype": "Image", |
|||
"label": "Preview", |
|||
"options": "gallery_item" |
|||
}, |
|||
{ |
|||
"fieldname": "remarks", |
|||
"fieldtype": "Data", |
|||
"in_list_view": 1, |
|||
"in_preview": 1, |
|||
"label": "Remarks" |
|||
} |
|||
], |
|||
"index_web_pages_for_search": 1, |
|||
"istable": 1, |
|||
"links": [], |
|||
"modified": "2022-02-13 04:47:57.408390", |
|||
"modified_by": "Administrator", |
|||
"module": "Masters", |
|||
"name": "Gallery Items", |
|||
"owner": "Administrator", |
|||
"permissions": [], |
|||
"sort_field": "modified", |
|||
"sort_order": "DESC" |
|||
} |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors |
|||
# For license information, please see license.txt |
|||
|
|||
# import frappe |
|||
from frappe.model.document import Document |
|||
|
|||
class GalleryItems(Document): |
|||
pass |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,8 @@ |
|||
// Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors
|
|||
// For license information, please see license.txt
|
|||
|
|||
frappe.ui.form.on('Idle Screen', { |
|||
// refresh: function(frm) {
|
|||
|
|||
// }
|
|||
}); |
@ -0,0 +1,58 @@ |
|||
{ |
|||
"actions": [], |
|||
"autoname": "format:Idle_Screen", |
|||
"creation": "2022-02-13 21:40:33.755869", |
|||
"description": "- Set the Idle Time in minutes \n- Add the Assets (JPG, MP4)\n- Set Asset Status", |
|||
"doctype": "DocType", |
|||
"editable_grid": 1, |
|||
"engine": "InnoDB", |
|||
"field_order": [ |
|||
"idle_time", |
|||
"section_break_2", |
|||
"idle_screen_items" |
|||
], |
|||
"fields": [ |
|||
{ |
|||
"description": "mins", |
|||
"fieldname": "idle_time", |
|||
"fieldtype": "Data", |
|||
"in_list_view": 1, |
|||
"label": "Idle Time", |
|||
"length": 2 |
|||
}, |
|||
{ |
|||
"fieldname": "section_break_2", |
|||
"fieldtype": "Section Break" |
|||
}, |
|||
{ |
|||
"fieldname": "idle_screen_items", |
|||
"fieldtype": "Table", |
|||
"label": "Idle Screen Items", |
|||
"options": "Idle Screen Items" |
|||
} |
|||
], |
|||
"index_web_pages_for_search": 1, |
|||
"links": [], |
|||
"modified": "2022-02-13 22:02:32.320063", |
|||
"modified_by": "Administrator", |
|||
"module": "Masters", |
|||
"name": "Idle Screen", |
|||
"owner": "Administrator", |
|||
"permissions": [ |
|||
{ |
|||
"create": 1, |
|||
"delete": 1, |
|||
"email": 1, |
|||
"export": 1, |
|||
"print": 1, |
|||
"read": 1, |
|||
"report": 1, |
|||
"role": "System Manager", |
|||
"share": 1, |
|||
"write": 1 |
|||
} |
|||
], |
|||
"sort_field": "modified", |
|||
"sort_order": "DESC", |
|||
"track_changes": 1 |
|||
} |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors |
|||
# For license information, please see license.txt |
|||
|
|||
# import frappe |
|||
from frappe.model.document import Document |
|||
|
|||
class IdleScreen(Document): |
|||
pass |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and Contributors |
|||
# See license.txt |
|||
|
|||
# import frappe |
|||
import unittest |
|||
|
|||
class TestIdleScreen(unittest.TestCase): |
|||
pass |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,50 @@ |
|||
{ |
|||
"actions": [], |
|||
"allow_rename": 1, |
|||
"creation": "2022-02-13 21:38:06.703121", |
|||
"doctype": "DocType", |
|||
"editable_grid": 1, |
|||
"engine": "InnoDB", |
|||
"field_order": [ |
|||
"idle_asset", |
|||
"active_status", |
|||
"remarks" |
|||
], |
|||
"fields": [ |
|||
{ |
|||
"columns": 3, |
|||
"fieldname": "idle_asset", |
|||
"fieldtype": "Attach", |
|||
"in_list_view": 1, |
|||
"label": "Idle Asset", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"columns": 2, |
|||
"fieldname": "active_status", |
|||
"fieldtype": "Select", |
|||
"in_list_view": 1, |
|||
"label": "Active Status", |
|||
"options": "Active\nInactive", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"columns": 5, |
|||
"fieldname": "remarks", |
|||
"fieldtype": "Data", |
|||
"in_list_view": 1, |
|||
"label": "Remarks" |
|||
} |
|||
], |
|||
"index_web_pages_for_search": 1, |
|||
"istable": 1, |
|||
"links": [], |
|||
"modified": "2022-02-13 21:38:06.703121", |
|||
"modified_by": "Administrator", |
|||
"module": "Masters", |
|||
"name": "Idle Screen Items", |
|||
"owner": "Administrator", |
|||
"permissions": [], |
|||
"sort_field": "modified", |
|||
"sort_order": "DESC" |
|||
} |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors |
|||
# For license information, please see license.txt |
|||
|
|||
# import frappe |
|||
from frappe.model.document import Document |
|||
|
|||
class IdleScreenItems(Document): |
|||
pass |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,8 @@ |
|||
// Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors
|
|||
// For license information, please see license.txt
|
|||
|
|||
frappe.ui.form.on('Six Reasons to Buy', { |
|||
// refresh: function(frm) {
|
|||
|
|||
// }
|
|||
}); |
@ -0,0 +1,73 @@ |
|||
{ |
|||
"actions": [], |
|||
"autoname": "format:{vehicle}.{title}", |
|||
"creation": "2022-02-12 20:05:59.552613", |
|||
"doctype": "DocType", |
|||
"editable_grid": 1, |
|||
"engine": "InnoDB", |
|||
"field_order": [ |
|||
"vehicle", |
|||
"title", |
|||
"description", |
|||
"image" |
|||
], |
|||
"fields": [ |
|||
{ |
|||
"fieldname": "title", |
|||
"fieldtype": "Data", |
|||
"in_list_view": 1, |
|||
"in_standard_filter": 1, |
|||
"label": "Title", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "description", |
|||
"fieldtype": "Small Text", |
|||
"in_list_view": 1, |
|||
"in_standard_filter": 1, |
|||
"label": "Description", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "image", |
|||
"fieldtype": "Attach Image", |
|||
"label": "Image", |
|||
"reqd": 1 |
|||
}, |
|||
{ |
|||
"fieldname": "vehicle", |
|||
"fieldtype": "Link", |
|||
"in_list_view": 1, |
|||
"in_standard_filter": 1, |
|||
"label": "Vehicle", |
|||
"options": "Vehicle", |
|||
"reqd": 1 |
|||
} |
|||
], |
|||
"image_field": "image", |
|||
"index_web_pages_for_search": 1, |
|||
"links": [], |
|||
"modified": "2022-02-13 04:40:25.915820", |
|||
"modified_by": "Administrator", |
|||
"module": "Masters", |
|||
"name": "Six Reasons to Buy", |
|||
"owner": "Administrator", |
|||
"permissions": [ |
|||
{ |
|||
"create": 1, |
|||
"delete": 1, |
|||
"email": 1, |
|||
"export": 1, |
|||
"print": 1, |
|||
"read": 1, |
|||
"report": 1, |
|||
"role": "System Manager", |
|||
"share": 1, |
|||
"write": 1 |
|||
} |
|||
], |
|||
"sort_field": "modified", |
|||
"sort_order": "DESC", |
|||
"title_field": "title", |
|||
"track_changes": 1 |
|||
} |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors |
|||
# For license information, please see license.txt |
|||
|
|||
# import frappe |
|||
from frappe.model.document import Document |
|||
|
|||
class SixReasonstoBuy(Document): |
|||
pass |
@ -0,0 +1,8 @@ |
|||
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and Contributors |
|||
# See license.txt |
|||
|
|||
# import frappe |
|||
import unittest |
|||
|
|||
class TestSixReasonstoBuy(unittest.TestCase): |
|||
pass |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue