Update for version-14

This commit is contained in:
Christian Anetzberger
2022-11-10 14:49:14 +01:00
parent 0619cae23c
commit e62195815f
2 changed files with 19 additions and 29 deletions

19
.gitignore vendored
View File

@@ -1,6 +1,19 @@
.DS_Store
*.pyc *.pyc
*.py~
.DS_Store
conf.py
locale
latest_updates.json
.wnf-lang-status
*.egg-info *.egg-info
dist/
manufacturing_overview/public/dist
manufacturing_overview/docs/current
*.swp *.swp
tags *.swo
manufacturing_overview/docs/current __pycache__
*~
.idea/
.vscode/
node_modules/
.backportrc.json

View File

@@ -1,13 +1,14 @@
from . import __version__ as app_version from frappe import _
app_name = "manufacturing_overview" app_name = "manufacturing_overview"
app_title = "Manufacturing Overview" app_title = "Manufacturing Overview"
app_publisher = "CAnetzberger Design" app_publisher = "CAnetzberger Design"
app_description = "Dashboard Overview for Sales Orders Items to be manufactured" app_description = "Dashboard Overview for Sales Orders Items to be manufactured"
app_icon = "octicon octicon-file-directory" app_icon = "fa fa-th"
app_color = "grey" app_color = "grey"
app_email = "admin@canetzberger.design" app_email = "admin@canetzberger.design"
app_license = "MIT" app_license = "MIT"
required_apps = ["erpnext"]
# Includes in <head> # Includes in <head>
# ------------------ # ------------------
@@ -148,30 +149,6 @@ app_include_js = "/assets/manufacturing_overview/js/manufacturing_overview.min.j
# auto_cancel_exempted_doctypes = ["Auto Repeat"] # auto_cancel_exempted_doctypes = ["Auto Repeat"]
# User Data Protection
# --------------------
user_data_fields = [
{
"doctype": "{doctype_1}",
"filter_by": "{filter_by}",
"redact_fields": ["{field_1}", "{field_2}"],
"partial": 1,
},
{
"doctype": "{doctype_2}",
"filter_by": "{filter_by}",
"partial": 1,
},
{
"doctype": "{doctype_3}",
"strict": False,
},
{
"doctype": "{doctype_4}"
}
]
# Authentication and authorization # Authentication and authorization
# -------------------------------- # --------------------------------