Renamed ATP to ATS and updated totals calculation logic. Logic is still WIP
This commit is contained in:
@@ -25,7 +25,7 @@ export const MockBodyshop = {
|
||||
"Completed",
|
||||
"Delivered",
|
||||
"Invoiced",
|
||||
"Exported"
|
||||
"Exported",
|
||||
],
|
||||
open_statuses: [
|
||||
"Open",
|
||||
@@ -35,7 +35,7 @@ export const MockBodyshop = {
|
||||
"Parts",
|
||||
"Body",
|
||||
"Prep",
|
||||
"Paint"
|
||||
"Paint",
|
||||
],
|
||||
default_arrived: "Arrived",
|
||||
default_exported: "Exported",
|
||||
@@ -43,14 +43,14 @@ export const MockBodyshop = {
|
||||
default_invoiced: "Invoiced",
|
||||
default_completed: "Completed",
|
||||
default_delivered: "Delivered",
|
||||
default_scheduled: "Scheduled"
|
||||
default_scheduled: "Scheduled",
|
||||
},
|
||||
md_order_statuses: {
|
||||
statuses: ["Ordered", "Received", "Canceled", "Backordered"],
|
||||
default_bo: "Backordered",
|
||||
default_ordered: "Ordered",
|
||||
default_canceled: "Canceled",
|
||||
default_received: "Received"
|
||||
default_received: "Received",
|
||||
},
|
||||
shopname: "Testing Collision",
|
||||
state: "BC",
|
||||
@@ -61,7 +61,7 @@ export const MockBodyshop = {
|
||||
md_responsibility_centers: {
|
||||
costs: [
|
||||
"Aftermarket",
|
||||
"ATP",
|
||||
"ATS",
|
||||
"Body",
|
||||
"Detail",
|
||||
"Daignostic",
|
||||
@@ -80,11 +80,11 @@ export const MockBodyshop = {
|
||||
"Remanufactured",
|
||||
"Other",
|
||||
"Sublet",
|
||||
"Towing"
|
||||
"Towing",
|
||||
],
|
||||
profits: [
|
||||
"Aftermarket",
|
||||
"ATP",
|
||||
"ATS",
|
||||
"Body",
|
||||
"Detail",
|
||||
"Daignostic",
|
||||
@@ -103,10 +103,10 @@ export const MockBodyshop = {
|
||||
"Remanufactured",
|
||||
"Other",
|
||||
"Sublet",
|
||||
"Towing"
|
||||
"Towing",
|
||||
],
|
||||
defaults: {
|
||||
ATP: "ATP",
|
||||
ATS: "ATS",
|
||||
LAB: "Body",
|
||||
LAD: "Diagnostic",
|
||||
LAE: "Electrical",
|
||||
@@ -124,8 +124,8 @@ export const MockBodyshop = {
|
||||
PAO: "Other",
|
||||
PAP: "OEM Partial",
|
||||
PAR: "16",
|
||||
TOW: "Towing"
|
||||
}
|
||||
TOW: "Towing",
|
||||
},
|
||||
},
|
||||
employees: [
|
||||
{
|
||||
@@ -134,7 +134,7 @@ export const MockBodyshop = {
|
||||
last_name: "BODY123",
|
||||
employee_number: "101",
|
||||
cost_center: "Body",
|
||||
__typename: "employees"
|
||||
__typename: "employees",
|
||||
},
|
||||
{
|
||||
id: "8cc787d3-1cfe-49d3-8a15-8469cd5c2e41",
|
||||
@@ -142,7 +142,7 @@ export const MockBodyshop = {
|
||||
last_name: "Painter",
|
||||
employee_number: "10211",
|
||||
cost_center: "REFINISH",
|
||||
__typename: "employees"
|
||||
}
|
||||
]
|
||||
__typename: "employees",
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user