dine360-POS-System/utils/constant.utils.js
2025-07-02 17:04:47 +05:30

115 lines
2.8 KiB
JavaScript

export const tbl_floor = [
{ id: 1, description: "Ground floor seating area", branch: "Main Branch", floorname: "Ground" },
{ id: 2, description: "First floor VIP lounge", branch: "Main Branch", floorname: "First" },
{ id: 3, description: "Second floor banquet hall", branch: "Main Branch", floorname: "Second" },
{ id: 4, description: "Rooftop terrace", branch: "Main Branch", floorname: "Roof" },
{ id: 5, description: "Basement private room", branch: "Main Branch", floorname: "Basement" }
]
export const tbl_section = [
{
id: 1,
description: "Near the windows",
branch: "Main Branch",
floorname: "Ground",
sectionname: "East Wing",
floorid: 1
},
{
id: 2,
description: "By the bar",
branch: "Main Branch",
floorname: "Ground",
sectionname: "West Wing",
floorid: 1
},
{
id: 3,
description: "Private cubicles",
branch: "Main Branch",
floorname: "First",
sectionname: "North Wing",
floorid: 2
},
{
id: 4,
description: "Open lounge area",
branch: "Main Branch",
floorname: "First",
sectionname: "South Wing",
floorid: 2
},
{
id: 5,
description: "Garden view",
branch: "Main Branch",
floorname: "Roof",
sectionname: "Terrace",
floorid: 4
}
]
export const tbl_table = [
{
id: 1,
branch: "Main Branch",
status: "available",
description: "Table for two by window",
tablename: "T-01",
totalcapacity: 2,
minimumoccupancy: 1,
floorid: 1,
sectionid: 1
},
{
id: 2,
branch: "Main Branch",
status: "occupied",
description: "Large family table",
tablename: "T-02",
totalcapacity: 8,
minimumoccupancy: 4,
floorid: 1,
sectionid: 2
},
{
id: 3,
branch: "Main Branch",
status: "reserved",
description: "VIP lounge table",
tablename: "T-03",
totalcapacity: 4,
minimumoccupancy: 2,
floorid: 2,
sectionid: 3
},
{
id: 4,
branch: "Main Branch",
status: "available",
description: "Bar counter seat",
tablename: "T-04",
totalcapacity: 1,
minimumoccupancy: 1,
floorid: 1,
sectionid: 2
},
{
id: 5,
branch: "Main Branch",
status: "available",
description: "Terrace table with garden view",
tablename: "T-05",
totalcapacity: 6,
minimumoccupancy: 2,
floorid: 4,
sectionid: 5
}
]
export const gradientClasses = [
"bg-tb-success",
"bg-tb-primary",
"bg-tb-lilac",
"bg-tb-warning",
];