Merge pull request #44513 from ljain112/draft-status-color

fix: correct color for draft in list view
This commit is contained in:
ruthra kumar
2024-12-09 13:33:48 +05:30
committed by GitHub
5 changed files with 5 additions and 5 deletions

View File

@@ -4,7 +4,7 @@
frappe.listview_settings["Subcontracting Order"] = {
get_indicator: function (doc) {
const status_colors = {
Draft: "grey",
Draft: "red",
Open: "orange",
"Partially Received": "yellow",
Completed: "green",

View File

@@ -4,7 +4,7 @@
frappe.listview_settings["Subcontracting Receipt"] = {
get_indicator: function (doc) {
const status_colors = {
Draft: "grey",
Draft: "red",
Return: "gray",
"Return Issued": "grey",
Completed: "green",