Fix on invoices, add delivery reference, wip on dashboard concurrency requests designed on template
This commit is contained in:
@@ -56,4 +56,52 @@ ul .jqtree_common {
|
||||
|
||||
body {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.dashboard {
|
||||
color: #527C39!important;
|
||||
}
|
||||
|
||||
.dashboard .counter .index {
|
||||
font-size: 1.6em;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.dashboard .counter .value {
|
||||
font-size: 24px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.dashboard .counter .table {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.dashtable .card-header {
|
||||
padding: 4px 0 4px 10px;
|
||||
background-color: #527C39!important;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.dashtable .card-title {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.dashtable td {
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.dashtable .text-muted {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
.dashtable .counter .index {
|
||||
color: #527C39!important;
|
||||
font-size: 1.2em;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.dashtable .counter .value {
|
||||
color: #527C39!important;
|
||||
font-size: 1.4em;
|
||||
}
|
||||
45
build/js/plugins/daterangepicker/fr.js
Normal file
45
build/js/plugins/daterangepicker/fr.js
Normal file
@@ -0,0 +1,45 @@
|
||||
/* require moment.js */
|
||||
var dateRangePickerLanguage = {
|
||||
format: "DD/MM/YYYY",
|
||||
separator: " au ",
|
||||
locale: {
|
||||
applyLabel: "Valider",
|
||||
cancelLabel: "Retour",
|
||||
fromLabel: "Du",
|
||||
toLabel: "Au",
|
||||
customRangeLabel: "Personnalisé",
|
||||
weekLabel: "S",
|
||||
daysOfWeek: [
|
||||
"Dim",
|
||||
"Lun",
|
||||
"Mar",
|
||||
"Mer",
|
||||
"Jeu",
|
||||
"Ven",
|
||||
"Sam"
|
||||
],
|
||||
monthNames: [
|
||||
"Jan",
|
||||
"Fev",
|
||||
"Mar",
|
||||
"Avr",
|
||||
"Mai",
|
||||
"Juin",
|
||||
"Juil",
|
||||
"Aou",
|
||||
"Sep",
|
||||
"Oct",
|
||||
"Nov",
|
||||
"Déc"
|
||||
],
|
||||
firstDay: 1
|
||||
},
|
||||
ranges: {
|
||||
'Aujourd\'hui': [moment(), moment()],
|
||||
'Hier': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
|
||||
'La semaine dernière': [moment().subtract(6, 'days'), moment()],
|
||||
'30 derniers jours': [moment().subtract(29, 'days'), moment()],
|
||||
'Ce mois-ci': [moment().startOf('month'), moment().endOf('month')],
|
||||
'Le mois dernier': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')]
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user