Skip to content
Extraits de code Groupes Projets
Valider 24d3fb18 rédigé par Mohamed Lemine BAILLAHI's avatar Mohamed Lemine BAILLAHI
Parcourir les fichiers

Merge branch 'VSN-1168' into 'develop'

VSN-1168 / Add new column date to Validated Road Map List

Closes VSN-1168

See merge request !236
parents f03544db 5d5aac60
Branches
Étiquettes
1 requête de fusion!236VSN-1168 / Add new column date to Validated Road Map List
Pipeline #19946 réussi avec les étapes
in 6 minutes et 13 secondes
......@@ -25,6 +25,7 @@ const randomNumber = (min: number, max: number) => {
return {
id: (index + 1).toString(),
date: new Date(2025, 0, index + 1).toISOString().split('T')[0],
driverName: `${_prenoms[index % _prenoms.length]} ${_noms[index % _noms.length]}`,
totalDay: totalDay.toString(),
totalInHundredths: totalInHundredths,
......@@ -39,6 +40,7 @@ const randomNumber = (min: number, max: number) => {
})
export const DEFAULT_VALID_ROADMAP_TABLE_HEAD: TableColumn[] = [
{ id: "date", label: "Date", type: "date", align: "center" },
{ id: "driverName", label: "Nom du chauffeur", type: "text" },
{ id: "totalDay", label: "Total journée", type: "number", align: "center" },
{ id: "totalInHundredths", label: "Total en centième", type: "number", align: "center" },
......@@ -54,6 +56,7 @@ export const DEFAULT_VALID_ROADMAP_TABLE_HEAD: TableColumn[] = [
export const INITIAL_VALID_ROADMAP: IValidRoadmap = {
id: "",
date: "",
driverName: "",
totalDay: "",
totalInHundredths: "",
......
......@@ -142,6 +142,7 @@ export interface OldSubmittedRoadMapFilterParams {
export type IValidRoadmap = {
id: string
date: string
driverName: string
totalDay: string
totalInHundredths: string
......
0% ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter