Compare commits
41 Commits
server-sta
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9997e383cc | ||
|
|
5128322a6d | ||
|
|
43fc8d523c | ||
|
|
cd73dd3d58 | ||
|
|
28a00cc771 | ||
|
|
e2d067ff4b | ||
|
|
0b01ebe331 | ||
|
|
a9a2a4b312 | ||
|
|
deb5b5735c | ||
|
|
a0c440dfae | ||
|
|
a88b342a0d | ||
|
|
7e1253615b | ||
|
|
1a7d5cb64e | ||
|
|
0536035303 | ||
|
|
d7677df41b | ||
|
|
d9c1130359 | ||
|
|
401659ec99 | ||
|
|
3528fc6905 | ||
|
|
8b47a78e4a | ||
|
|
a281212bab | ||
|
|
b603541adf | ||
|
|
1b3e3cdd67 | ||
|
|
e4328ab652 | ||
|
|
692fbbe912 | ||
|
|
ece737e11d | ||
|
|
75e7a9256c | ||
|
|
52b5e49082 | ||
|
|
d27703f878 | ||
|
|
098d707289 | ||
|
|
66c4940aba | ||
|
|
147dd6e5a0 | ||
|
|
b7525ab51e | ||
|
|
d729a94a96 | ||
|
|
957494f8ef | ||
|
|
269823fd78 | ||
|
|
295bb26378 | ||
|
|
de797c1c0b | ||
|
|
de76a761a3 | ||
|
|
8759d85f3d | ||
|
|
89c65ca979 | ||
|
|
eecbd07b5c |
17
Dockerfile
17
Dockerfile
@@ -29,7 +29,8 @@ RUN pnpm install --frozen-lockfile
|
|||||||
# Copy source code
|
# Copy source code
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# Build frontend + backend
|
# Build frontend + backend. Les dépendances de développement restent confinées
|
||||||
|
# au builder et ne sont jamais copiées dans l'image d'exécution.
|
||||||
RUN pnpm build
|
RUN pnpm build
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
@@ -46,15 +47,19 @@ RUN apt-get update && apt-get install -y \
|
|||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Copy node_modules from builder (already compiled, including sharp native binaries)
|
ENV NODE_ENV=production
|
||||||
COPY --from=builder /app/node_modules ./node_modules
|
|
||||||
|
# Installer uniquement les dépendances d'exécution réduit fortement la taille
|
||||||
|
# de la couche exportée. Les binaires Sharp sont fournis par ses paquets
|
||||||
|
# optionnels de plateforme et ne nécessitent pas de script post-installation.
|
||||||
|
RUN npm install -g pnpm@10.4.1
|
||||||
|
COPY package.json pnpm-lock.yaml ./
|
||||||
|
COPY patches/ ./patches/
|
||||||
|
RUN pnpm install --prod --frozen-lockfile --ignore-scripts
|
||||||
|
|
||||||
# Copy built assets from builder (vite outputs to dist/public, esbuild to dist/)
|
# Copy built assets from builder (vite outputs to dist/public, esbuild to dist/)
|
||||||
COPY --from=builder /app/dist ./dist
|
COPY --from=builder /app/dist ./dist
|
||||||
|
|
||||||
# Copy package.json (needed for module resolution)
|
|
||||||
COPY package.json ./
|
|
||||||
|
|
||||||
# Copy drizzle migrations
|
# Copy drizzle migrations
|
||||||
COPY drizzle/ ./drizzle/
|
COPY drizzle/ ./drizzle/
|
||||||
COPY drizzle.config.ts ./
|
COPY drizzle.config.ts ./
|
||||||
|
|||||||
2
app.json
2
app.json
@@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containerName": "demat-facturation-app",
|
"containerName": "demat-facturation-app",
|
||||||
"image": "images/demat-facturation-dsi.jpg",
|
"image": "images/demat-facturation-dsi.jpg",
|
||||||
"giteaRepo": "demat-facturation",
|
"giteaRepo": "demat-facturation-dsi",
|
||||||
"giteaOwner": "manus-admin",
|
"giteaOwner": "manus-admin",
|
||||||
"ci": {
|
"ci": {
|
||||||
"required": true
|
"required": true
|
||||||
|
|||||||
@@ -26,6 +26,15 @@ const ImportReport = lazy(() => import("./pages/ImportReport"));
|
|||||||
const LearningSettings = lazy(() => import("./pages/LearningSettings"));
|
const LearningSettings = lazy(() => import("./pages/LearningSettings"));
|
||||||
const VentilationFreePro = lazy(() => import("./pages/VentilationFreePro"));
|
const VentilationFreePro = lazy(() => import("./pages/VentilationFreePro"));
|
||||||
const WebImportSources = lazy(() => import("./pages/WebImportSources"));
|
const WebImportSources = lazy(() => import("./pages/WebImportSources"));
|
||||||
|
const RealBudget = lazy(() => import("./pages/RealBudget"));
|
||||||
|
|
||||||
|
function SubscriptionInvoices() {
|
||||||
|
return <Invoices scope="subscriptions" />;
|
||||||
|
}
|
||||||
|
|
||||||
|
function AllInvoices() {
|
||||||
|
return <Invoices />;
|
||||||
|
}
|
||||||
|
|
||||||
function RouteFallback() {
|
function RouteFallback() {
|
||||||
return <div className="min-h-screen bg-background" aria-busy="true" aria-label="Chargement" />;
|
return <div className="min-h-screen bg-background" aria-busy="true" aria-label="Chargement" />;
|
||||||
@@ -38,8 +47,10 @@ function Router() {
|
|||||||
<Route path="/login" component={Login} />
|
<Route path="/login" component={Login} />
|
||||||
<Route path="/dashboard" component={Dashboard} />
|
<Route path="/dashboard" component={Dashboard} />
|
||||||
<Route path="/upload" component={Upload} />
|
<Route path="/upload" component={Upload} />
|
||||||
<Route path="/invoices" component={Invoices} />
|
<Route path="/invoices" component={AllInvoices} />
|
||||||
<Route path="/invoices-bap" component={InvoicesBAP} />
|
<Route path="/invoices-bap" component={InvoicesBAP} />
|
||||||
|
<Route path="/invoices-subscriptions" component={SubscriptionInvoices} />
|
||||||
|
<Route path="/real-budget" component={RealBudget} />
|
||||||
<Route path="/invoices/:id" component={InvoiceDetail} />
|
<Route path="/invoices/:id" component={InvoiceDetail} />
|
||||||
<Route path="/settings" component={Settings} />
|
<Route path="/settings" component={Settings} />
|
||||||
<Route path="/import-settings" component={ImportSettings} />
|
<Route path="/import-settings" component={ImportSettings} />
|
||||||
|
|||||||
@@ -53,6 +53,8 @@ const menuStructure: MenuItem[] = [
|
|||||||
{ icon: Upload, label: "Import", path: "/upload" },
|
{ icon: Upload, label: "Import", path: "/upload" },
|
||||||
{ icon: FileText, label: "Factures", path: "/invoices" },
|
{ icon: FileText, label: "Factures", path: "/invoices" },
|
||||||
{ icon: FileText, label: "Factures BAP", path: "/invoices-bap" },
|
{ icon: FileText, label: "Factures BAP", path: "/invoices-bap" },
|
||||||
|
{ icon: FileText, label: "Factures abonnements", path: "/invoices-subscriptions" },
|
||||||
|
{ icon: BarChart2, label: "Budget réel", path: "/real-budget" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
83
client/src/lib/bapNavigation.ts
Normal file
83
client/src/lib/bapNavigation.ts
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
/**
|
||||||
|
* Paramètres d’affichage qui doivent survivre au passage par le détail d’une
|
||||||
|
* facture BAP. Seules ces clés sont sérialisées afin d’éviter de propager des
|
||||||
|
* paramètres de navigation arbitraires.
|
||||||
|
*/
|
||||||
|
export type BapFilters = {
|
||||||
|
searchQuery: string;
|
||||||
|
statusFilter: string;
|
||||||
|
selectedYear: string;
|
||||||
|
selectedMonth: string;
|
||||||
|
sortField: "invoiceDate" | "createdAt";
|
||||||
|
sortDir: "asc" | "desc";
|
||||||
|
};
|
||||||
|
|
||||||
|
const BAP_STATUSES = new Set([
|
||||||
|
"all",
|
||||||
|
"exported",
|
||||||
|
"not_exported",
|
||||||
|
"export_error",
|
||||||
|
"bap_validated",
|
||||||
|
"bap_pending",
|
||||||
|
"to_complete",
|
||||||
|
]);
|
||||||
|
|
||||||
|
function asSearchParams(search: string): URLSearchParams {
|
||||||
|
return new URLSearchParams(search.startsWith("?") ? search.slice(1) : search);
|
||||||
|
}
|
||||||
|
|
||||||
|
function isMonth(value: string | null): value is string {
|
||||||
|
return value !== null && /^(0[1-9]|1[0-2])$/.test(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
function isYear(value: string | null): value is string {
|
||||||
|
return value === "all" || (value !== null && /^\d{4}$/.test(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Lit et valide les filtres BAP transmis dans l’URL. */
|
||||||
|
export function parseBapFilters(search: string, defaultYear: string): BapFilters {
|
||||||
|
const params = asSearchParams(search);
|
||||||
|
const status = params.get("status");
|
||||||
|
const year = params.get("year");
|
||||||
|
const month = params.get("month");
|
||||||
|
const sort = params.get("sort");
|
||||||
|
const direction = params.get("dir");
|
||||||
|
|
||||||
|
return {
|
||||||
|
searchQuery: params.get("q") || "",
|
||||||
|
statusFilter: status && BAP_STATUSES.has(status) ? status : "all",
|
||||||
|
selectedYear: isYear(year) ? year : defaultYear,
|
||||||
|
selectedMonth: month === "all" || isMonth(month) ? month : "all",
|
||||||
|
sortField: sort === "invoiceDate" ? "invoiceDate" : "createdAt",
|
||||||
|
sortDir: direction === "asc" ? "asc" : "desc",
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Construit une URL de détail qui conserve explicitement le contexte BAP. */
|
||||||
|
export function buildBapDetailLocation(invoiceId: number, filters: BapFilters): string {
|
||||||
|
const params = new URLSearchParams({
|
||||||
|
returnTo: "bap",
|
||||||
|
q: filters.searchQuery,
|
||||||
|
status: filters.statusFilter,
|
||||||
|
year: filters.selectedYear,
|
||||||
|
month: filters.selectedMonth,
|
||||||
|
sort: filters.sortField,
|
||||||
|
dir: filters.sortDir,
|
||||||
|
});
|
||||||
|
|
||||||
|
return `/invoices/${invoiceId}?${params.toString()}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Retourne la liste d’origine. Sans contexte BAP, le comportement historique est conservé. */
|
||||||
|
export function getBapReturnLocation(search: string): string {
|
||||||
|
const params = asSearchParams(search);
|
||||||
|
if (params.get("returnTo") !== "bap") return "/invoices";
|
||||||
|
|
||||||
|
const allowed = new URLSearchParams();
|
||||||
|
for (const key of ["q", "status", "year", "month", "sort", "dir"]) {
|
||||||
|
const value = params.get(key);
|
||||||
|
if (value) allowed.set(key, value);
|
||||||
|
}
|
||||||
|
const query = allowed.toString();
|
||||||
|
return query ? `/invoices-bap?${query}` : "/invoices-bap";
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import { useState } from "react";
|
import { useMemo, useState } from "react";
|
||||||
import DashboardLayout from "@/components/DashboardLayout";
|
import DashboardLayout from "@/components/DashboardLayout";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
||||||
@@ -33,6 +33,11 @@ import {
|
|||||||
} from "@/components/ui/table";
|
} from "@/components/ui/table";
|
||||||
import { Badge } from "@/components/ui/badge";
|
import { Badge } from "@/components/ui/badge";
|
||||||
import { trpc } from "@/lib/trpc";
|
import { trpc } from "@/lib/trpc";
|
||||||
|
import {
|
||||||
|
AUTOMATION_ACTION_FILTERS,
|
||||||
|
type AutomationActionFilter,
|
||||||
|
matchesAutomationActionFilter,
|
||||||
|
} from "@shared/automationActions";
|
||||||
import { toast } from "sonner";
|
import { toast } from "sonner";
|
||||||
import { Plus, Edit, Trash2, Power, PowerOff, Copy } from "lucide-react";
|
import { Plus, Edit, Trash2, Power, PowerOff, Copy } from "lucide-react";
|
||||||
|
|
||||||
@@ -46,6 +51,7 @@ interface Actions {
|
|||||||
typeAchat?: string;
|
typeAchat?: string;
|
||||||
serviceConcerne?: string;
|
serviceConcerne?: string;
|
||||||
ventilationComptable?: string;
|
ventilationComptable?: string;
|
||||||
|
isSubscription?: 0 | 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function AutomationRules() {
|
export default function AutomationRules() {
|
||||||
@@ -62,6 +68,7 @@ export default function AutomationRules() {
|
|||||||
const [wizardStep, setWizardStep] = useState(1);
|
const [wizardStep, setWizardStep] = useState(1);
|
||||||
const [testResultsOpen, setTestResultsOpen] = useState(false);
|
const [testResultsOpen, setTestResultsOpen] = useState(false);
|
||||||
const [testResults, setTestResults] = useState<any>(null);
|
const [testResults, setTestResults] = useState<any>(null);
|
||||||
|
const [actionFilter, setActionFilter] = useState<AutomationActionFilter>("all");
|
||||||
|
|
||||||
// Form state
|
// Form state
|
||||||
const [ruleName, setRuleName] = useState("");
|
const [ruleName, setRuleName] = useState("");
|
||||||
@@ -84,6 +91,12 @@ export default function AutomationRules() {
|
|||||||
return val;
|
return val;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const normalizeSubscriptionAction = (value: unknown): 0 | 1 | undefined => {
|
||||||
|
if (value === 1 || value === "1" || value === "OUI") return 1;
|
||||||
|
if (value === 0 || value === "0" || value === "NON") return 0;
|
||||||
|
return undefined;
|
||||||
|
};
|
||||||
|
|
||||||
const createMutation = trpc.automationRules.create.useMutation({
|
const createMutation = trpc.automationRules.create.useMutation({
|
||||||
onSuccess: (rule) => {
|
onSuccess: (rule) => {
|
||||||
if (rule.isActive === 1) {
|
if (rule.isActive === 1) {
|
||||||
@@ -204,7 +217,7 @@ export default function AutomationRules() {
|
|||||||
} else {
|
} else {
|
||||||
setCustomVentilation("");
|
setCustomVentilation("");
|
||||||
}
|
}
|
||||||
setActions(parsedActions);
|
setActions({ ...parsedActions, isSubscription: normalizeSubscriptionAction(parsedActions.isSubscription) });
|
||||||
} catch {
|
} catch {
|
||||||
setActions({});
|
setActions({});
|
||||||
setCustomTypeAchat("");
|
setCustomTypeAchat("");
|
||||||
@@ -231,11 +244,13 @@ export default function AutomationRules() {
|
|||||||
typeAchat: resolveAction(actions.typeAchat, customTypeAchat),
|
typeAchat: resolveAction(actions.typeAchat, customTypeAchat),
|
||||||
serviceConcerne: resolveAction(actions.serviceConcerne, customServiceConcerne),
|
serviceConcerne: resolveAction(actions.serviceConcerne, customServiceConcerne),
|
||||||
ventilationComptable: resolveAction(actions.ventilationComptable, customVentilation),
|
ventilationComptable: resolveAction(actions.ventilationComptable, customVentilation),
|
||||||
|
isSubscription: actions.isSubscription,
|
||||||
};
|
};
|
||||||
// Supprimer les clés undefined
|
// Supprimer les clés undefined
|
||||||
if (!resolvedActions.typeAchat) delete resolvedActions.typeAchat;
|
if (!resolvedActions.typeAchat) delete resolvedActions.typeAchat;
|
||||||
if (!resolvedActions.serviceConcerne) delete resolvedActions.serviceConcerne;
|
if (!resolvedActions.serviceConcerne) delete resolvedActions.serviceConcerne;
|
||||||
if (!resolvedActions.ventilationComptable) delete resolvedActions.ventilationComptable;
|
if (!resolvedActions.ventilationComptable) delete resolvedActions.ventilationComptable;
|
||||||
|
if (resolvedActions.isSubscription === undefined) delete resolvedActions.isSubscription;
|
||||||
const actionsJSON = JSON.stringify(resolvedActions);
|
const actionsJSON = JSON.stringify(resolvedActions);
|
||||||
|
|
||||||
if (editingRule) {
|
if (editingRule) {
|
||||||
@@ -311,6 +326,11 @@ export default function AutomationRules() {
|
|||||||
{ value: "<=", label: "inférieur ou égal à" },
|
{ value: "<=", label: "inférieur ou égal à" },
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const filteredRules = useMemo(
|
||||||
|
() => rules.filter((rule) => matchesAutomationActionFilter(rule.actions, actionFilter)),
|
||||||
|
[rules, actionFilter],
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<DashboardLayout>
|
<DashboardLayout>
|
||||||
<div className="space-y-6">
|
<div className="space-y-6">
|
||||||
@@ -339,12 +359,36 @@ export default function AutomationRules() {
|
|||||||
</CardDescription>
|
</CardDescription>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
|
<div className="mb-4 flex flex-wrap items-center gap-3 rounded-lg border border-slate-200 bg-slate-50 p-3">
|
||||||
|
<Label htmlFor="automation-action-filter" className="font-medium text-slate-700">
|
||||||
|
Filtrer par action
|
||||||
|
</Label>
|
||||||
|
<Select value={actionFilter} onValueChange={(value) => setActionFilter(value as AutomationActionFilter)}>
|
||||||
|
<SelectTrigger id="automation-action-filter" className="w-[260px] bg-white">
|
||||||
|
<SelectValue placeholder="Toutes les actions" />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{AUTOMATION_ACTION_FILTERS.map((filter) => (
|
||||||
|
<SelectItem key={filter.value} value={filter.value}>
|
||||||
|
{filter.label}
|
||||||
|
</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
<span className="text-sm text-slate-500">
|
||||||
|
{filteredRules.length} règle{filteredRules.length > 1 ? "s" : ""} affichée{filteredRules.length > 1 ? "s" : ""}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
{isLoading ? (
|
{isLoading ? (
|
||||||
<div className="text-center py-8 text-gray-500">Chargement...</div>
|
<div className="text-center py-8 text-gray-500">Chargement...</div>
|
||||||
) : rules.length === 0 ? (
|
) : rules.length === 0 ? (
|
||||||
<div className="text-center py-8 text-gray-500">
|
<div className="text-center py-8 text-gray-500">
|
||||||
Aucune règle d'automatisme configurée
|
Aucune règle d'automatisme configurée
|
||||||
</div>
|
</div>
|
||||||
|
) : filteredRules.length === 0 ? (
|
||||||
|
<div className="text-center py-8 text-gray-500">
|
||||||
|
Aucune règle ne correspond à cette action
|
||||||
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<Table>
|
<Table>
|
||||||
<TableHeader>
|
<TableHeader>
|
||||||
@@ -357,7 +401,7 @@ export default function AutomationRules() {
|
|||||||
</TableRow>
|
</TableRow>
|
||||||
</TableHeader>
|
</TableHeader>
|
||||||
<TableBody>
|
<TableBody>
|
||||||
{rules.map((rule) => {
|
{filteredRules.map((rule) => {
|
||||||
let conditionsDisplay = "";
|
let conditionsDisplay = "";
|
||||||
let actionsDisplay = "";
|
let actionsDisplay = "";
|
||||||
try {
|
try {
|
||||||
@@ -372,6 +416,7 @@ export default function AutomationRules() {
|
|||||||
if (acts.typeAchat) actionsArr.push(`Type: ${acts.typeAchat}`);
|
if (acts.typeAchat) actionsArr.push(`Type: ${acts.typeAchat}`);
|
||||||
if (acts.serviceConcerne) actionsArr.push(`Service: ${acts.serviceConcerne}`);
|
if (acts.serviceConcerne) actionsArr.push(`Service: ${acts.serviceConcerne}`);
|
||||||
if (acts.ventilationComptable) actionsArr.push(`Ventilation: ${acts.ventilationComptable}`);
|
if (acts.ventilationComptable) actionsArr.push(`Ventilation: ${acts.ventilationComptable}`);
|
||||||
|
if (acts.isSubscription !== undefined) actionsArr.push(`Abonnement: ${normalizeSubscriptionAction(acts.isSubscription) === 1 ? "Oui" : "Non"}`);
|
||||||
actionsDisplay = actionsArr.join(", ");
|
actionsDisplay = actionsArr.join(", ");
|
||||||
} catch {}
|
} catch {}
|
||||||
|
|
||||||
@@ -610,6 +655,23 @@ export default function AutomationRules() {
|
|||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label htmlFor="isSubscription">Abonnement</Label>
|
||||||
|
<Select
|
||||||
|
value={actions.isSubscription === undefined ? "__NONE__" : String(actions.isSubscription)}
|
||||||
|
onValueChange={(value) => setActions({ ...actions, isSubscription: value === "__NONE__" ? undefined : Number(value) as 0 | 1 })}
|
||||||
|
>
|
||||||
|
<SelectTrigger>
|
||||||
|
<SelectValue placeholder="Ne pas modifier" />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="__NONE__">Ne pas modifier</SelectItem>
|
||||||
|
<SelectItem value="1">Oui</SelectItem>
|
||||||
|
<SelectItem value="0">Non</SelectItem>
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
@@ -642,7 +704,8 @@ export default function AutomationRules() {
|
|||||||
{actions.typeAchat && <div>• Type d'achat : {actions.typeAchat}</div>}
|
{actions.typeAchat && <div>• Type d'achat : {actions.typeAchat}</div>}
|
||||||
{actions.serviceConcerne && <div>• Service : {actions.serviceConcerne}</div>}
|
{actions.serviceConcerne && <div>• Service : {actions.serviceConcerne}</div>}
|
||||||
{actions.ventilationComptable && <div>• Ventilation : {actions.ventilationComptable}</div>}
|
{actions.ventilationComptable && <div>• Ventilation : {actions.ventilationComptable}</div>}
|
||||||
{!actions.typeAchat && !actions.serviceConcerne && !actions.ventilationComptable && (
|
{actions.isSubscription !== undefined && <div>• Abonnement : {actions.isSubscription === 1 ? "Oui" : "Non"}</div>}
|
||||||
|
{!actions.typeAchat && !actions.serviceConcerne && !actions.ventilationComptable && actions.isSubscription === undefined && (
|
||||||
<div className="text-gray-500 italic">Aucune action définie</div>
|
<div className="text-gray-500 italic">Aucune action définie</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
@@ -745,6 +808,24 @@ export default function AutomationRules() {
|
|||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<Label>Actions (ALORS)</Label>
|
<Label>Actions (ALORS)</Label>
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
|
<div className="space-y-2 rounded-md border border-emerald-200 bg-emerald-50 p-3">
|
||||||
|
<Label htmlFor="isSubscription" className="font-medium text-emerald-950">Abonnement</Label>
|
||||||
|
<Select
|
||||||
|
value={actions.isSubscription === undefined ? "__NONE__" : String(actions.isSubscription)}
|
||||||
|
onValueChange={(value) => setActions({ ...actions, isSubscription: value === "__NONE__" ? undefined : Number(value) as 0 | 1 })}
|
||||||
|
>
|
||||||
|
<SelectTrigger className="bg-white">
|
||||||
|
<SelectValue placeholder="Ne pas modifier" />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="__NONE__">Ne pas modifier</SelectItem>
|
||||||
|
<SelectItem value="1">Oui</SelectItem>
|
||||||
|
<SelectItem value="0">Non</SelectItem>
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
<p className="text-xs text-emerald-800">Définit si les factures correspondant à la règle sont des abonnements.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<Label htmlFor="typeAchat">Type d'achat</Label>
|
<Label htmlFor="typeAchat">Type d'achat</Label>
|
||||||
<Select
|
<Select
|
||||||
@@ -829,6 +910,7 @@ export default function AutomationRules() {
|
|||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -148,6 +148,38 @@ export default function Dashboard() {
|
|||||||
</Card>
|
</Card>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle>Récapitulatif annuel</CardTitle>
|
||||||
|
<CardDescription>Volumes et montants des factures finalisées, séparés entre BAP (hors abonnement) et abonnements.</CardDescription>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
{stats?.annualSummary?.length ? (
|
||||||
|
<div className="space-y-6">
|
||||||
|
<div className="h-[300px] rounded-lg border bg-white p-4">
|
||||||
|
<ResponsiveContainer width="100%" height="100%">
|
||||||
|
<BarChart data={[...stats.annualSummary].reverse()} margin={{ top: 8, right: 16, left: 12, bottom: 4 }}>
|
||||||
|
<CartesianGrid strokeDasharray="3 3" vertical={false} />
|
||||||
|
<XAxis dataKey="year" />
|
||||||
|
<YAxis tickFormatter={(value) => new Intl.NumberFormat("fr-FR", { notation: "compact", maximumFractionDigits: 1 }).format(value)} />
|
||||||
|
<Tooltip formatter={(value: number) => formatCurrency(Number(value))} labelFormatter={(year) => `Année ${year}`} />
|
||||||
|
<Legend />
|
||||||
|
<Bar dataKey="bapAmount" name="Montant BAP" fill="#2563eb" radius={[4, 4, 0, 0]} />
|
||||||
|
<Bar dataKey="subscriptionAmount" name="Montant abonnements" fill="#7c3aed" radius={[4, 4, 0, 0]} />
|
||||||
|
</BarChart>
|
||||||
|
</ResponsiveContainer>
|
||||||
|
</div>
|
||||||
|
<div className="overflow-x-auto rounded-lg border">
|
||||||
|
<table className="w-full min-w-[780px] text-sm">
|
||||||
|
<thead className="bg-muted/60 text-left text-muted-foreground"><tr><th className="px-4 py-3 font-medium">Année</th><th className="px-4 py-3 text-right font-medium">Factures BAP</th><th className="px-4 py-3 text-right font-medium">Montant BAP</th><th className="px-4 py-3 text-right font-medium">Abonnements</th><th className="px-4 py-3 text-right font-medium">Montant abonnements</th><th className="px-4 py-3 text-right font-medium">Total annuel</th></tr></thead>
|
||||||
|
<tbody>{stats.annualSummary.map((row) => <tr key={row.year} className="border-t hover:bg-muted/30"><td className="px-4 py-3 font-semibold">{row.year}</td><td className="px-4 py-3 text-right">{row.bapCount}</td><td className="px-4 py-3 text-right text-blue-700">{formatCurrency(row.bapAmount)}</td><td className="px-4 py-3 text-right">{row.subscriptionCount}</td><td className="px-4 py-3 text-right text-violet-700">{formatCurrency(row.subscriptionAmount)}</td><td className="px-4 py-3 text-right font-semibold text-emerald-700">{formatCurrency(row.totalAmount)}</td></tr>)}</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
) : <div className="py-8 text-center text-muted-foreground">Aucune facture finalisée avec une date disponible.</div>}
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
{/* Detailed Stats */}
|
{/* Detailed Stats */}
|
||||||
{showDetailedStats && (
|
{showDetailedStats && (
|
||||||
<>
|
<>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { useState, useEffect } from "react";
|
import { useState, useEffect } from "react";
|
||||||
import { useParams, useLocation } from "wouter";
|
import { useParams, useLocation, useSearch } from "wouter";
|
||||||
import DashboardLayout from "@/components/DashboardLayout";
|
import DashboardLayout from "@/components/DashboardLayout";
|
||||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
@@ -9,10 +9,13 @@ import { Badge } from "@/components/ui/badge";
|
|||||||
import { trpc } from "@/lib/trpc";
|
import { trpc } from "@/lib/trpc";
|
||||||
import { ArrowLeft, Save, FileText } from "lucide-react";
|
import { ArrowLeft, Save, FileText } from "lucide-react";
|
||||||
import { toast } from "sonner";
|
import { toast } from "sonner";
|
||||||
|
import { getBapReturnLocation } from "@/lib/bapNavigation";
|
||||||
|
|
||||||
export default function InvoiceDetail() {
|
export default function InvoiceDetail() {
|
||||||
const { id } = useParams<{ id: string }>();
|
const { id } = useParams<{ id: string }>();
|
||||||
const [, setLocation] = useLocation();
|
const [, setLocation] = useLocation();
|
||||||
|
const detailSearch = useSearch();
|
||||||
|
const returnLocation = getBapReturnLocation(detailSearch);
|
||||||
const invoiceId = parseInt(id || "0");
|
const invoiceId = parseInt(id || "0");
|
||||||
|
|
||||||
const { data: invoice, isLoading } = trpc.invoices.getById.useQuery({ id: invoiceId });
|
const { data: invoice, isLoading } = trpc.invoices.getById.useQuery({ id: invoiceId });
|
||||||
@@ -172,7 +175,7 @@ export default function InvoiceDetail() {
|
|||||||
<FileText className="w-16 h-16 text-gray-300 mb-4" />
|
<FileText className="w-16 h-16 text-gray-300 mb-4" />
|
||||||
<h2 className="text-2xl font-bold mb-2">Facture introuvable</h2>
|
<h2 className="text-2xl font-bold mb-2">Facture introuvable</h2>
|
||||||
<p className="text-gray-500 mb-4">Cette facture n'existe pas ou a été supprimée</p>
|
<p className="text-gray-500 mb-4">Cette facture n'existe pas ou a été supprimée</p>
|
||||||
<Button onClick={() => setLocation("/invoices")}>
|
<Button onClick={() => setLocation(returnLocation)}>
|
||||||
<ArrowLeft className="w-4 h-4 mr-2" />
|
<ArrowLeft className="w-4 h-4 mr-2" />
|
||||||
Retour aux factures
|
Retour aux factures
|
||||||
</Button>
|
</Button>
|
||||||
@@ -187,7 +190,7 @@ export default function InvoiceDetail() {
|
|||||||
{/* Header */}
|
{/* Header */}
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<div className="flex items-center gap-4">
|
<div className="flex items-center gap-4">
|
||||||
<Button variant="ghost" onClick={() => setLocation("/invoices")}>
|
<Button variant="ghost" onClick={() => setLocation(returnLocation)}>
|
||||||
<ArrowLeft className="w-4 h-4 mr-2" />
|
<ArrowLeft className="w-4 h-4 mr-2" />
|
||||||
Retour
|
Retour
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { useState } from "react";
|
import { useMemo, useState } from "react";
|
||||||
import DashboardLayout from "@/components/DashboardLayout";
|
import DashboardLayout from "@/components/DashboardLayout";
|
||||||
import { useAuth } from "@/_core/hooks/useAuth";
|
import { useAuth } from "@/_core/hooks/useAuth";
|
||||||
import { Card, CardContent } from "@/components/ui/card";
|
import { Card, CardContent } from "@/components/ui/card";
|
||||||
@@ -34,17 +34,28 @@ import {
|
|||||||
} from "@/components/ui/table";
|
} from "@/components/ui/table";
|
||||||
import { trpc } from "@/lib/trpc";
|
import { trpc } from "@/lib/trpc";
|
||||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
||||||
import { Search, FileText, Download, FileSpreadsheet, Trash2, Edit, Trash, Filter, LayoutList, LayoutGrid, ArrowUpDown, ArrowUp, ArrowDown } from "lucide-react";
|
import { Search, FileText, Download, FileSpreadsheet, Trash2, Edit, Trash, Filter, LayoutList, LayoutGrid, ArrowUpDown, ArrowUp, ArrowDown, CalendarDays } from "lucide-react";
|
||||||
import * as XLSX from 'xlsx';
|
import * as XLSX from 'xlsx';
|
||||||
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip";
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip";
|
||||||
import { toast } from "sonner";
|
import { toast } from "sonner";
|
||||||
import { useLocation } from "wouter";
|
import { useLocation } from "wouter";
|
||||||
|
import { matchesInvoicePeriod } from "@shared/invoicePeriod";
|
||||||
|
|
||||||
type SortField = "invoiceDate" | "createdAt";
|
type SortField = "invoiceDate" | "createdAt";
|
||||||
type SortDir = "asc" | "desc";
|
type SortDir = "asc" | "desc";
|
||||||
|
|
||||||
export default function Invoices() {
|
type InvoiceScope = "all" | "subscriptions";
|
||||||
|
|
||||||
|
const MONTHS = [
|
||||||
|
["01", "Janvier"], ["02", "Février"], ["03", "Mars"], ["04", "Avril"],
|
||||||
|
["05", "Mai"], ["06", "Juin"], ["07", "Août"], ["08", "Septembre"],
|
||||||
|
["09", "Septembre"], ["10", "Octobre"], ["11", "Novembre"], ["12", "Décembre"],
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export default function Invoices({ scope = "all" }: { scope?: InvoiceScope }) {
|
||||||
const [, setLocation] = useLocation();
|
const [, setLocation] = useLocation();
|
||||||
|
const currentYear = new Date().getFullYear();
|
||||||
|
const isSubscriptionPage = scope === "subscriptions";
|
||||||
const [searchQuery, setSearchQuery] = useState("");
|
const [searchQuery, setSearchQuery] = useState("");
|
||||||
const [compactMode, setCompactMode] = useState(true);
|
const [compactMode, setCompactMode] = useState(true);
|
||||||
const [sortField, setSortField] = useState<SortField>("createdAt");
|
const [sortField, setSortField] = useState<SortField>("createdAt");
|
||||||
@@ -52,9 +63,11 @@ export default function Invoices() {
|
|||||||
const [selectedIds, setSelectedIds] = useState<number[]>([]);
|
const [selectedIds, setSelectedIds] = useState<number[]>([]);
|
||||||
const [statusFilter, setStatusFilter] = useState<string>("all");
|
const [statusFilter, setStatusFilter] = useState<string>("all");
|
||||||
const [recipientFilter, setRecipientFilter] = useState<string>("all");
|
const [recipientFilter, setRecipientFilter] = useState<string>("all");
|
||||||
const [subscriptionFilter, setSubscriptionFilter] = useState<string>("all"); // all | yes | no
|
const [subscriptionFilter, setSubscriptionFilter] = useState<string>(isSubscriptionPage ? "yes" : "all"); // all | yes | no
|
||||||
const [entityFilter, setEntityFilter] = useState<string>("all"); // all | santinova | itinova
|
const [entityFilter, setEntityFilter] = useState<string>("all"); // all | santinova | itinova
|
||||||
const [ventilationFilter, setVentilationFilter] = useState<string>("all");
|
const [ventilationFilter, setVentilationFilter] = useState<string>("all");
|
||||||
|
const [selectedYear, setSelectedYear] = useState<string>(String(currentYear));
|
||||||
|
const [selectedMonth, setSelectedMonth] = useState<string>("all");
|
||||||
const [deleteDialogOpen, setDeleteDialogOpen] = useState(false);
|
const [deleteDialogOpen, setDeleteDialogOpen] = useState(false);
|
||||||
const [invoiceToDelete, setInvoiceToDelete] = useState<number | null>(null);
|
const [invoiceToDelete, setInvoiceToDelete] = useState<number | null>(null);
|
||||||
const [addDialogOpen, setAddDialogOpen] = useState(false);
|
const [addDialogOpen, setAddDialogOpen] = useState(false);
|
||||||
@@ -194,17 +207,20 @@ export default function Invoices() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Collect unique recipients for the filter dropdown
|
// Collect unique recipients for the filter dropdown
|
||||||
const uniqueRecipients = Array.from(
|
const scopedInvoices = useMemo(
|
||||||
new Set(
|
() => (invoices || []).filter(inv => !isSubscriptionPage || inv.isSubscription === 1),
|
||||||
(invoices || []).map(inv => (inv as any).recipientName).filter(Boolean)
|
[invoices, isSubscriptionPage],
|
||||||
)
|
);
|
||||||
).sort();
|
|
||||||
|
|
||||||
const uniqueVentilations = Array.from(
|
const uniqueRecipients = useMemo(
|
||||||
new Set(
|
() => Array.from(new Set(scopedInvoices.map(inv => (inv as any).recipientName).filter(Boolean))).sort(),
|
||||||
(invoices || []).map(inv => (inv as any).ventilationComptable).filter(Boolean)
|
[scopedInvoices],
|
||||||
)
|
);
|
||||||
).sort();
|
|
||||||
|
const uniqueVentilations = useMemo(
|
||||||
|
() => Array.from(new Set(scopedInvoices.map(inv => (inv as any).ventilationComptable).filter(Boolean))).sort(),
|
||||||
|
[scopedInvoices],
|
||||||
|
);
|
||||||
|
|
||||||
const handleSort = (field: SortField) => {
|
const handleSort = (field: SortField) => {
|
||||||
if (sortField === field) {
|
if (sortField === field) {
|
||||||
@@ -220,7 +236,7 @@ export default function Invoices() {
|
|||||||
return sortDir === "asc" ? <ArrowUp className="w-3 h-3 ml-1" /> : <ArrowDown className="w-3 h-3 ml-1" />;
|
return sortDir === "asc" ? <ArrowUp className="w-3 h-3 ml-1" /> : <ArrowDown className="w-3 h-3 ml-1" />;
|
||||||
};
|
};
|
||||||
|
|
||||||
const filteredInvoices = invoices?.filter((inv) => {
|
const filteredInvoices = scopedInvoices.filter((inv) => {
|
||||||
// Filter by search query
|
// Filter by search query
|
||||||
if (searchQuery) {
|
if (searchQuery) {
|
||||||
const query = searchQuery.toLowerCase();
|
const query = searchQuery.toLowerCase();
|
||||||
@@ -230,6 +246,9 @@ export default function Invoices() {
|
|||||||
if (!matchesSearch) return false;
|
if (!matchesSearch) return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Même convention que Factures BAP : date de facture, sinon réception.
|
||||||
|
if (!matchesInvoicePeriod(inv, selectedYear, selectedMonth)) return false;
|
||||||
|
|
||||||
// Filter by export status
|
// Filter by export status
|
||||||
if (statusFilter !== "all") {
|
if (statusFilter !== "all") {
|
||||||
if (statusFilter === "exported" && inv.exportStatus !== "exported") return false;
|
if (statusFilter === "exported" && inv.exportStatus !== "exported") return false;
|
||||||
@@ -268,22 +287,17 @@ export default function Invoices() {
|
|||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const invoicesInPeriod = useMemo(
|
||||||
|
() => scopedInvoices.filter(inv => matchesInvoicePeriod(inv, selectedYear, selectedMonth)),
|
||||||
|
[scopedInvoices, selectedYear, selectedMonth],
|
||||||
|
);
|
||||||
|
|
||||||
const statusCounts = {
|
const statusCounts = {
|
||||||
all: invoices?.length || 0,
|
all: invoicesInPeriod.length,
|
||||||
exported: invoices?.filter(inv => inv.exportStatus === "exported").length || 0,
|
exported: invoicesInPeriod.filter(inv => inv.exportStatus === "exported").length,
|
||||||
not_exported: invoices?.filter(inv => inv.exportStatus === "not_exported").length || 0,
|
not_exported: invoicesInPeriod.filter(inv => inv.exportStatus === "not_exported").length,
|
||||||
export_error: invoices?.filter(inv => inv.exportStatus === "export_error").length || 0,
|
export_error: invoicesInPeriod.filter(inv => inv.exportStatus === "export_error").length,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Old filter logic (to be removed)
|
|
||||||
const _oldFilteredInvoices = invoices?.filter((inv) => {
|
|
||||||
if (!searchQuery) return true;
|
|
||||||
const query = searchQuery.toLowerCase();
|
|
||||||
return (
|
|
||||||
inv.supplierName?.toLowerCase().includes(query) ||
|
|
||||||
inv.invoiceNumber?.toLowerCase().includes(query)
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
const handleSelectAll = (checked: boolean) => {
|
const handleSelectAll = (checked: boolean) => {
|
||||||
if (checked) {
|
if (checked) {
|
||||||
@@ -370,8 +384,10 @@ export default function Invoices() {
|
|||||||
<div className="space-y-6">
|
<div className="space-y-6">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h1 className="text-3xl font-bold">Factures</h1>
|
<h1 className="text-3xl font-bold">{isSubscriptionPage ? "Factures abonnements" : "Factures"}</h1>
|
||||||
<p className="text-gray-500 mt-1">Gérez toutes vos factures importées</p>
|
<p className="text-gray-500 mt-1">
|
||||||
|
{isSubscriptionPage ? "Gérez les factures identifiées comme abonnements" : "Gérez toutes vos factures importées"}
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex gap-2">
|
<div className="flex gap-2">
|
||||||
<Button
|
<Button
|
||||||
@@ -456,9 +472,30 @@ export default function Invoices() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Ligne 2 : Filtres destinataire, abonnement, entité, ventilation */}
|
{/* Ligne 2 : Filtres de période, destinataire, abonnement, entité, ventilation */}
|
||||||
<div className="flex gap-2 items-center flex-wrap mb-3">
|
<div className="flex gap-2 items-center flex-wrap mb-3">
|
||||||
<Filter className="w-4 h-4 text-blue-400 shrink-0" />
|
<Filter className="w-4 h-4 text-blue-400 shrink-0" />
|
||||||
|
<div className="flex items-center gap-1.5 text-sm font-medium text-blue-600">
|
||||||
|
<CalendarDays className="w-4 h-4" />
|
||||||
|
Période :
|
||||||
|
</div>
|
||||||
|
<Select value={selectedYear} onValueChange={(value) => { setSelectedYear(value); if (value === "all") setSelectedMonth("all"); }}>
|
||||||
|
<SelectTrigger className="w-28 h-8 bg-white border-blue-200 text-sm"><SelectValue placeholder="Année" /></SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="all">Toute année</SelectItem>
|
||||||
|
{Array.from({ length: 5 }, (_, index) => currentYear - index).map(year => <SelectItem key={year} value={String(year)}>{year}</SelectItem>)}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
<Select value={selectedMonth} onValueChange={setSelectedMonth} disabled={selectedYear === "all"}>
|
||||||
|
<SelectTrigger className="w-36 h-8 bg-white border-blue-200 text-sm"><SelectValue placeholder="Mois" /></SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="all">Tous les mois</SelectItem>
|
||||||
|
{MONTHS.map(([value, label]) => <SelectItem key={value} value={value}>{label}</SelectItem>)}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
{(selectedYear !== String(currentYear) || selectedMonth !== "all") && (
|
||||||
|
<button onClick={() => { setSelectedYear(String(currentYear)); setSelectedMonth("all"); }} className="text-xs text-blue-600 hover:text-blue-800 underline">Réinitialiser</button>
|
||||||
|
)}
|
||||||
<Select value={recipientFilter} onValueChange={setRecipientFilter}>
|
<Select value={recipientFilter} onValueChange={setRecipientFilter}>
|
||||||
<SelectTrigger className="w-[180px] bg-white border-blue-200 text-sm">
|
<SelectTrigger className="w-[180px] bg-white border-blue-200 text-sm">
|
||||||
<SelectValue placeholder="Destinataire" />
|
<SelectValue placeholder="Destinataire" />
|
||||||
@@ -471,7 +508,7 @@ export default function Invoices() {
|
|||||||
))}
|
))}
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
<Select value={subscriptionFilter} onValueChange={setSubscriptionFilter}>
|
<Select value={isSubscriptionPage ? "yes" : subscriptionFilter} onValueChange={setSubscriptionFilter} disabled={isSubscriptionPage}>
|
||||||
<SelectTrigger className="w-[170px] bg-white border-blue-200 text-sm">
|
<SelectTrigger className="w-[170px] bg-white border-blue-200 text-sm">
|
||||||
<SelectValue placeholder="Abonnement" />
|
<SelectValue placeholder="Abonnement" />
|
||||||
</SelectTrigger>
|
</SelectTrigger>
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ import {
|
|||||||
TableRow,
|
TableRow,
|
||||||
} from "@/components/ui/table";
|
} from "@/components/ui/table";
|
||||||
import { trpc } from "@/lib/trpc";
|
import { trpc } from "@/lib/trpc";
|
||||||
|
import { BAP_MIN_QUALITY_SCORE, meetsBapQualityThreshold } from "@shared/bapEligibility";
|
||||||
import { Search, FileText, Download, FileSpreadsheet, Trash2, Edit, Trash, CheckCircle, CheckCircle2, ShieldCheck, RefreshCw, FolderDown, ChevronDown, ChevronRight, ChevronsUpDown, CalendarDays, ArrowUpDown, ArrowUp, ArrowDown } from "lucide-react";
|
import { Search, FileText, Download, FileSpreadsheet, Trash2, Edit, Trash, CheckCircle, CheckCircle2, ShieldCheck, RefreshCw, FolderDown, ChevronDown, ChevronRight, ChevronsUpDown, CalendarDays, ArrowUpDown, ArrowUp, ArrowDown } from "lucide-react";
|
||||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
||||||
|
|
||||||
@@ -87,7 +88,8 @@ function downloadBapPdf(
|
|||||||
}
|
}
|
||||||
import * as XLSX from 'xlsx';
|
import * as XLSX from 'xlsx';
|
||||||
import { toast } from "sonner";
|
import { toast } from "sonner";
|
||||||
import { useLocation } from "wouter";
|
import { useLocation, useSearch } from "wouter";
|
||||||
|
import { buildBapDetailLocation, parseBapFilters } from "@/lib/bapNavigation";
|
||||||
|
|
||||||
// Helper function to determine field color based on origin
|
// Helper function to determine field color based on origin
|
||||||
const getFieldColor = (invoice: any, fieldName: string): string => {
|
const getFieldColor = (invoice: any, fieldName: string): string => {
|
||||||
@@ -108,9 +110,12 @@ const getFieldColor = (invoice: any, fieldName: string): string => {
|
|||||||
|
|
||||||
export default function InvoicesBAP() {
|
export default function InvoicesBAP() {
|
||||||
const [, setLocation] = useLocation();
|
const [, setLocation] = useLocation();
|
||||||
const [searchQuery, setSearchQuery] = useState("");
|
const queryString = useSearch();
|
||||||
|
const currentYear = new Date().getFullYear();
|
||||||
|
const initialFilters = parseBapFilters(queryString, String(currentYear));
|
||||||
|
const [searchQuery, setSearchQuery] = useState(initialFilters.searchQuery);
|
||||||
const [selectedIds, setSelectedIds] = useState<number[]>([]);
|
const [selectedIds, setSelectedIds] = useState<number[]>([]);
|
||||||
const [statusFilter, setStatusFilter] = useState<string>("all");
|
const [statusFilter, setStatusFilter] = useState<string>(initialFilters.statusFilter);
|
||||||
const [deleteDialogOpen, setDeleteDialogOpen] = useState(false);
|
const [deleteDialogOpen, setDeleteDialogOpen] = useState(false);
|
||||||
const [invoiceToDelete, setInvoiceToDelete] = useState<number | null>(null);
|
const [invoiceToDelete, setInvoiceToDelete] = useState<number | null>(null);
|
||||||
const [addDialogOpen, setAddDialogOpen] = useState(false);
|
const [addDialogOpen, setAddDialogOpen] = useState(false);
|
||||||
@@ -126,12 +131,22 @@ export default function InvoicesBAP() {
|
|||||||
const [expandedIds, setExpandedIds] = useState<Set<number>>(new Set());
|
const [expandedIds, setExpandedIds] = useState<Set<number>>(new Set());
|
||||||
const [allExpanded, setAllExpanded] = useState(false);
|
const [allExpanded, setAllExpanded] = useState(false);
|
||||||
// Filtre par période
|
// Filtre par période
|
||||||
const currentYear = new Date().getFullYear();
|
const [selectedYear, setSelectedYear] = useState<string>(initialFilters.selectedYear);
|
||||||
const [selectedYear, setSelectedYear] = useState<string>(String(currentYear));
|
const [selectedMonth, setSelectedMonth] = useState<string>(initialFilters.selectedMonth); // "all" ou "01".."12"
|
||||||
const [selectedMonth, setSelectedMonth] = useState<string>("all"); // "all" ou "01".."12"
|
|
||||||
// Tri
|
// Tri
|
||||||
const [sortField, setSortField] = useState<"invoiceDate" | "createdAt">("createdAt");
|
const [sortField, setSortField] = useState<"invoiceDate" | "createdAt">(initialFilters.sortField);
|
||||||
const [sortDir, setSortDir] = useState<"asc" | "desc">("desc");
|
const [sortDir, setSortDir] = useState<"asc" | "desc">(initialFilters.sortDir);
|
||||||
|
|
||||||
|
const openInvoiceDetail = (invoiceId: number) => {
|
||||||
|
setLocation(buildBapDetailLocation(invoiceId, {
|
||||||
|
searchQuery,
|
||||||
|
statusFilter,
|
||||||
|
selectedYear,
|
||||||
|
selectedMonth,
|
||||||
|
sortField,
|
||||||
|
sortDir,
|
||||||
|
}));
|
||||||
|
};
|
||||||
|
|
||||||
const toggleRow = (id: number) => {
|
const toggleRow = (id: number) => {
|
||||||
setExpandedIds(prev => {
|
setExpandedIds(prev => {
|
||||||
@@ -380,7 +395,7 @@ export default function InvoicesBAP() {
|
|||||||
// Déclarée ici (avant filteredInvoices et statusCounts) pour éviter le hoisting error
|
// Déclarée ici (avant filteredInvoices et statusCounts) pour éviter le hoisting error
|
||||||
const isEligibleForBAPValidation = (invoice: any) => {
|
const isEligibleForBAPValidation = (invoice: any) => {
|
||||||
return (
|
return (
|
||||||
(invoice.qualityScore || 0) === 100 &&
|
meetsBapQualityThreshold(invoice.qualityScore) &&
|
||||||
invoice.exportStatus !== "exported" &&
|
invoice.exportStatus !== "exported" &&
|
||||||
invoice.isSubscription === 0 &&
|
invoice.isSubscription === 0 &&
|
||||||
invoice.serviceConcerne &&
|
invoice.serviceConcerne &&
|
||||||
@@ -512,19 +527,19 @@ export default function InvoicesBAP() {
|
|||||||
|
|
||||||
const getQualityBadge = (score: number | null) => {
|
const getQualityBadge = (score: number | null) => {
|
||||||
if (score === null) return <Badge variant="outline">-</Badge>;
|
if (score === null) return <Badge variant="outline">-</Badge>;
|
||||||
if (score === 100) return <Badge className="bg-green-100 text-green-800 hover:bg-green-100">{score}%</Badge>;
|
if (meetsBapQualityThreshold(score)) return <Badge className="bg-green-100 text-green-800 hover:bg-green-100">{score}%</Badge>;
|
||||||
if (score >= 80) return <Badge className="bg-yellow-100 text-yellow-800 hover:bg-yellow-100">{score}%</Badge>;
|
if (score >= 80) return <Badge className="bg-yellow-100 text-yellow-800 hover:bg-yellow-100">{score}%</Badge>;
|
||||||
return <Badge className="bg-red-100 text-red-800 hover:bg-red-100">{score}%</Badge>;
|
return <Badge className="bg-red-100 text-red-800 hover:bg-red-100">{score}%</Badge>;
|
||||||
};
|
};
|
||||||
|
|
||||||
const isEligibleForExport = (invoice: any) => {
|
const isEligibleForExport = (invoice: any) => {
|
||||||
// Une facture BAP est exportable si :
|
// Une facture BAP est exportable si :
|
||||||
// 1. Score = 100%
|
// 1. Score >= 90 % (seuil BAP)
|
||||||
// 2. Type d'achat rempli
|
// 2. Type d'achat rempli
|
||||||
// 3. Service concerné rempli
|
// 3. Service concerné rempli
|
||||||
// 4. Ventilation comptable remplie
|
// 4. Ventilation comptable remplie
|
||||||
return (
|
return (
|
||||||
(invoice.qualityScore || 0) === 100 &&
|
meetsBapQualityThreshold(invoice.qualityScore) &&
|
||||||
invoice.typeAchat &&
|
invoice.typeAchat &&
|
||||||
invoice.serviceConcerne &&
|
invoice.serviceConcerne &&
|
||||||
invoice.ventilationComptable
|
invoice.ventilationComptable
|
||||||
@@ -535,7 +550,7 @@ export default function InvoicesBAP() {
|
|||||||
|
|
||||||
const getBAPValidationTooltip = (invoice: any): string => {
|
const getBAPValidationTooltip = (invoice: any): string => {
|
||||||
const reasons: string[] = [];
|
const reasons: string[] = [];
|
||||||
if ((invoice.qualityScore || 0) < 100) reasons.push("Score < 100%");
|
if (!meetsBapQualityThreshold(invoice.qualityScore)) reasons.push(`Score < ${BAP_MIN_QUALITY_SCORE}%`);
|
||||||
if (invoice.exportStatus === "exported") reasons.push("Déjà exportée");
|
if (invoice.exportStatus === "exported") reasons.push("Déjà exportée");
|
||||||
if (invoice.isSubscription !== 0) reasons.push("Marquée comme abonnement");
|
if (invoice.isSubscription !== 0) reasons.push("Marquée comme abonnement");
|
||||||
if (!invoice.serviceConcerne) reasons.push("Service manquant");
|
if (!invoice.serviceConcerne) reasons.push("Service manquant");
|
||||||
@@ -641,7 +656,7 @@ export default function InvoicesBAP() {
|
|||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
if (confirm("Valider en BAP toutes les factures éligibles (score 100%, champs remplis, non abonnement) ? Les PDFs annotés seront générés automatiquement.")) {
|
if (confirm(`Valider en BAP toutes les factures éligibles (score ≥ ${BAP_MIN_QUALITY_SCORE}%, champs remplis, non abonnement) ? Les PDFs annotés seront générés automatiquement.`)) {
|
||||||
validateBAPBulkMutation.mutate();
|
validateBAPBulkMutation.mutate();
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
@@ -926,7 +941,7 @@ export default function InvoicesBAP() {
|
|||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell className="font-medium">
|
<TableCell className="font-medium">
|
||||||
<button
|
<button
|
||||||
onClick={() => setLocation(`/invoices/${invoice.id}`)}
|
onClick={() => openInvoiceDetail(invoice.id)}
|
||||||
className="text-blue-600 hover:text-blue-800 hover:underline"
|
className="text-blue-600 hover:text-blue-800 hover:underline"
|
||||||
>
|
>
|
||||||
{invoice.supplierName || "Inconnu"}
|
{invoice.supplierName || "Inconnu"}
|
||||||
@@ -976,7 +991,7 @@ export default function InvoicesBAP() {
|
|||||||
<Button
|
<Button
|
||||||
size="sm"
|
size="sm"
|
||||||
variant="outline"
|
variant="outline"
|
||||||
onClick={() => setLocation(`/invoices/${invoice.id}`)}
|
onClick={() => openInvoiceDetail(invoice.id)}
|
||||||
className="h-8 px-2"
|
className="h-8 px-2"
|
||||||
title="Modifier"
|
title="Modifier"
|
||||||
>
|
>
|
||||||
|
|||||||
90
client/src/pages/RealBudget.tsx
Normal file
90
client/src/pages/RealBudget.tsx
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
import DashboardLayout from "@/components/DashboardLayout";
|
||||||
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
||||||
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
||||||
|
import { trpc } from "@/lib/trpc";
|
||||||
|
import { buildSupplierBudgetSummary } from "@shared/invoiceAnalytics";
|
||||||
|
import { CalendarDays, Euro, FileText } from "lucide-react";
|
||||||
|
import { useMemo, useState } from "react";
|
||||||
|
|
||||||
|
const MONTHS = [
|
||||||
|
["01", "Janvier"], ["02", "Février"], ["03", "Mars"], ["04", "Avril"],
|
||||||
|
["05", "Mai"], ["06", "Juin"], ["07", "Juillet"], ["08", "Août"],
|
||||||
|
["09", "Septembre"], ["10", "Octobre"], ["11", "Novembre"], ["12", "Décembre"],
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
function formatCurrency(value: number) {
|
||||||
|
return new Intl.NumberFormat("fr-FR", { style: "currency", currency: "EUR" }).format(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function RealBudget() {
|
||||||
|
const currentYear = new Date().getFullYear();
|
||||||
|
const [selectedYear, setSelectedYear] = useState(String(currentYear));
|
||||||
|
const [selectedMonth, setSelectedMonth] = useState("all");
|
||||||
|
const { data: invoices, isLoading } = trpc.invoices.list.useQuery();
|
||||||
|
|
||||||
|
const availableYears = useMemo(() => {
|
||||||
|
const years = new Set<number>([currentYear]);
|
||||||
|
(invoices || []).forEach((invoice) => {
|
||||||
|
const value = invoice.invoiceDate ?? invoice.createdAt;
|
||||||
|
if (!value) return;
|
||||||
|
const date = new Date(value);
|
||||||
|
if (!Number.isNaN(date.getTime())) years.add(date.getFullYear());
|
||||||
|
});
|
||||||
|
return Array.from(years).sort((a, b) => b - a);
|
||||||
|
}, [invoices, currentYear]);
|
||||||
|
|
||||||
|
const rows = useMemo(
|
||||||
|
() => buildSupplierBudgetSummary(invoices || [], selectedYear, selectedMonth),
|
||||||
|
[invoices, selectedYear, selectedMonth],
|
||||||
|
);
|
||||||
|
const totals = useMemo(() => rows.reduce((total, row) => ({
|
||||||
|
subscriptionAmount: total.subscriptionAmount + row.subscriptionAmount,
|
||||||
|
nonSubscriptionAmount: total.nonSubscriptionAmount + row.nonSubscriptionAmount,
|
||||||
|
totalAmount: total.totalAmount + row.totalAmount,
|
||||||
|
}), { subscriptionAmount: 0, nonSubscriptionAmount: 0, totalAmount: 0 }), [rows]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<DashboardLayout>
|
||||||
|
<div className="space-y-6">
|
||||||
|
<div>
|
||||||
|
<h1 className="text-3xl font-bold">Budget réel</h1>
|
||||||
|
<p className="mt-1 text-muted-foreground">Montants réellement facturés, regroupés par fournisseur.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Card className="border-blue-100 bg-blue-50/70">
|
||||||
|
<CardContent className="flex flex-wrap items-center gap-3 py-4">
|
||||||
|
<div className="flex items-center gap-1.5 text-sm font-medium text-blue-700"><CalendarDays className="h-4 w-4" /> Période :</div>
|
||||||
|
<Select value={selectedYear} onValueChange={(value) => { setSelectedYear(value); if (value === "all") setSelectedMonth("all"); }}>
|
||||||
|
<SelectTrigger className="w-28 bg-white"><SelectValue placeholder="Année" /></SelectTrigger>
|
||||||
|
<SelectContent><SelectItem value="all">Toute année</SelectItem>{availableYears.map((year) => <SelectItem key={year} value={String(year)}>{year}</SelectItem>)}</SelectContent>
|
||||||
|
</Select>
|
||||||
|
<Select value={selectedMonth} onValueChange={setSelectedMonth} disabled={selectedYear === "all"}>
|
||||||
|
<SelectTrigger className="w-40 bg-white"><SelectValue placeholder="Mois" /></SelectTrigger>
|
||||||
|
<SelectContent><SelectItem value="all">Tous les mois</SelectItem>{MONTHS.map(([value, label]) => <SelectItem key={value} value={value}>{label}</SelectItem>)}</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
<div className="grid gap-4 md:grid-cols-3">
|
||||||
|
<Card><CardHeader className="pb-2"><CardTitle className="text-sm font-medium">Abonnements</CardTitle></CardHeader><CardContent><div className="text-2xl font-bold text-violet-700">{formatCurrency(totals.subscriptionAmount)}</div></CardContent></Card>
|
||||||
|
<Card><CardHeader className="pb-2"><CardTitle className="text-sm font-medium">Hors abonnement</CardTitle></CardHeader><CardContent><div className="text-2xl font-bold text-blue-700">{formatCurrency(totals.nonSubscriptionAmount)}</div></CardContent></Card>
|
||||||
|
<Card><CardHeader className="pb-2"><CardTitle className="flex items-center gap-2 text-sm font-medium"><Euro className="h-4 w-4" /> Total facturé</CardTitle></CardHeader><CardContent><div className="text-2xl font-bold text-emerald-700">{formatCurrency(totals.totalAmount)}</div></CardContent></Card>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Card>
|
||||||
|
<CardHeader><CardTitle>Budget réel par fournisseur</CardTitle><CardDescription>Les factures finalisées sont séparées entre abonnements et hors abonnement.</CardDescription></CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
{isLoading ? <div className="py-12 text-center text-muted-foreground">Chargement du budget…</div> : rows.length === 0 ? <div className="flex flex-col items-center gap-2 py-12 text-muted-foreground"><FileText className="h-10 w-10" />Aucune facture finalisée pour cette période.</div> : (
|
||||||
|
<div className="overflow-x-auto rounded-lg border">
|
||||||
|
<table className="w-full min-w-[850px] text-sm"><thead className="bg-muted/60 text-left text-muted-foreground"><tr><th className="px-4 py-3 font-medium">Fournisseur</th><th className="px-4 py-3 text-right font-medium">Abonnements</th><th className="px-4 py-3 text-right font-medium">Montant abonnements</th><th className="px-4 py-3 text-right font-medium">Hors abonnement</th><th className="px-4 py-3 text-right font-medium">Montant hors abonnement</th><th className="px-4 py-3 text-right font-medium">Total</th></tr></thead>
|
||||||
|
<tbody>{rows.map((row) => <tr key={row.supplierName} className="border-t hover:bg-muted/30"><td className="px-4 py-3 font-medium">{row.supplierName}</td><td className="px-4 py-3 text-right">{row.subscriptionCount}</td><td className="px-4 py-3 text-right text-violet-700">{formatCurrency(row.subscriptionAmount)}</td><td className="px-4 py-3 text-right">{row.nonSubscriptionCount}</td><td className="px-4 py-3 text-right text-blue-700">{formatCurrency(row.nonSubscriptionAmount)}</td><td className="px-4 py-3 text-right font-semibold">{formatCurrency(row.totalAmount)}</td></tr>)}</tbody>
|
||||||
|
<tfoot className="border-t-2 bg-muted/50 font-semibold"><tr><td className="px-4 py-3">Total</td><td colSpan={2} className="px-4 py-3 text-right text-violet-700">{formatCurrency(totals.subscriptionAmount)}</td><td colSpan={2} className="px-4 py-3 text-right text-blue-700">{formatCurrency(totals.nonSubscriptionAmount)}</td><td className="px-4 py-3 text-right text-emerald-700">{formatCurrency(totals.totalAmount)}</td></tr></tfoot>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
</DashboardLayout>
|
||||||
|
);
|
||||||
|
}
|
||||||
2
drizzle/0037_goofy_quentin_quire.sql
Normal file
2
drizzle/0037_goofy_quentin_quire.sql
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
ALTER TABLE `sourceFiles` ADD `contentHash` varchar(64);--> statement-breakpoint
|
||||||
|
ALTER TABLE `sourceFiles` ADD CONSTRAINT `source_file_content_hash_unique` UNIQUE(`contentHash`);
|
||||||
2372
drizzle/meta/0037_snapshot.json
Normal file
2372
drizzle/meta/0037_snapshot.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -260,6 +260,13 @@
|
|||||||
"when": 1785419093588,
|
"when": 1785419093588,
|
||||||
"tag": "0036_broken_rattler",
|
"tag": "0036_broken_rattler",
|
||||||
"breakpoints": true
|
"breakpoints": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idx": 37,
|
||||||
|
"version": "5",
|
||||||
|
"when": 1787394418464,
|
||||||
|
"tag": "0037_goofy_quentin_quire",
|
||||||
|
"breakpoints": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -36,12 +36,16 @@ export const sourceFiles = mysqlTable("sourceFiles", {
|
|||||||
fileName: varchar("fileName", { length: 255 }).notNull(),
|
fileName: varchar("fileName", { length: 255 }).notNull(),
|
||||||
fileKey: text("fileKey").notNull(), // Local storage key with YYYY-MM prefix
|
fileKey: text("fileKey").notNull(), // Local storage key with YYYY-MM prefix
|
||||||
fileUrl: text("fileUrl").notNull(), // Public URL
|
fileUrl: text("fileUrl").notNull(), // Public URL
|
||||||
|
/** Empreinte du PDF source, globale à l'application pour bloquer tout réimport identique. */
|
||||||
|
contentHash: varchar("contentHash", { length: 64 }),
|
||||||
totalInvoicesDetected: int("totalInvoicesDetected").default(0).notNull(),
|
totalInvoicesDetected: int("totalInvoicesDetected").default(0).notNull(),
|
||||||
processingStatus: mysqlEnum("processingStatus", ["processing", "completed", "error"]).default("processing").notNull(),
|
processingStatus: mysqlEnum("processingStatus", ["processing", "completed", "error"]).default("processing").notNull(),
|
||||||
processingProgress: varchar("processingProgress", { length: 255 }), // Progress message (e.g., "Extraction 3/9 factures...")
|
processingProgress: varchar("processingProgress", { length: 255 }), // Progress message (e.g., "Extraction 3/9 factures...")
|
||||||
createdAt: timestamp("createdAt").defaultNow().notNull(),
|
createdAt: timestamp("createdAt").defaultNow().notNull(),
|
||||||
updatedAt: timestamp("updatedAt").defaultNow().onUpdateNow().notNull(),
|
updatedAt: timestamp("updatedAt").defaultNow().onUpdateNow().notNull(),
|
||||||
});
|
}, (table) => ({
|
||||||
|
contentHashIdx: uniqueIndex("source_file_content_hash_unique").on(table.contentHash),
|
||||||
|
}));
|
||||||
|
|
||||||
export type SourceFile = typeof sourceFiles.$inferSelect;
|
export type SourceFile = typeof sourceFiles.$inferSelect;
|
||||||
export type InsertSourceFile = typeof sourceFiles.$inferInsert;
|
export type InsertSourceFile = typeof sourceFiles.$inferInsert;
|
||||||
|
|||||||
@@ -53,7 +53,6 @@
|
|||||||
"@types/archiver": "^7.0.0",
|
"@types/archiver": "^7.0.0",
|
||||||
"@types/bcrypt": "^6.0.0",
|
"@types/bcrypt": "^6.0.0",
|
||||||
"@types/chokidar": "^2.1.7",
|
"@types/chokidar": "^2.1.7",
|
||||||
"@types/imap": "^0.8.43",
|
|
||||||
"@types/jsonwebtoken": "^9.0.10",
|
"@types/jsonwebtoken": "^9.0.10",
|
||||||
"@types/mailparser": "^3.4.6",
|
"@types/mailparser": "^3.4.6",
|
||||||
"@types/ssh2-sftp-client": "^9.0.6",
|
"@types/ssh2-sftp-client": "^9.0.6",
|
||||||
@@ -71,7 +70,7 @@
|
|||||||
"embla-carousel-react": "^8.6.0",
|
"embla-carousel-react": "^8.6.0",
|
||||||
"express": "^4.21.2",
|
"express": "^4.21.2",
|
||||||
"framer-motion": "^12.23.22",
|
"framer-motion": "^12.23.22",
|
||||||
"imap": "^0.8.19",
|
"imapflow": "^1.7.2",
|
||||||
"input-otp": "^1.4.2",
|
"input-otp": "^1.4.2",
|
||||||
"jose": "6.1.0",
|
"jose": "6.1.0",
|
||||||
"jsonwebtoken": "^9.0.3",
|
"jsonwebtoken": "^9.0.3",
|
||||||
|
|||||||
209
pnpm-lock.yaml
generated
209
pnpm-lock.yaml
generated
@@ -133,9 +133,6 @@ importers:
|
|||||||
'@types/chokidar':
|
'@types/chokidar':
|
||||||
specifier: ^2.1.7
|
specifier: ^2.1.7
|
||||||
version: 2.1.7
|
version: 2.1.7
|
||||||
'@types/imap':
|
|
||||||
specifier: ^0.8.43
|
|
||||||
version: 0.8.43
|
|
||||||
'@types/jsonwebtoken':
|
'@types/jsonwebtoken':
|
||||||
specifier: ^9.0.10
|
specifier: ^9.0.10
|
||||||
version: 9.0.10
|
version: 9.0.10
|
||||||
@@ -187,9 +184,9 @@ importers:
|
|||||||
framer-motion:
|
framer-motion:
|
||||||
specifier: ^12.23.22
|
specifier: ^12.23.22
|
||||||
version: 12.23.22(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
|
version: 12.23.22(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
|
||||||
imap:
|
imapflow:
|
||||||
specifier: ^0.8.19
|
specifier: ^1.7.2
|
||||||
version: 0.8.19
|
version: 1.7.2
|
||||||
input-otp:
|
input-otp:
|
||||||
specifier: ^1.4.2
|
specifier: ^1.4.2
|
||||||
version: 1.4.2(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
|
version: 1.4.2(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
|
||||||
@@ -1438,6 +1435,9 @@ packages:
|
|||||||
'@pdf-lib/upng@1.0.1':
|
'@pdf-lib/upng@1.0.1':
|
||||||
resolution: {integrity: sha512-dQK2FUMQtowVP00mtIksrlZhdFXQZPC+taih1q4CvPZ5vqdxR/LKBaFg0oAfzd1GlHZXXSPdQfzQnt+ViGvEIQ==}
|
resolution: {integrity: sha512-dQK2FUMQtowVP00mtIksrlZhdFXQZPC+taih1q4CvPZ5vqdxR/LKBaFg0oAfzd1GlHZXXSPdQfzQnt+ViGvEIQ==}
|
||||||
|
|
||||||
|
'@pinojs/redact@0.4.0':
|
||||||
|
resolution: {integrity: sha512-k2ENnmBugE/rzQfEcdWHcCY+/FM3VLzH9cYEsbdsoqrvzAKRhUZeRNhAZvB8OitQJ1TBed3yqWtdjzS6wJKBwg==}
|
||||||
|
|
||||||
'@pkgjs/parseargs@0.11.0':
|
'@pkgjs/parseargs@0.11.0':
|
||||||
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
|
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
@@ -2580,9 +2580,6 @@ packages:
|
|||||||
'@types/http-errors@2.0.5':
|
'@types/http-errors@2.0.5':
|
||||||
resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
|
resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
|
||||||
|
|
||||||
'@types/imap@0.8.43':
|
|
||||||
resolution: {integrity: sha512-POPoqrDax9mxM2N4ITZYCWaFtg1ORVfzJe4S7xwSh9aHawdEb7FwWTJYiAhzIvWp7DM+6BajnzYOwZ1BUrqtow==}
|
|
||||||
|
|
||||||
'@types/jsonwebtoken@9.0.10':
|
'@types/jsonwebtoken@9.0.10':
|
||||||
resolution: {integrity: sha512-asx5hIG9Qmf/1oStypjanR7iKTv0gXQ1Ov/jfrX6kS/EO0OFni8orbmGCn0672NHR3kXHwpAwR+B368ZGN/2rA==}
|
resolution: {integrity: sha512-asx5hIG9Qmf/1oStypjanR7iKTv0gXQ1Ov/jfrX6kS/EO0OFni8orbmGCn0672NHR3kXHwpAwR+B368ZGN/2rA==}
|
||||||
|
|
||||||
@@ -2681,6 +2678,9 @@ packages:
|
|||||||
'@vitest/utils@2.1.9':
|
'@vitest/utils@2.1.9':
|
||||||
resolution: {integrity: sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==}
|
resolution: {integrity: sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==}
|
||||||
|
|
||||||
|
'@zone-eu/mailsplit@5.4.15':
|
||||||
|
resolution: {integrity: sha512-c7ZpxauvF4AEkDJlKDYO7iMUtMuqJMBnDWNff1cyx+d7zaBVR3iFEmXhNHOVoMmVyVF3pTZLsLIJsEFKDldOAA==}
|
||||||
|
|
||||||
'@zone-eu/mailsplit@5.4.8':
|
'@zone-eu/mailsplit@5.4.8':
|
||||||
resolution: {integrity: sha512-eEyACj4JZ7sjzRvy26QhLgKEMWwQbsw1+QZnlLX+/gihcNH07lVPOcnwf5U6UAL7gkc//J3jVd76o/WS+taUiA==}
|
resolution: {integrity: sha512-eEyACj4JZ7sjzRvy26QhLgKEMWwQbsw1+QZnlLX+/gihcNH07lVPOcnwf5U6UAL7gkc//J3jVd76o/WS+taUiA==}
|
||||||
|
|
||||||
@@ -2744,6 +2744,10 @@ packages:
|
|||||||
asynckit@0.4.0:
|
asynckit@0.4.0:
|
||||||
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
||||||
|
|
||||||
|
atomic-sleep@1.0.0:
|
||||||
|
resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==}
|
||||||
|
engines: {node: '>=8.0.0'}
|
||||||
|
|
||||||
autoprefixer@10.4.21:
|
autoprefixer@10.4.21:
|
||||||
resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==}
|
resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==}
|
||||||
engines: {node: ^10 || ^12 || >=14}
|
engines: {node: ^10 || ^12 || >=14}
|
||||||
@@ -3542,12 +3546,15 @@ packages:
|
|||||||
resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
|
resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
|
|
||||||
|
iconv-lite@0.7.3:
|
||||||
|
resolution: {integrity: sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==}
|
||||||
|
engines: {node: '>=0.10.0'}
|
||||||
|
|
||||||
ieee754@1.2.1:
|
ieee754@1.2.1:
|
||||||
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
|
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
|
||||||
|
|
||||||
imap@0.8.19:
|
imapflow@1.7.2:
|
||||||
resolution: {integrity: sha512-z5DxEA1uRnZG73UcPA4ES5NSCGnPuuouUx43OPX7KZx1yzq3N8/vx2mtXEShT5inxB3pRgnfG1hijfu7XN2YMw==}
|
resolution: {integrity: sha512-1pWZgWQ/M2Q7kPSW7Sp7QDn+ZPEqs/9IymYh34RY+3J7d3vfPayhSmRAl0tB7weblGU0SR/t7eYES3TW6vSiOQ==}
|
||||||
engines: {node: '>=0.8.0'}
|
|
||||||
|
|
||||||
inherits@2.0.4:
|
inherits@2.0.4:
|
||||||
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
||||||
@@ -3565,6 +3572,10 @@ packages:
|
|||||||
iobuffer@5.4.0:
|
iobuffer@5.4.0:
|
||||||
resolution: {integrity: sha512-DRebOWuqDvxunfkNJAlc3IzWIPD5xVxwUNbHr7xKB8E6aLJxIPfNX3CoMJghcFjpv6RWQsrcJbghtEwSPoJqMA==}
|
resolution: {integrity: sha512-DRebOWuqDvxunfkNJAlc3IzWIPD5xVxwUNbHr7xKB8E6aLJxIPfNX3CoMJghcFjpv6RWQsrcJbghtEwSPoJqMA==}
|
||||||
|
|
||||||
|
ip-address@10.5.0:
|
||||||
|
resolution: {integrity: sha512-R5SnVLJmgYYvf2F2ZgwSBnelz5G4q5AxIC277GDfUaNbrZKNANcBC7RHqYYePlszf4kBolVkJauG0ZjHHFh55g==}
|
||||||
|
engines: {node: '>= 12'}
|
||||||
|
|
||||||
ipaddr.js@1.9.1:
|
ipaddr.js@1.9.1:
|
||||||
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
|
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
|
||||||
engines: {node: '>= 0.10'}
|
engines: {node: '>= 0.10'}
|
||||||
@@ -3598,9 +3609,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==}
|
resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==}
|
||||||
engines: {node: '>=16'}
|
engines: {node: '>=16'}
|
||||||
|
|
||||||
isarray@0.0.1:
|
|
||||||
resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
|
|
||||||
|
|
||||||
isarray@1.0.0:
|
isarray@1.0.0:
|
||||||
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
|
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
|
||||||
|
|
||||||
@@ -3661,6 +3669,9 @@ packages:
|
|||||||
libmime@5.3.7:
|
libmime@5.3.7:
|
||||||
resolution: {integrity: sha512-FlDb3Wtha8P01kTL3P9M+ZDNDWPKPmKHWaU/cG/lg5pfuAwdflVpZE+wm9m7pKmC5ww6s+zTxBKS1p6yl3KpSw==}
|
resolution: {integrity: sha512-FlDb3Wtha8P01kTL3P9M+ZDNDWPKPmKHWaU/cG/lg5pfuAwdflVpZE+wm9m7pKmC5ww6s+zTxBKS1p6yl3KpSw==}
|
||||||
|
|
||||||
|
libmime@5.4.2:
|
||||||
|
resolution: {integrity: sha512-+IQnCOdPiufGBkOii+Ze8F7iniyBzOwvWDbn1DyExBpc9pT2B3IEMQi7GUc/PpqhNUh/sr1SG9UXDITQoR0VIA==}
|
||||||
|
|
||||||
libqp@2.1.1:
|
libqp@2.1.1:
|
||||||
resolution: {integrity: sha512-0Wd+GPz1O134cP62YU2GTOPNA7Qgl09XwCqM5zpBv87ERCXdfDtyKXvV7c9U22yWJh44QZqBocFnXN11K96qow==}
|
resolution: {integrity: sha512-0Wd+GPz1O134cP62YU2GTOPNA7Qgl09XwCqM5zpBv87ERCXdfDtyKXvV7c9U22yWJh44QZqBocFnXN11K96qow==}
|
||||||
|
|
||||||
@@ -3931,6 +3942,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
|
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
|
on-exit-leak-free@2.1.2:
|
||||||
|
resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==}
|
||||||
|
engines: {node: '>=14.0.0'}
|
||||||
|
|
||||||
on-finished@2.4.1:
|
on-finished@2.4.1:
|
||||||
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
|
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
|
||||||
engines: {node: '>= 0.8'}
|
engines: {node: '>= 0.8'}
|
||||||
@@ -4008,6 +4023,16 @@ packages:
|
|||||||
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
|
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
|
|
||||||
|
pino-abstract-transport@3.0.0:
|
||||||
|
resolution: {integrity: sha512-wlfUczU+n7Hy/Ha5j9a/gZNy7We5+cXp8YL+X+PG8S0KXxw7n/JXA3c46Y0zQznIJ83URJiwy7Lh56WLokNuxg==}
|
||||||
|
|
||||||
|
pino-std-serializers@7.1.0:
|
||||||
|
resolution: {integrity: sha512-BndPH67/JxGExRgiX1dX0w1FvZck5Wa4aal9198SrRhZjH3GxKQUKIBnYJTdj2HDN3UQAS06HlfcSbQj2OHmaw==}
|
||||||
|
|
||||||
|
pino@10.3.1:
|
||||||
|
resolution: {integrity: sha512-r34yH/GlQpKZbU1BvFFqOjhISRo1MNx1tWYsYvmj6KIRHSPMT2+yHOEb1SG6NMvRoHRF0a07kCOox/9yakl1vg==}
|
||||||
|
hasBin: true
|
||||||
|
|
||||||
pnpm@10.18.0:
|
pnpm@10.18.0:
|
||||||
resolution: {integrity: sha512-6AT4ifHOzEDVctsITuw+SIFzn43sacD/ENLRvv+aTjCTg7ontbdQBZ1/TBSVNbbNDSyx7Trrc5I5pChKaPQM+g==}
|
resolution: {integrity: sha512-6AT4ifHOzEDVctsITuw+SIFzn43sacD/ENLRvv+aTjCTg7ontbdQBZ1/TBSVNbbNDSyx7Trrc5I5pChKaPQM+g==}
|
||||||
engines: {node: '>=18.12'}
|
engines: {node: '>=18.12'}
|
||||||
@@ -4032,6 +4057,9 @@ packages:
|
|||||||
process-nextick-args@2.0.1:
|
process-nextick-args@2.0.1:
|
||||||
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
|
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
|
||||||
|
|
||||||
|
process-warning@5.1.0:
|
||||||
|
resolution: {integrity: sha512-jQSaVHsPgtyw60e1rQ/A+/ArPEj/S8pS/vFnyGa/gYFXrKk/6RuDkoqVDQ5NI5MmS01698ltlAk0NoDBNLujRw==}
|
||||||
|
|
||||||
process@0.11.10:
|
process@0.11.10:
|
||||||
resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
|
resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
|
||||||
engines: {node: '>= 0.6.0'}
|
engines: {node: '>= 0.6.0'}
|
||||||
@@ -4054,6 +4082,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
|
resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
|
||||||
engines: {node: '>=0.6'}
|
engines: {node: '>=0.6'}
|
||||||
|
|
||||||
|
quick-format-unescaped@4.0.4:
|
||||||
|
resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==}
|
||||||
|
|
||||||
raf@3.4.1:
|
raf@3.4.1:
|
||||||
resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==}
|
resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==}
|
||||||
|
|
||||||
@@ -4154,9 +4185,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-DGrYcCWK7tvYMnWh79yrPHt+vdx9tY+1gPZa7nJQtO/p8bLTDaHp4dzwEhQB7pZ4Xe3ok4XKuEPrVuc+wlpkmw==}
|
resolution: {integrity: sha512-DGrYcCWK7tvYMnWh79yrPHt+vdx9tY+1gPZa7nJQtO/p8bLTDaHp4dzwEhQB7pZ4Xe3ok4XKuEPrVuc+wlpkmw==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
|
|
||||||
readable-stream@1.1.14:
|
|
||||||
resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
|
|
||||||
|
|
||||||
readable-stream@2.3.8:
|
readable-stream@2.3.8:
|
||||||
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
|
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
|
||||||
|
|
||||||
@@ -4175,6 +4203,13 @@ packages:
|
|||||||
resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
|
resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
|
||||||
engines: {node: '>= 20.19.0'}
|
engines: {node: '>= 20.19.0'}
|
||||||
|
|
||||||
|
real-require@0.2.0:
|
||||||
|
resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
|
||||||
|
engines: {node: '>= 12.13.0'}
|
||||||
|
|
||||||
|
real-require@1.0.0:
|
||||||
|
resolution: {integrity: sha512-P4nbQYQfePJxRSmY+v/KINxVucm4NF3p3s7pJveMTtom52FR4YGltUQLB8idDXwDDWW+eYrWDFbuzUnjoWHF7g==}
|
||||||
|
|
||||||
recharts-scale@0.4.5:
|
recharts-scale@0.4.5:
|
||||||
resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
|
resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
|
||||||
|
|
||||||
@@ -4214,6 +4249,10 @@ packages:
|
|||||||
safe-buffer@5.2.1:
|
safe-buffer@5.2.1:
|
||||||
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
||||||
|
|
||||||
|
safe-stable-stringify@2.5.0:
|
||||||
|
resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
|
||||||
|
engines: {node: '>=10'}
|
||||||
|
|
||||||
safer-buffer@2.1.2:
|
safer-buffer@2.1.2:
|
||||||
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
||||||
|
|
||||||
@@ -4223,10 +4262,6 @@ packages:
|
|||||||
selderee@0.11.0:
|
selderee@0.11.0:
|
||||||
resolution: {integrity: sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==}
|
resolution: {integrity: sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==}
|
||||||
|
|
||||||
semver@5.3.0:
|
|
||||||
resolution: {integrity: sha512-mfmm3/H9+67MCVix1h+IXTpDwL6710LyHuk7+cWC9T1mE0qz4iHhh6r4hU2wrIT9iTsAAC2XQRvfblL028cpLw==}
|
|
||||||
hasBin: true
|
|
||||||
|
|
||||||
semver@6.3.1:
|
semver@6.3.1:
|
||||||
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
@@ -4285,6 +4320,17 @@ packages:
|
|||||||
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
|
|
||||||
|
smart-buffer@4.2.0:
|
||||||
|
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
|
||||||
|
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
|
||||||
|
|
||||||
|
socks@2.8.9:
|
||||||
|
resolution: {integrity: sha512-LJhUYUvItdQ0LkJTmPeaEObWXAqFyfmP85x0tch/ez9cahmhlBBLbIqDFnvBnUJGagb0JbIQrkBs1wJ+yRYpEw==}
|
||||||
|
engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
|
||||||
|
|
||||||
|
sonic-boom@4.2.1:
|
||||||
|
resolution: {integrity: sha512-w6AxtubXa2wTXAUsZMMWERrsIRAdrK0Sc+FUytWvYAhBJLyuI4llrMIC1DtlNSdI99EI86KZum2MMq3EAZlF9Q==}
|
||||||
|
|
||||||
sonner@2.0.7:
|
sonner@2.0.7:
|
||||||
resolution: {integrity: sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==}
|
resolution: {integrity: sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -4302,6 +4348,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
|
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
|
|
||||||
|
split2@4.2.0:
|
||||||
|
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
|
||||||
|
engines: {node: '>= 10.x'}
|
||||||
|
|
||||||
sqlstring@2.3.3:
|
sqlstring@2.3.3:
|
||||||
resolution: {integrity: sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==}
|
resolution: {integrity: sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==}
|
||||||
engines: {node: '>= 0.6'}
|
engines: {node: '>= 0.6'}
|
||||||
@@ -4343,9 +4393,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
|
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
|
|
||||||
string_decoder@0.10.31:
|
|
||||||
resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
|
|
||||||
|
|
||||||
string_decoder@1.1.1:
|
string_decoder@1.1.1:
|
||||||
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
|
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
|
||||||
|
|
||||||
@@ -4402,6 +4449,10 @@ packages:
|
|||||||
text-segmentation@1.0.3:
|
text-segmentation@1.0.3:
|
||||||
resolution: {integrity: sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==}
|
resolution: {integrity: sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==}
|
||||||
|
|
||||||
|
thread-stream@4.2.0:
|
||||||
|
resolution: {integrity: sha512-e2zZ96wSChazBsbENf/Pcm/4swHt2cEKQ92rhUjkL9GCKiTDJIaTBenjE/m9DXi0QBmTMDkFDdOomUy20A1tDQ==}
|
||||||
|
engines: {node: '>=20'}
|
||||||
|
|
||||||
tiny-invariant@1.3.3:
|
tiny-invariant@1.3.3:
|
||||||
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
|
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
|
||||||
|
|
||||||
@@ -4508,9 +4559,6 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
||||||
|
|
||||||
utf7@1.0.2:
|
|
||||||
resolution: {integrity: sha512-qQrPtYLLLl12NF4DrM9CvfkxkYI97xOb5dsnGZHE3teFr0tWiEZ9UdgMPczv24vl708cYMpe6mGXGHrotIp3Bw==}
|
|
||||||
|
|
||||||
util-deprecate@1.0.2:
|
util-deprecate@1.0.2:
|
||||||
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
||||||
|
|
||||||
@@ -5883,6 +5931,8 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
pako: 1.0.11
|
pako: 1.0.11
|
||||||
|
|
||||||
|
'@pinojs/redact@0.4.0': {}
|
||||||
|
|
||||||
'@pkgjs/parseargs@0.11.0':
|
'@pkgjs/parseargs@0.11.0':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
@@ -7136,10 +7186,6 @@ snapshots:
|
|||||||
|
|
||||||
'@types/http-errors@2.0.5': {}
|
'@types/http-errors@2.0.5': {}
|
||||||
|
|
||||||
'@types/imap@0.8.43':
|
|
||||||
dependencies:
|
|
||||||
'@types/node': 24.7.0
|
|
||||||
|
|
||||||
'@types/jsonwebtoken@9.0.10':
|
'@types/jsonwebtoken@9.0.10':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/ms': 2.1.0
|
'@types/ms': 2.1.0
|
||||||
@@ -7269,6 +7315,12 @@ snapshots:
|
|||||||
loupe: 3.2.1
|
loupe: 3.2.1
|
||||||
tinyrainbow: 1.2.0
|
tinyrainbow: 1.2.0
|
||||||
|
|
||||||
|
'@zone-eu/mailsplit@5.4.15':
|
||||||
|
dependencies:
|
||||||
|
libbase64: 1.3.0
|
||||||
|
libmime: 5.4.2
|
||||||
|
libqp: 2.1.1
|
||||||
|
|
||||||
'@zone-eu/mailsplit@5.4.8':
|
'@zone-eu/mailsplit@5.4.8':
|
||||||
dependencies:
|
dependencies:
|
||||||
libbase64: 1.3.0
|
libbase64: 1.3.0
|
||||||
@@ -7338,6 +7390,8 @@ snapshots:
|
|||||||
|
|
||||||
asynckit@0.4.0: {}
|
asynckit@0.4.0: {}
|
||||||
|
|
||||||
|
atomic-sleep@1.0.0: {}
|
||||||
|
|
||||||
autoprefixer@10.4.21(postcss@8.5.6):
|
autoprefixer@10.4.21(postcss@8.5.6):
|
||||||
dependencies:
|
dependencies:
|
||||||
browserslist: 4.26.3
|
browserslist: 4.26.3
|
||||||
@@ -8118,12 +8172,22 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
safer-buffer: 2.1.2
|
safer-buffer: 2.1.2
|
||||||
|
|
||||||
|
iconv-lite@0.7.3:
|
||||||
|
dependencies:
|
||||||
|
safer-buffer: 2.1.2
|
||||||
|
|
||||||
ieee754@1.2.1: {}
|
ieee754@1.2.1: {}
|
||||||
|
|
||||||
imap@0.8.19:
|
imapflow@1.7.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
readable-stream: 1.1.14
|
'@zone-eu/mailsplit': 5.4.15
|
||||||
utf7: 1.0.2
|
encoding-japanese: 2.2.0
|
||||||
|
iconv-lite: 0.7.3
|
||||||
|
libbase64: 1.3.0
|
||||||
|
libmime: 5.4.2
|
||||||
|
libqp: 2.1.1
|
||||||
|
pino: 10.3.1
|
||||||
|
socks: 2.8.9
|
||||||
|
|
||||||
inherits@2.0.4: {}
|
inherits@2.0.4: {}
|
||||||
|
|
||||||
@@ -8136,6 +8200,8 @@ snapshots:
|
|||||||
|
|
||||||
iobuffer@5.4.0: {}
|
iobuffer@5.4.0: {}
|
||||||
|
|
||||||
|
ip-address@10.5.0: {}
|
||||||
|
|
||||||
ipaddr.js@1.9.1: {}
|
ipaddr.js@1.9.1: {}
|
||||||
|
|
||||||
is-docker@3.0.0: {}
|
is-docker@3.0.0: {}
|
||||||
@@ -8156,8 +8222,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
is-inside-container: 1.0.0
|
is-inside-container: 1.0.0
|
||||||
|
|
||||||
isarray@0.0.1: {}
|
|
||||||
|
|
||||||
isarray@1.0.0: {}
|
isarray@1.0.0: {}
|
||||||
|
|
||||||
isexe@2.0.0: {}
|
isexe@2.0.0: {}
|
||||||
@@ -8232,6 +8296,13 @@ snapshots:
|
|||||||
libbase64: 1.3.0
|
libbase64: 1.3.0
|
||||||
libqp: 2.1.1
|
libqp: 2.1.1
|
||||||
|
|
||||||
|
libmime@5.4.2:
|
||||||
|
dependencies:
|
||||||
|
encoding-japanese: 2.2.0
|
||||||
|
iconv-lite: 0.7.3
|
||||||
|
libbase64: 1.3.0
|
||||||
|
libqp: 2.1.1
|
||||||
|
|
||||||
libqp@2.1.1: {}
|
libqp@2.1.1: {}
|
||||||
|
|
||||||
lightningcss-darwin-arm64@1.30.1:
|
lightningcss-darwin-arm64@1.30.1:
|
||||||
@@ -8439,6 +8510,8 @@ snapshots:
|
|||||||
|
|
||||||
object-inspect@1.13.4: {}
|
object-inspect@1.13.4: {}
|
||||||
|
|
||||||
|
on-exit-leak-free@2.1.2: {}
|
||||||
|
|
||||||
on-finished@2.4.1:
|
on-finished@2.4.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
ee-first: 1.1.1
|
ee-first: 1.1.1
|
||||||
@@ -8508,6 +8581,26 @@ snapshots:
|
|||||||
|
|
||||||
picomatch@4.0.3: {}
|
picomatch@4.0.3: {}
|
||||||
|
|
||||||
|
pino-abstract-transport@3.0.0:
|
||||||
|
dependencies:
|
||||||
|
split2: 4.2.0
|
||||||
|
|
||||||
|
pino-std-serializers@7.1.0: {}
|
||||||
|
|
||||||
|
pino@10.3.1:
|
||||||
|
dependencies:
|
||||||
|
'@pinojs/redact': 0.4.0
|
||||||
|
atomic-sleep: 1.0.0
|
||||||
|
on-exit-leak-free: 2.1.2
|
||||||
|
pino-abstract-transport: 3.0.0
|
||||||
|
pino-std-serializers: 7.1.0
|
||||||
|
process-warning: 5.1.0
|
||||||
|
quick-format-unescaped: 4.0.4
|
||||||
|
real-require: 0.2.0
|
||||||
|
safe-stable-stringify: 2.5.0
|
||||||
|
sonic-boom: 4.2.1
|
||||||
|
thread-stream: 4.2.0
|
||||||
|
|
||||||
pnpm@10.18.0: {}
|
pnpm@10.18.0: {}
|
||||||
|
|
||||||
postcss-selector-parser@6.0.10:
|
postcss-selector-parser@6.0.10:
|
||||||
@@ -8527,6 +8620,8 @@ snapshots:
|
|||||||
|
|
||||||
process-nextick-args@2.0.1: {}
|
process-nextick-args@2.0.1: {}
|
||||||
|
|
||||||
|
process-warning@5.1.0: {}
|
||||||
|
|
||||||
process@0.11.10: {}
|
process@0.11.10: {}
|
||||||
|
|
||||||
prop-types@15.8.1:
|
prop-types@15.8.1:
|
||||||
@@ -8548,6 +8643,8 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
side-channel: 1.1.0
|
side-channel: 1.1.0
|
||||||
|
|
||||||
|
quick-format-unescaped@4.0.4: {}
|
||||||
|
|
||||||
raf@3.4.1:
|
raf@3.4.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
performance-now: 2.1.0
|
performance-now: 2.1.0
|
||||||
@@ -8650,13 +8747,6 @@ snapshots:
|
|||||||
|
|
||||||
react@19.2.1: {}
|
react@19.2.1: {}
|
||||||
|
|
||||||
readable-stream@1.1.14:
|
|
||||||
dependencies:
|
|
||||||
core-util-is: 1.0.3
|
|
||||||
inherits: 2.0.4
|
|
||||||
isarray: 0.0.1
|
|
||||||
string_decoder: 0.10.31
|
|
||||||
|
|
||||||
readable-stream@2.3.8:
|
readable-stream@2.3.8:
|
||||||
dependencies:
|
dependencies:
|
||||||
core-util-is: 1.0.3
|
core-util-is: 1.0.3
|
||||||
@@ -8687,6 +8777,10 @@ snapshots:
|
|||||||
|
|
||||||
readdirp@5.0.0: {}
|
readdirp@5.0.0: {}
|
||||||
|
|
||||||
|
real-require@0.2.0: {}
|
||||||
|
|
||||||
|
real-require@1.0.0: {}
|
||||||
|
|
||||||
recharts-scale@0.4.5:
|
recharts-scale@0.4.5:
|
||||||
dependencies:
|
dependencies:
|
||||||
decimal.js-light: 2.5.1
|
decimal.js-light: 2.5.1
|
||||||
@@ -8748,6 +8842,8 @@ snapshots:
|
|||||||
|
|
||||||
safe-buffer@5.2.1: {}
|
safe-buffer@5.2.1: {}
|
||||||
|
|
||||||
|
safe-stable-stringify@2.5.0: {}
|
||||||
|
|
||||||
safer-buffer@2.1.2: {}
|
safer-buffer@2.1.2: {}
|
||||||
|
|
||||||
scheduler@0.27.0: {}
|
scheduler@0.27.0: {}
|
||||||
@@ -8756,8 +8852,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
parseley: 0.12.1
|
parseley: 0.12.1
|
||||||
|
|
||||||
semver@5.3.0: {}
|
|
||||||
|
|
||||||
semver@6.3.1: {}
|
semver@6.3.1: {}
|
||||||
|
|
||||||
semver@7.7.3: {}
|
semver@7.7.3: {}
|
||||||
@@ -8862,6 +8956,17 @@ snapshots:
|
|||||||
|
|
||||||
signal-exit@4.1.0: {}
|
signal-exit@4.1.0: {}
|
||||||
|
|
||||||
|
smart-buffer@4.2.0: {}
|
||||||
|
|
||||||
|
socks@2.8.9:
|
||||||
|
dependencies:
|
||||||
|
ip-address: 10.5.0
|
||||||
|
smart-buffer: 4.2.0
|
||||||
|
|
||||||
|
sonic-boom@4.2.1:
|
||||||
|
dependencies:
|
||||||
|
atomic-sleep: 1.0.0
|
||||||
|
|
||||||
sonner@2.0.7(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
|
sonner@2.0.7(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
react: 19.2.1
|
react: 19.2.1
|
||||||
@@ -8876,6 +8981,8 @@ snapshots:
|
|||||||
|
|
||||||
source-map@0.6.1: {}
|
source-map@0.6.1: {}
|
||||||
|
|
||||||
|
split2@4.2.0: {}
|
||||||
|
|
||||||
sqlstring@2.3.3: {}
|
sqlstring@2.3.3: {}
|
||||||
|
|
||||||
ssf@0.11.2:
|
ssf@0.11.2:
|
||||||
@@ -8925,8 +9032,6 @@ snapshots:
|
|||||||
emoji-regex: 9.2.2
|
emoji-regex: 9.2.2
|
||||||
strip-ansi: 7.2.0
|
strip-ansi: 7.2.0
|
||||||
|
|
||||||
string_decoder@0.10.31: {}
|
|
||||||
|
|
||||||
string_decoder@1.1.1:
|
string_decoder@1.1.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
safe-buffer: 5.1.2
|
safe-buffer: 5.1.2
|
||||||
@@ -8999,6 +9104,10 @@ snapshots:
|
|||||||
utrie: 1.0.2
|
utrie: 1.0.2
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
|
thread-stream@4.2.0:
|
||||||
|
dependencies:
|
||||||
|
real-require: 1.0.0
|
||||||
|
|
||||||
tiny-invariant@1.3.3: {}
|
tiny-invariant@1.3.3: {}
|
||||||
|
|
||||||
tinybench@2.9.0: {}
|
tinybench@2.9.0: {}
|
||||||
@@ -9077,10 +9186,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
react: 19.2.1
|
react: 19.2.1
|
||||||
|
|
||||||
utf7@1.0.2:
|
|
||||||
dependencies:
|
|
||||||
semver: 5.3.0
|
|
||||||
|
|
||||||
util-deprecate@1.0.2: {}
|
util-deprecate@1.0.2: {}
|
||||||
|
|
||||||
utils-merge@1.0.1: {}
|
utils-merge@1.0.1: {}
|
||||||
|
|||||||
70
scripts/test-imapflow-oauth-from-db.mjs
Normal file
70
scripts/test-imapflow-oauth-from-db.mjs
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
import { ImapFlow } from "imapflow";
|
||||||
|
import mysql from "mysql2/promise";
|
||||||
|
|
||||||
|
const databaseUrl = process.env.DATABASE_URL;
|
||||||
|
if (!databaseUrl) throw new Error("Variable DATABASE_URL manquante");
|
||||||
|
|
||||||
|
const connection = await mysql.createConnection(databaseUrl);
|
||||||
|
try {
|
||||||
|
const [rows] = await connection.query(`
|
||||||
|
SELECT emailImportAddress, emailImportHost, emailImportPort,
|
||||||
|
azureTenantId, azureClientId, azureClientSecret
|
||||||
|
FROM importSettings
|
||||||
|
WHERE emailImportEnabled = 1
|
||||||
|
AND emailImportAuthMode = 'oauth2'
|
||||||
|
ORDER BY id
|
||||||
|
LIMIT 1
|
||||||
|
`);
|
||||||
|
|
||||||
|
const settings = rows[0];
|
||||||
|
if (!settings) throw new Error("Aucune configuration OAuth2 IMAP active");
|
||||||
|
|
||||||
|
const tenantId = settings.azureTenantId || process.env.AZURE_AD_TENANT_ID;
|
||||||
|
const clientId = settings.azureClientId || process.env.AZURE_AD_CLIENT_ID;
|
||||||
|
const clientSecret = settings.azureClientSecret || process.env.AZURE_AD_CLIENT_SECRET;
|
||||||
|
if (!tenantId || !clientId || !clientSecret) {
|
||||||
|
throw new Error("Configuration Azure AD incomplète");
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await fetch(
|
||||||
|
`https://login.microsoftonline.com/${tenantId}/oauth2/v2.0/token`,
|
||||||
|
{
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/x-www-form-urlencoded" },
|
||||||
|
body: new URLSearchParams({
|
||||||
|
client_id: clientId,
|
||||||
|
client_secret: clientSecret,
|
||||||
|
scope: "https://outlook.office365.com/.default",
|
||||||
|
grant_type: "client_credentials",
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
);
|
||||||
|
const tokenResponse = await response.json();
|
||||||
|
if (!response.ok || !tokenResponse.access_token) {
|
||||||
|
throw new Error(`Échec OAuth2 : ${tokenResponse.error || response.status}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const host = settings.emailImportHost || "outlook.office365.com";
|
||||||
|
const client = new ImapFlow({
|
||||||
|
host,
|
||||||
|
port: settings.emailImportPort || 993,
|
||||||
|
secure: true,
|
||||||
|
auth: {
|
||||||
|
user: settings.emailImportAddress,
|
||||||
|
accessToken: tokenResponse.access_token,
|
||||||
|
},
|
||||||
|
tls: { servername: host, rejectUnauthorized: true },
|
||||||
|
verifyOnly: true,
|
||||||
|
logger: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
await client.connect();
|
||||||
|
console.log(`Authentification ImapFlow OAuth2 réussie pour ${settings.emailImportAddress}`);
|
||||||
|
} finally {
|
||||||
|
if (client.usable) await client.logout().catch(() => client.close());
|
||||||
|
else client.close();
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
await connection.end();
|
||||||
|
}
|
||||||
49
scripts/test-imapflow-oauth.mjs
Normal file
49
scripts/test-imapflow-oauth.mjs
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
import { ImapFlow } from "imapflow";
|
||||||
|
|
||||||
|
const required = (name) => {
|
||||||
|
const value = process.env[name];
|
||||||
|
if (!value) throw new Error(`Variable ${name} manquante`);
|
||||||
|
return value;
|
||||||
|
};
|
||||||
|
|
||||||
|
const tenantId = required("AZURE_AD_TENANT_ID");
|
||||||
|
const clientId = required("AZURE_AD_CLIENT_ID");
|
||||||
|
const clientSecret = required("AZURE_AD_CLIENT_SECRET");
|
||||||
|
const email = required("IMAP_TEST_EMAIL");
|
||||||
|
const host = process.env.IMAP_TEST_HOST || "outlook.office365.com";
|
||||||
|
|
||||||
|
const response = await fetch(
|
||||||
|
`https://login.microsoftonline.com/${tenantId}/oauth2/v2.0/token`,
|
||||||
|
{
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/x-www-form-urlencoded" },
|
||||||
|
body: new URLSearchParams({
|
||||||
|
client_id: clientId,
|
||||||
|
client_secret: clientSecret,
|
||||||
|
scope: "https://outlook.office365.com/.default",
|
||||||
|
grant_type: "client_credentials",
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
);
|
||||||
|
const tokenResponse = await response.json();
|
||||||
|
if (!response.ok || !tokenResponse.access_token) {
|
||||||
|
throw new Error(`Échec OAuth2 : ${tokenResponse.error || response.status}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const client = new ImapFlow({
|
||||||
|
host,
|
||||||
|
port: 993,
|
||||||
|
secure: true,
|
||||||
|
auth: { user: email, accessToken: tokenResponse.access_token },
|
||||||
|
tls: { servername: host, rejectUnauthorized: true },
|
||||||
|
verifyOnly: true,
|
||||||
|
logger: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
await client.connect();
|
||||||
|
console.log(`Authentification ImapFlow OAuth2 réussie pour ${email}`);
|
||||||
|
} finally {
|
||||||
|
if (client.usable) await client.logout().catch(() => client.close());
|
||||||
|
else client.close();
|
||||||
|
}
|
||||||
@@ -17,7 +17,8 @@ import { startEmailImportService } from "../emailImportService";
|
|||||||
import { startFolderImportService } from "../folderImportService";
|
import { startFolderImportService } from "../folderImportService";
|
||||||
import { handleAzureCallback, isAzureAdConfigured, generateToken, verifyToken } from "../auth";
|
import { handleAzureCallback, isAzureAdConfigured, generateToken, verifyToken } from "../auth";
|
||||||
import { createDatabaseBackup } from "../databaseBackup";
|
import { createDatabaseBackup } from "../databaseBackup";
|
||||||
import { generateStorageKey, localStoragePut } from "../localStorage";
|
import { generateStorageKey, localStorageDelete, localStoragePut } from "../localStorage";
|
||||||
|
import { calculateFileSha256 } from "../fileFingerprint";
|
||||||
|
|
||||||
const MAX_WEB_IMPORT_BYTES = 20 * 1024 * 1024;
|
const MAX_WEB_IMPORT_BYTES = 20 * 1024 * 1024;
|
||||||
|
|
||||||
@@ -305,7 +306,7 @@ async function startServer() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { getWebImportSourceByToken, createInvoice, findDuplicateInvoice, isInvoiceBlacklisted, updateWebImportSourceStatus, createSourceFile } = await import('../db');
|
const { getWebImportSourceByToken, createInvoice, findDuplicateInvoice, isInvoiceBlacklisted, updateWebImportSourceStatus, createSourceFile, getSourceFileByContentHash } = await import('../db');
|
||||||
const source = await getWebImportSourceByToken(apiToken);
|
const source = await getWebImportSourceByToken(apiToken);
|
||||||
if (!source) {
|
if (!source) {
|
||||||
res.status(401).json({ error: "Token invalide" });
|
res.status(401).json({ error: "Token invalide" });
|
||||||
@@ -317,15 +318,35 @@ async function startServer() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const contentHash = calculateFileSha256(pdfBuffer);
|
||||||
|
const existingSource = await getSourceFileByContentHash(contentHash);
|
||||||
|
if (existingSource) {
|
||||||
|
await updateWebImportSourceStatus(source.id, "success", 0, true);
|
||||||
|
res.json({ success: true, imported: 0, duplicates: 1, total: 1 });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Stocker d'abord le PDF de façon persistante, comme les autres sources d'import.
|
// Stocker d'abord le PDF de façon persistante, comme les autres sources d'import.
|
||||||
const storageKey = generateStorageKey(source.userId, safeFileName);
|
const storageKey = generateStorageKey(source.userId, safeFileName);
|
||||||
const { url: fileUrl } = await localStoragePut(storageKey, pdfBuffer, "application/pdf");
|
const { url: fileUrl } = await localStoragePut(storageKey, pdfBuffer, "application/pdf");
|
||||||
const sourceFile = await createSourceFile({
|
let sourceFile;
|
||||||
userId: source.userId,
|
try {
|
||||||
fileName: safeFileName,
|
sourceFile = await createSourceFile({
|
||||||
fileKey: storageKey,
|
userId: source.userId,
|
||||||
fileUrl,
|
fileName: safeFileName,
|
||||||
});
|
fileKey: storageKey,
|
||||||
|
fileUrl,
|
||||||
|
contentHash,
|
||||||
|
});
|
||||||
|
} catch (error: any) {
|
||||||
|
if (error?.code === "ER_DUP_ENTRY" || error?.errno === 1062) {
|
||||||
|
await localStorageDelete(storageKey).catch(() => undefined);
|
||||||
|
await updateWebImportSourceStatus(source.id, "success", 0, true);
|
||||||
|
res.json({ success: true, imported: 0, duplicates: 1, total: 1 });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
const userSettings = await getUserSettings(source.userId);
|
const userSettings = await getUserSettings(source.userId);
|
||||||
const aiSettings = {
|
const aiSettings = {
|
||||||
aiProvider: userSettings?.aiProvider || "manus",
|
aiProvider: userSettings?.aiProvider || "manus",
|
||||||
|
|||||||
@@ -3,10 +3,18 @@ import fs from "fs";
|
|||||||
import { type Server } from "http";
|
import { type Server } from "http";
|
||||||
import { nanoid } from "nanoid";
|
import { nanoid } from "nanoid";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import { createServer as createViteServer } from "vite";
|
|
||||||
import viteConfig from "../../vite.config";
|
|
||||||
|
|
||||||
export async function setupVite(app: Express, server: Server) {
|
export async function setupVite(app: Express, server: Server) {
|
||||||
|
// Vite et sa configuration sont des dépendances de développement. Les imports
|
||||||
|
// indirects empêchent esbuild de les intégrer au bundle serveur de production.
|
||||||
|
const vitePackageName = "vite";
|
||||||
|
const viteConfigPath = "../../vite.config";
|
||||||
|
const [viteModule, viteConfigModule] = await Promise.all([
|
||||||
|
import(vitePackageName),
|
||||||
|
import(viteConfigPath),
|
||||||
|
]);
|
||||||
|
const createViteServer = viteModule.createServer as typeof import("vite").createServer;
|
||||||
|
const viteConfig = viteConfigModule.default;
|
||||||
const serverOptions = {
|
const serverOptions = {
|
||||||
middlewareMode: true,
|
middlewareMode: true,
|
||||||
hmr: { server },
|
hmr: { server },
|
||||||
|
|||||||
30
server/automationActions.test.ts
Normal file
30
server/automationActions.test.ts
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
import { matchesAutomationActionFilter } from "@shared/automationActions";
|
||||||
|
|
||||||
|
describe("matchesAutomationActionFilter", () => {
|
||||||
|
it("filtre chaque type d’action métier", () => {
|
||||||
|
const actions = JSON.stringify({
|
||||||
|
typeAchat: "OPEX",
|
||||||
|
serviceConcerne: "DSI SANTINOVA",
|
||||||
|
ventilationComptable: "SANTINOVA",
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(matchesAutomationActionFilter(actions, "typeAchat")).toBe(true);
|
||||||
|
expect(matchesAutomationActionFilter(actions, "serviceConcerne")).toBe(true);
|
||||||
|
expect(matchesAutomationActionFilter(actions, "ventilationComptable")).toBe(true);
|
||||||
|
expect(matchesAutomationActionFilter(actions, "subscription")).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("distingue les règles Abonnement Oui et Non", () => {
|
||||||
|
expect(matchesAutomationActionFilter('{"isSubscription":1}', "subscription")).toBe(true);
|
||||||
|
expect(matchesAutomationActionFilter('{"isSubscription":1}', "subscriptionYes")).toBe(true);
|
||||||
|
expect(matchesAutomationActionFilter('{"isSubscription":1}', "subscriptionNo")).toBe(false);
|
||||||
|
expect(matchesAutomationActionFilter('{"isSubscription":0}', "subscriptionYes")).toBe(false);
|
||||||
|
expect(matchesAutomationActionFilter('{"isSubscription":0}', "subscriptionNo")).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("tolère les règles historiques invalides sans masquer le filtre Toutes les actions", () => {
|
||||||
|
expect(matchesAutomationActionFilter("json-invalide", "all")).toBe(true);
|
||||||
|
expect(matchesAutomationActionFilter("json-invalide", "subscription")).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
66
server/automationEngine.test.ts
Normal file
66
server/automationEngine.test.ts
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
||||||
|
import type { Invoice } from "../drizzle/schema";
|
||||||
|
import { getAutomationRulesByUser } from "./db";
|
||||||
|
import { applyAutomationRules } from "./automationEngine";
|
||||||
|
|
||||||
|
vi.mock("./db", () => ({
|
||||||
|
getAutomationRulesByUser: vi.fn(),
|
||||||
|
}));
|
||||||
|
|
||||||
|
const mockedGetAutomationRules = vi.mocked(getAutomationRulesByUser);
|
||||||
|
|
||||||
|
const invoice = {
|
||||||
|
id: 1,
|
||||||
|
supplierName: "Microsoft Ireland Operations Ltd",
|
||||||
|
isSubscription: 0,
|
||||||
|
} as Invoice;
|
||||||
|
|
||||||
|
describe("applyAutomationRules", () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
mockedGetAutomationRules.mockReset();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("applique Abonnement = Oui et trace le champ automatisé", async () => {
|
||||||
|
mockedGetAutomationRules.mockResolvedValue([
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
userId: 1,
|
||||||
|
name: "Microsoft est un abonnement",
|
||||||
|
isActive: 1,
|
||||||
|
priority: 1,
|
||||||
|
conditions: JSON.stringify([{ field: "supplierName", operator: "contains", value: "microsoft" }]),
|
||||||
|
conditionsLogic: "AND",
|
||||||
|
actions: JSON.stringify({ isSubscription: 1 }),
|
||||||
|
createdAt: new Date(),
|
||||||
|
updatedAt: new Date(),
|
||||||
|
},
|
||||||
|
] as never);
|
||||||
|
|
||||||
|
await expect(applyAutomationRules(1, invoice)).resolves.toMatchObject({
|
||||||
|
isSubscription: 1,
|
||||||
|
autoFilledFields: JSON.stringify(["isSubscription"]),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it("autorise Abonnement = Non sans le confondre avec une absence d’action", async () => {
|
||||||
|
mockedGetAutomationRules.mockResolvedValue([
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
userId: 1,
|
||||||
|
name: "Microsoft n’est pas un abonnement",
|
||||||
|
isActive: 1,
|
||||||
|
priority: 1,
|
||||||
|
conditions: JSON.stringify([{ field: "supplierName", operator: "contains", value: "microsoft" }]),
|
||||||
|
conditionsLogic: "AND",
|
||||||
|
actions: JSON.stringify({ isSubscription: 0 }),
|
||||||
|
createdAt: new Date(),
|
||||||
|
updatedAt: new Date(),
|
||||||
|
},
|
||||||
|
] as never);
|
||||||
|
|
||||||
|
await expect(applyAutomationRules(1, invoice)).resolves.toMatchObject({
|
||||||
|
isSubscription: 0,
|
||||||
|
autoFilledFields: JSON.stringify(["isSubscription"]),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -11,6 +11,7 @@ interface Actions {
|
|||||||
typeAchat?: string;
|
typeAchat?: string;
|
||||||
serviceConcerne?: string;
|
serviceConcerne?: string;
|
||||||
ventilationComptable?: string;
|
ventilationComptable?: string;
|
||||||
|
isSubscription?: 0 | 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -111,6 +112,11 @@ export async function applyAutomationRules(
|
|||||||
updates.ventilationComptable = actions.ventilationComptable;
|
updates.ventilationComptable = actions.ventilationComptable;
|
||||||
autoFilledFieldsList.push("ventilationComptable");
|
autoFilledFieldsList.push("ventilationComptable");
|
||||||
}
|
}
|
||||||
|
// 0 est une valeur métier valide : ne jamais la tester par vérité.
|
||||||
|
if (actions.isSubscription !== undefined && updates.isSubscription === undefined) {
|
||||||
|
updates.isSubscription = actions.isSubscription;
|
||||||
|
autoFilledFieldsList.push("isSubscription");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(`[AutomationEngine] Error processing rule ${rule.id}:`, error);
|
console.error(`[AutomationEngine] Error processing rule ${rule.id}:`, error);
|
||||||
|
|||||||
16
server/bapEligibility.test.ts
Normal file
16
server/bapEligibility.test.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
import { BAP_MIN_QUALITY_SCORE, meetsBapQualityThreshold } from "@shared/bapEligibility";
|
||||||
|
|
||||||
|
describe("meetsBapQualityThreshold", () => {
|
||||||
|
it("autorise exactement le seuil de 90 %", () => {
|
||||||
|
expect(BAP_MIN_QUALITY_SCORE).toBe(90);
|
||||||
|
expect(meetsBapQualityThreshold(90)).toBe(true);
|
||||||
|
expect(meetsBapQualityThreshold(100)).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("refuse les scores inférieurs ou absents", () => {
|
||||||
|
expect(meetsBapQualityThreshold(89)).toBe(false);
|
||||||
|
expect(meetsBapQualityThreshold(null)).toBe(false);
|
||||||
|
expect(meetsBapQualityThreshold(undefined)).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
52
server/bapNavigation.test.ts
Normal file
52
server/bapNavigation.test.ts
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
import {
|
||||||
|
buildBapDetailLocation,
|
||||||
|
getBapReturnLocation,
|
||||||
|
parseBapFilters,
|
||||||
|
} from "../client/src/lib/bapNavigation";
|
||||||
|
|
||||||
|
describe("navigation Factures BAP", () => {
|
||||||
|
it("transmet tous les filtres et le tri à la page de détail", () => {
|
||||||
|
const location = buildBapDetailLocation(42, {
|
||||||
|
searchQuery: "microsoft europe",
|
||||||
|
statusFilter: "bap_pending",
|
||||||
|
selectedYear: "2026",
|
||||||
|
selectedMonth: "05",
|
||||||
|
sortField: "invoiceDate",
|
||||||
|
sortDir: "asc",
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(location).toBe(
|
||||||
|
"/invoices/42?returnTo=bap&q=microsoft+europe&status=bap_pending&year=2026&month=05&sort=invoiceDate&dir=asc"
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("restaure la liste BAP et les filtres de façon sûre", () => {
|
||||||
|
const detailSearch =
|
||||||
|
"?returnTo=bap&q=microsoft+europe&status=bap_pending&year=2026&month=05&sort=invoiceDate&dir=asc";
|
||||||
|
|
||||||
|
expect(getBapReturnLocation(detailSearch)).toBe(
|
||||||
|
"/invoices-bap?q=microsoft+europe&status=bap_pending&year=2026&month=05&sort=invoiceDate&dir=asc"
|
||||||
|
);
|
||||||
|
expect(parseBapFilters(detailSearch, "2026")).toEqual({
|
||||||
|
searchQuery: "microsoft europe",
|
||||||
|
statusFilter: "bap_pending",
|
||||||
|
selectedYear: "2026",
|
||||||
|
selectedMonth: "05",
|
||||||
|
sortField: "invoiceDate",
|
||||||
|
sortDir: "asc",
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it("retombe sur les valeurs BAP sûres si les paramètres sont absents ou invalides", () => {
|
||||||
|
expect(parseBapFilters("?returnTo=bap&status=invalid&year=x&sort=nope&dir=down", "2026")).toEqual({
|
||||||
|
searchQuery: "",
|
||||||
|
statusFilter: "all",
|
||||||
|
selectedYear: "2026",
|
||||||
|
selectedMonth: "all",
|
||||||
|
sortField: "createdAt",
|
||||||
|
sortDir: "desc",
|
||||||
|
});
|
||||||
|
expect(getBapReturnLocation("?returnTo=invoices")).toBe("/invoices");
|
||||||
|
});
|
||||||
|
});
|
||||||
45
server/db.ts
45
server/db.ts
@@ -50,6 +50,7 @@ import {
|
|||||||
WebImportSource
|
WebImportSource
|
||||||
} from "../drizzle/schema";
|
} from "../drizzle/schema";
|
||||||
import { ENV } from './_core/env';
|
import { ENV } from './_core/env';
|
||||||
|
import { buildAnnualInvoiceSummary } from "@shared/invoiceAnalytics";
|
||||||
|
|
||||||
let _db: ReturnType<typeof drizzle> | null = null;
|
let _db: ReturnType<typeof drizzle> | null = null;
|
||||||
|
|
||||||
@@ -204,6 +205,22 @@ export async function createSourceFile(data: InsertSourceFile): Promise<SourceFi
|
|||||||
return inserted[0]!;
|
return inserted[0]!;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recherche un PDF déjà ingéré, quel que soit le compte utilisateur.
|
||||||
|
* L'import email est partagé entre plusieurs identités : la détection doit donc
|
||||||
|
* être globale pour éviter qu'une même pièce soit retraitée sous chaque compte.
|
||||||
|
*/
|
||||||
|
export async function getSourceFileByContentHash(contentHash: string): Promise<SourceFile | undefined> {
|
||||||
|
const db = await getDb();
|
||||||
|
if (!db) return undefined;
|
||||||
|
const result = await db
|
||||||
|
.select()
|
||||||
|
.from(sourceFiles)
|
||||||
|
.where(eq(sourceFiles.contentHash, contentHash))
|
||||||
|
.limit(1);
|
||||||
|
return result[0];
|
||||||
|
}
|
||||||
|
|
||||||
export async function getSourceFileById(id: number): Promise<SourceFile | undefined> {
|
export async function getSourceFileById(id: number): Promise<SourceFile | undefined> {
|
||||||
const db = await getDb();
|
const db = await getDb();
|
||||||
if (!db) return undefined;
|
if (!db) return undefined;
|
||||||
@@ -316,7 +333,7 @@ export async function searchInvoices(userId: number | null, query: string): Prom
|
|||||||
.orderBy(desc(invoices.createdAt));
|
.orderBy(desc(invoices.createdAt));
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getInvoiceStats(userId: number) {
|
export async function getInvoiceStats(userId?: number) {
|
||||||
const db = await getDb();
|
const db = await getDb();
|
||||||
if (!db) return {
|
if (!db) return {
|
||||||
total: 0,
|
total: 0,
|
||||||
@@ -330,10 +347,12 @@ export async function getInvoiceStats(userId: number) {
|
|||||||
topSuppliers: [],
|
topSuppliers: [],
|
||||||
suppliersList: [],
|
suppliersList: [],
|
||||||
topRecipients: [],
|
topRecipients: [],
|
||||||
recipientsList: []
|
recipientsList: [],
|
||||||
|
annualSummary: [],
|
||||||
};
|
};
|
||||||
|
|
||||||
const allInvoices = await getInvoicesByUserId(userId);
|
// Le tableau de bord est global pour les administrateurs, comme les listes Factures.
|
||||||
|
const allInvoices = userId ? await getInvoicesByUserId(userId) : await getAllInvoices();
|
||||||
|
|
||||||
// Calculate basic stats
|
// Calculate basic stats
|
||||||
const completed = allInvoices.filter(i => i.status === "completed");
|
const completed = allInvoices.filter(i => i.status === "completed");
|
||||||
@@ -442,7 +461,8 @@ export async function getInvoiceStats(userId: number) {
|
|||||||
topSuppliers,
|
topSuppliers,
|
||||||
suppliersList,
|
suppliersList,
|
||||||
topRecipients,
|
topRecipients,
|
||||||
recipientsList
|
recipientsList,
|
||||||
|
annualSummary: buildAnnualInvoiceSummary(allInvoices),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1218,20 +1238,3 @@ export async function updateWebImportSourceStatus(
|
|||||||
if (success) update.lastSuccessAt = new Date();
|
if (success) update.lastSuccessAt = new Date();
|
||||||
await db.update(webImportSources).set(update).where(eq(webImportSources.id, id));
|
await db.update(webImportSources).set(update).where(eq(webImportSources.id, id));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Check if a source file with the same fileName already exists for this user
|
|
||||||
* Used to prevent duplicate file storage during email import
|
|
||||||
*/
|
|
||||||
export async function findSourceFileByFileName(userId: number, fileName: string): Promise<any | null> {
|
|
||||||
const db = await getDb();
|
|
||||||
if (!db) return null;
|
|
||||||
const result = await db.select()
|
|
||||||
.from(sourceFiles)
|
|
||||||
.where(and(
|
|
||||||
eq(sourceFiles.userId, userId),
|
|
||||||
eq(sourceFiles.fileName, fileName)
|
|
||||||
))
|
|
||||||
.limit(1);
|
|
||||||
return result[0] || null;
|
|
||||||
}
|
|
||||||
|
|||||||
38
server/emailImportService.test.ts
Normal file
38
server/emailImportService.test.ts
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
import { createImapFlowOptions, type EmailImportConfig } from "./emailImportService";
|
||||||
|
|
||||||
|
const baseConfig: EmailImportConfig = {
|
||||||
|
userId: 2,
|
||||||
|
emailAddress: "compta@example.org",
|
||||||
|
password: "secret",
|
||||||
|
host: "outlook.office365.com",
|
||||||
|
port: 993,
|
||||||
|
};
|
||||||
|
|
||||||
|
describe("createImapFlowOptions", () => {
|
||||||
|
it("transmet le jeton brut à ImapFlow pour une authentification OAuth2", () => {
|
||||||
|
const options = createImapFlowOptions(
|
||||||
|
{ ...baseConfig, authMode: "oauth2" },
|
||||||
|
"access-token-value",
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(options.secure).toBe(true);
|
||||||
|
expect(options.auth).toEqual({
|
||||||
|
user: "compta@example.org",
|
||||||
|
accessToken: "access-token-value",
|
||||||
|
});
|
||||||
|
expect(options.auth).not.toHaveProperty("pass");
|
||||||
|
expect(options.tls?.rejectUnauthorized).toBe(true);
|
||||||
|
expect(options.disableAutoIdle).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("conserve le mot de passe uniquement pour le mode basique", () => {
|
||||||
|
const options = createImapFlowOptions({ ...baseConfig, authMode: "basic" });
|
||||||
|
|
||||||
|
expect(options.auth).toEqual({
|
||||||
|
user: "compta@example.org",
|
||||||
|
pass: "secret",
|
||||||
|
});
|
||||||
|
expect(options.auth).not.toHaveProperty("accessToken");
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,23 +1,24 @@
|
|||||||
import Imap from "imap";
|
import { ImapFlow, type ImapFlowOptions, type SearchObject } from "imapflow";
|
||||||
import { simpleParser, ParsedMail, Attachment } from "mailparser";
|
import { simpleParser, ParsedMail, Attachment } from "mailparser";
|
||||||
import {
|
import {
|
||||||
getImportSettingsByUser,
|
getImportSettingsByUser,
|
||||||
createSourceFile,
|
createSourceFile,
|
||||||
updateSourceFile,
|
updateSourceFile,
|
||||||
getUserSettings,
|
getUserSettings,
|
||||||
|
getSourceFileByContentHash,
|
||||||
findDuplicateInvoice,
|
findDuplicateInvoice,
|
||||||
isInvoiceBlacklisted,
|
isInvoiceBlacklisted,
|
||||||
createInvoice,
|
createInvoice,
|
||||||
createImportLog,
|
createImportLog,
|
||||||
findSourceFileByFileName,
|
|
||||||
} from "./db";
|
} from "./db";
|
||||||
import { extractInvoicesWithMistral, generateMetadataJSON } from "./invoiceExtractor";
|
import { extractInvoicesWithMistral, generateMetadataJSON } from "./invoiceExtractor";
|
||||||
import { localStoragePut, generateStorageKey } from "./localStorage";
|
import { localStorageDelete, localStoragePut, generateStorageKey } from "./localStorage";
|
||||||
|
import { calculateFileSha256 } from "./fileFingerprint";
|
||||||
import { sendImportNotification } from "./notificationService";
|
import { sendImportNotification } from "./notificationService";
|
||||||
import { getOffice365ImapToken, buildXOAuth2String } from "./office365OAuth";
|
import { getOffice365ImapToken } from "./office365OAuth";
|
||||||
import { applyAutomationRules } from "./automationEngine";
|
import { applyAutomationRules } from "./automationEngine";
|
||||||
|
|
||||||
interface EmailImportConfig {
|
export interface EmailImportConfig {
|
||||||
userId: number;
|
userId: number;
|
||||||
emailAddress: string;
|
emailAddress: string;
|
||||||
password: string;
|
password: string;
|
||||||
@@ -31,10 +32,54 @@ interface EmailImportConfig {
|
|||||||
azureClientSecret?: string;
|
azureClientSecret?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Construit les options ImapFlow sans effectuer d'appel réseau.
|
||||||
|
* ImapFlow reçoit le jeton brut et construit lui-même SASL XOAUTH2.
|
||||||
|
*/
|
||||||
|
export function createImapFlowOptions(
|
||||||
|
config: EmailImportConfig,
|
||||||
|
accessToken?: string,
|
||||||
|
): ImapFlowOptions {
|
||||||
|
const auth = config.authMode === "oauth2"
|
||||||
|
? { user: config.emailAddress, accessToken }
|
||||||
|
: { user: config.emailAddress, pass: config.password };
|
||||||
|
|
||||||
|
return {
|
||||||
|
host: config.host,
|
||||||
|
port: config.port,
|
||||||
|
secure: true,
|
||||||
|
auth,
|
||||||
|
tls: {
|
||||||
|
servername: config.host,
|
||||||
|
rejectUnauthorized: true,
|
||||||
|
},
|
||||||
|
logger: false,
|
||||||
|
disableAutoIdle: true,
|
||||||
|
connectionTimeout: 30_000,
|
||||||
|
greetingTimeout: 20_000,
|
||||||
|
socketTimeout: 120_000,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
// Store active intervals for each user
|
// Store active intervals for each user
|
||||||
const activeIntervals = new Map<number, NodeJS.Timeout>();
|
const activeIntervals = new Map<number, NodeJS.Timeout>();
|
||||||
// Verrou anti-concurrence par userId
|
// Une extraction IA peut dépasser la fréquence configurée : ce verrou évite
|
||||||
const runningChecks = new Set<number>();
|
// qu'un second cycle IMAP traite les mêmes messages avant la fin du premier.
|
||||||
|
const activeChecks = new Map<number, Promise<void>>();
|
||||||
|
|
||||||
|
function runEmailCheckExclusive(config: EmailImportConfig): Promise<void> {
|
||||||
|
const runningCheck = activeChecks.get(config.userId);
|
||||||
|
if (runningCheck) {
|
||||||
|
console.log(`[EmailImport] Vérification déjà en cours pour user ${config.userId}, cycle ignoré`);
|
||||||
|
return runningCheck;
|
||||||
|
}
|
||||||
|
|
||||||
|
const check = checkEmailsForPDFs(config).finally(() => {
|
||||||
|
if (activeChecks.get(config.userId) === check) activeChecks.delete(config.userId);
|
||||||
|
});
|
||||||
|
activeChecks.set(config.userId, check);
|
||||||
|
return check;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Process a single email attachment (PDF)
|
* Process a single email attachment (PDF)
|
||||||
@@ -52,14 +97,23 @@ async function processEmailAttachment(
|
|||||||
// Convert attachment content to Buffer
|
// Convert attachment content to Buffer
|
||||||
const fileBuffer = attachment.content;
|
const fileBuffer = attachment.content;
|
||||||
console.log(`[EmailImport] File size: ${fileBuffer.length} bytes`);
|
console.log(`[EmailImport] File size: ${fileBuffer.length} bytes`);
|
||||||
|
|
||||||
|
const contentHash = calculateFileSha256(fileBuffer);
|
||||||
|
const existingSource = await getSourceFileByContentHash(contentHash);
|
||||||
|
if (existingSource) {
|
||||||
|
console.log(
|
||||||
|
`[EmailImport] PDF déjà importé, extraction ignorée: ${fileName} -> source ${existingSource.id}`,
|
||||||
|
);
|
||||||
|
return {
|
||||||
|
success: true,
|
||||||
|
totalInvoices: Math.max(existingSource.totalInvoicesDetected, 1),
|
||||||
|
imported: 0,
|
||||||
|
duplicates: Math.max(existingSource.totalInvoicesDetected, 1),
|
||||||
|
errors: 0,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
// Store source file
|
// Store source file
|
||||||
// ANTI-DUPLICATION : vérifier si ce fichier a déjà été importé pour cet utilisateur
|
|
||||||
const existingSourceFile = await findSourceFileByFileName(userId, fileName);
|
|
||||||
if (existingSourceFile) {
|
|
||||||
console.log(`[EmailImport] File ${fileName} already imported for user ${userId} (sourceFile #${existingSourceFile.id}), skipping`);
|
|
||||||
return { success: true, totalInvoices: 0, imported: 0, duplicates: 1, errors: 0 };
|
|
||||||
}
|
|
||||||
const sourceFileKey = generateStorageKey(userId, fileName);
|
const sourceFileKey = generateStorageKey(userId, fileName);
|
||||||
console.log(`[EmailImport] Generated storage key: ${sourceFileKey}`);
|
console.log(`[EmailImport] Generated storage key: ${sourceFileKey}`);
|
||||||
|
|
||||||
@@ -74,13 +128,25 @@ async function processEmailAttachment(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Create source file record
|
// Create source file record
|
||||||
const sourceFile = await createSourceFile({
|
let sourceFile;
|
||||||
userId,
|
try {
|
||||||
fileName,
|
sourceFile = await createSourceFile({
|
||||||
fileKey: sourceFileKey,
|
userId,
|
||||||
fileUrl: sourceFileUrl,
|
fileName,
|
||||||
processingStatus: "processing",
|
fileKey: sourceFileKey,
|
||||||
});
|
fileUrl: sourceFileUrl,
|
||||||
|
contentHash,
|
||||||
|
processingStatus: "processing",
|
||||||
|
});
|
||||||
|
} catch (error: any) {
|
||||||
|
// La contrainte unique protège également contre deux imports concurrents.
|
||||||
|
if (error?.code === "ER_DUP_ENTRY" || error?.errno === 1062) {
|
||||||
|
await localStorageDelete(sourceFileKey).catch(() => undefined);
|
||||||
|
console.log(`[EmailImport] PDF réservé par un autre traitement: ${fileName}`);
|
||||||
|
return { success: true, totalInvoices: 1, imported: 0, duplicates: 1, errors: 0 };
|
||||||
|
}
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
|
||||||
console.log(`[EmailImport] Source file record created with ID: ${sourceFile.id}`);
|
console.log(`[EmailImport] Source file record created with ID: ${sourceFile.id}`);
|
||||||
|
|
||||||
@@ -295,7 +361,7 @@ async function processEmailAttachment(
|
|||||||
* - basic : login/password classique
|
* - basic : login/password classique
|
||||||
* - oauth2 : obtient un token Azure AD et utilise XOAUTH2
|
* - oauth2 : obtient un token Azure AD et utilise XOAUTH2
|
||||||
*/
|
*/
|
||||||
async function buildImapConfig(config: EmailImportConfig): Promise<Imap.Config> {
|
async function buildImapConfig(config: EmailImportConfig): Promise<ImapFlowOptions> {
|
||||||
if (config.authMode === "oauth2") {
|
if (config.authMode === "oauth2") {
|
||||||
if (!config.azureTenantId || !config.azureClientId || !config.azureClientSecret) {
|
if (!config.azureTenantId || !config.azureClientId || !config.azureClientSecret) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
@@ -309,198 +375,115 @@ async function buildImapConfig(config: EmailImportConfig): Promise<Imap.Config>
|
|||||||
config.azureClientId,
|
config.azureClientId,
|
||||||
config.azureClientSecret
|
config.azureClientSecret
|
||||||
);
|
);
|
||||||
const xoauth2 = buildXOAuth2String(config.emailAddress, accessToken);
|
|
||||||
console.log(`[EmailImport] OAuth2 token obtained successfully`);
|
console.log(`[EmailImport] OAuth2 token obtained successfully`);
|
||||||
|
|
||||||
return {
|
return createImapFlowOptions(config, accessToken);
|
||||||
user: config.emailAddress,
|
|
||||||
xoauth2,
|
|
||||||
host: config.host,
|
|
||||||
port: config.port,
|
|
||||||
tls: true,
|
|
||||||
tlsOptions: { rejectUnauthorized: false },
|
|
||||||
authTimeout: 30000,
|
|
||||||
} as any;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Basic auth (par défaut)
|
return createImapFlowOptions(config);
|
||||||
return {
|
|
||||||
user: config.emailAddress,
|
|
||||||
password: config.password,
|
|
||||||
host: config.host,
|
|
||||||
port: config.port,
|
|
||||||
tls: true,
|
|
||||||
tlsOptions: { rejectUnauthorized: false },
|
|
||||||
authTimeout: 30000,
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Connect to IMAP and process unread emails with PDF attachments
|
* Connect to IMAP and process unread emails with PDF attachments
|
||||||
*/
|
*/
|
||||||
async function checkEmailsForPDFs(config: EmailImportConfig): Promise<void> {
|
async function checkEmailsForPDFs(config: EmailImportConfig): Promise<void> {
|
||||||
// Anti-concurrence : ne pas lancer si un check est déjà en cours pour cet utilisateur
|
|
||||||
if (runningChecks.has(config.userId)) {
|
|
||||||
console.log(`[EmailImport] Check already running for user ${config.userId}, skipping`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
runningChecks.add(config.userId);
|
|
||||||
// Build IMAP config (may involve async OAuth2 token fetch)
|
|
||||||
const imapConfig = await buildImapConfig(config);
|
const imapConfig = await buildImapConfig(config);
|
||||||
|
const client = new ImapFlow(imapConfig);
|
||||||
|
client.on("error", (error) => {
|
||||||
|
console.error(`[EmailImport] IMAP connection error for user ${config.userId}:`, error);
|
||||||
|
});
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
let lock: Awaited<ReturnType<ImapFlow["getMailboxLock"]>> | undefined;
|
||||||
const imap = new Imap(imapConfig);
|
try {
|
||||||
|
await client.connect();
|
||||||
|
console.log(
|
||||||
|
`[EmailImport] Connected to IMAP server for user ${config.userId} (mode: ${config.authMode || "basic"})`,
|
||||||
|
);
|
||||||
|
|
||||||
function openInbox(cb: (err: Error | null, box?: any) => void) {
|
lock = await client.getMailboxLock("INBOX", {
|
||||||
imap.openBox("INBOX", false, cb);
|
readOnly: false,
|
||||||
|
acquireTimeout: 30_000,
|
||||||
|
description: `invoice-import-user-${config.userId}`,
|
||||||
|
});
|
||||||
|
|
||||||
|
const searchCriteria: SearchObject = { seen: false };
|
||||||
|
if (config.sinceDate) {
|
||||||
|
searchCriteria.since = new Date(config.sinceDate * 1000);
|
||||||
|
console.log(
|
||||||
|
`[EmailImport] Filtering emails since ${searchCriteria.since.toISOString()} for user ${config.userId}`,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
imap.once("ready", () => {
|
const unreadUids = await client.search(searchCriteria, { uid: true });
|
||||||
console.log(`[EmailImport] Connected to IMAP server for user ${config.userId} (mode: ${config.authMode || "basic"})`);
|
if (!unreadUids || unreadUids.length === 0) {
|
||||||
|
console.log(`[EmailImport] No unread emails found for user ${config.userId}`);
|
||||||
openInbox((err) => {
|
return;
|
||||||
if (err) {
|
}
|
||||||
console.error("[EmailImport] Error opening inbox:", err);
|
|
||||||
imap.end();
|
|
||||||
reject(err);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Build search criteria: unread emails, optionally filtered by date
|
console.log(`[EmailImport] Found ${unreadUids.length} unread emails for user ${config.userId}`);
|
||||||
const searchCriteria: any[] = ["UNSEEN"];
|
|
||||||
if (config.sinceDate) {
|
|
||||||
// IMAP SINCE expects a date string like "1-Jan-2026"
|
|
||||||
const since = new Date(config.sinceDate * 1000);
|
|
||||||
const months = ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];
|
|
||||||
const sinceStr = `${since.getDate()}-${months[since.getMonth()]}-${since.getFullYear()}`;
|
|
||||||
searchCriteria.push(["SINCE", sinceStr]);
|
|
||||||
console.log(`[EmailImport] Filtering emails since ${sinceStr} for user ${config.userId}`);
|
|
||||||
}
|
|
||||||
imap.search(searchCriteria, (err, results) => {
|
|
||||||
if (err) {
|
|
||||||
console.error("[EmailImport] Error searching emails:", err);
|
|
||||||
imap.end();
|
|
||||||
reject(err);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!results || results.length === 0) {
|
// Le traitement reste séquentiel afin d'éviter plusieurs extractions IA
|
||||||
console.log(`[EmailImport] No unread emails found for user ${config.userId}`);
|
// concurrentes sur les mêmes pièces jointes.
|
||||||
imap.end();
|
for (const uid of unreadUids) {
|
||||||
resolve();
|
const message = await client.fetchOne(uid, { source: true }, { uid: true });
|
||||||
return;
|
if (!message || !message.source) {
|
||||||
}
|
console.warn(`[EmailImport] Message UID ${uid} without source, skipped`);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
console.log(`[EmailImport] Found ${results.length} unread emails for user ${config.userId}`);
|
try {
|
||||||
|
const parsed: ParsedMail = await simpleParser(message.source);
|
||||||
|
const pdfAttachments = parsed.attachments.filter(
|
||||||
|
(attachment) =>
|
||||||
|
attachment.contentType === "application/pdf" ||
|
||||||
|
attachment.filename?.toLowerCase().endsWith(".pdf"),
|
||||||
|
);
|
||||||
|
|
||||||
const fetch = imap.fetch(results, {
|
if (pdfAttachments.length === 0) continue;
|
||||||
bodies: "",
|
|
||||||
markSeen: true, // Mark as seen immediately to prevent re-processing
|
|
||||||
});
|
|
||||||
|
|
||||||
const processedEmails: number[] = [];
|
console.log(`[EmailImport] Email UID ${uid} has ${pdfAttachments.length} PDF attachment(s)`);
|
||||||
|
let allAttachmentsSucceeded = true;
|
||||||
|
|
||||||
fetch.on("message", (msg, seqno) => {
|
for (const attachment of pdfAttachments) {
|
||||||
msg.on("body", (stream) => {
|
try {
|
||||||
simpleParser(stream as any, async (err, parsed: ParsedMail) => {
|
const result = await processEmailAttachment(
|
||||||
if (err) {
|
config.userId,
|
||||||
console.error("[EmailImport] Error parsing email:", err);
|
attachment,
|
||||||
return;
|
parsed.subject || "No subject",
|
||||||
}
|
);
|
||||||
|
allAttachmentsSucceeded = allAttachmentsSucceeded && result.success;
|
||||||
|
|
||||||
// Check if email has PDF attachments
|
if (result.success) {
|
||||||
const pdfAttachments = parsed.attachments.filter(
|
await sendImportNotification(config.userId, {
|
||||||
(att) =>
|
source: "email",
|
||||||
att.contentType === "application/pdf" ||
|
fileName: attachment.filename || "email-attachment.pdf",
|
||||||
att.filename?.toLowerCase().endsWith(".pdf")
|
totalInvoices: result.totalInvoices,
|
||||||
);
|
imported: result.imported,
|
||||||
|
duplicates: result.duplicates,
|
||||||
if (pdfAttachments.length === 0) {
|
errors: result.errors,
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log(
|
|
||||||
`[EmailImport] Email ${seqno} has ${pdfAttachments.length} PDF attachment(s)`
|
|
||||||
);
|
|
||||||
|
|
||||||
// Process each PDF attachment
|
|
||||||
for (const attachment of pdfAttachments) {
|
|
||||||
try {
|
|
||||||
const result = await processEmailAttachment(
|
|
||||||
config.userId,
|
|
||||||
attachment,
|
|
||||||
parsed.subject || "No subject"
|
|
||||||
);
|
|
||||||
|
|
||||||
// Mark this email as successfully processed
|
|
||||||
if (!processedEmails.includes(seqno)) {
|
|
||||||
processedEmails.push(seqno);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Send notification after successful processing
|
|
||||||
if (result.success) {
|
|
||||||
await sendImportNotification(config.userId, {
|
|
||||||
source: "email",
|
|
||||||
fileName: attachment.filename || "email-attachment.pdf",
|
|
||||||
totalInvoices: result.totalInvoices,
|
|
||||||
imported: result.imported,
|
|
||||||
duplicates: result.duplicates,
|
|
||||||
errors: result.errors,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.error(
|
|
||||||
`[EmailImport] Failed to process attachment from email ${seqno}:`,
|
|
||||||
error
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
fetch.once("error", (err) => {
|
|
||||||
console.error("[EmailImport] Fetch error:", err);
|
|
||||||
imap.end();
|
|
||||||
reject(err);
|
|
||||||
});
|
|
||||||
|
|
||||||
fetch.once("end", () => {
|
|
||||||
console.log(`[EmailImport] Finished fetching emails for user ${config.userId}`);
|
|
||||||
|
|
||||||
// Mark successfully processed emails as seen
|
|
||||||
if (processedEmails.length > 0) {
|
|
||||||
imap.addFlags(processedEmails, ["\\Seen"], (err) => {
|
|
||||||
if (err) {
|
|
||||||
console.error("[EmailImport] Error marking emails as seen:", err);
|
|
||||||
} else {
|
|
||||||
console.log(`[EmailImport] Marked ${processedEmails.length} emails as seen`);
|
|
||||||
}
|
|
||||||
imap.end();
|
|
||||||
resolve();
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
imap.end();
|
|
||||||
resolve();
|
|
||||||
}
|
}
|
||||||
});
|
} catch (error) {
|
||||||
});
|
allAttachmentsSucceeded = false;
|
||||||
});
|
console.error(`[EmailImport] Failed to process attachment from UID ${uid}:`, error);
|
||||||
});
|
}
|
||||||
|
}
|
||||||
|
|
||||||
imap.once("error", (err) => {
|
if (allAttachmentsSucceeded) {
|
||||||
runningChecks.delete(config.userId);
|
await client.messageFlagsAdd(uid, ["\\Seen"], { uid: true, silent: true });
|
||||||
console.error("[EmailImport] IMAP connection error:", err);
|
console.log(`[EmailImport] Marked email UID ${uid} as seen`);
|
||||||
reject(err);
|
}
|
||||||
});
|
} catch (error) {
|
||||||
|
console.error(`[EmailImport] Error parsing email UID ${uid}:`, error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
imap.once("end", () => {
|
console.log(`[EmailImport] Finished processing emails for user ${config.userId}`);
|
||||||
runningChecks.delete(config.userId);
|
} finally {
|
||||||
console.log(`[EmailImport] IMAP connection ended for user ${config.userId}`);
|
lock?.release();
|
||||||
});
|
if (client.usable) await client.logout().catch(() => client.close());
|
||||||
|
else client.close();
|
||||||
imap.connect();
|
}
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -508,57 +491,34 @@ async function checkEmailsForPDFs(config: EmailImportConfig): Promise<void> {
|
|||||||
* Returns detailed error message if connection fails
|
* Returns detailed error message if connection fails
|
||||||
*/
|
*/
|
||||||
export async function testImapConnection(config: EmailImportConfig): Promise<{ success: boolean; message: string }> {
|
export async function testImapConnection(config: EmailImportConfig): Promise<{ success: boolean; message: string }> {
|
||||||
|
let client: ImapFlow | undefined;
|
||||||
try {
|
try {
|
||||||
const imapConfig = await buildImapConfig(config);
|
const imapConfig = await buildImapConfig(config);
|
||||||
|
client = new ImapFlow({ ...imapConfig, verifyOnly: true });
|
||||||
return new Promise((resolve) => {
|
await client.connect();
|
||||||
const imap = new Imap(imapConfig);
|
console.log(`[EmailImport] Test connection successful for ${config.emailAddress}`);
|
||||||
let resolved = false;
|
return { success: true, message: `Connexion IMAP OAuth2 réussie pour ${config.emailAddress}` };
|
||||||
|
|
||||||
const done = (result: { success: boolean; message: string }) => {
|
|
||||||
if (!resolved) {
|
|
||||||
resolved = true;
|
|
||||||
try { imap.destroy(); } catch {}
|
|
||||||
resolve(result);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
imap.once("ready", () => {
|
|
||||||
console.log(`[EmailImport] Test connection successful for ${config.emailAddress}`);
|
|
||||||
done({ success: true, message: `Connexion IMAP réussie pour ${config.emailAddress}` });
|
|
||||||
});
|
|
||||||
|
|
||||||
imap.once("error", (err: any) => {
|
|
||||||
console.error(`[EmailImport] Test connection failed:`, err);
|
|
||||||
let message = `Erreur de connexion IMAP : ${err.message || err}`;
|
|
||||||
|
|
||||||
// Messages d'erreur plus clairs
|
|
||||||
if (err.message?.includes("Invalid credentials") || err.message?.includes("AUTHENTICATE")) {
|
|
||||||
if (config.authMode === "oauth2") {
|
|
||||||
message = "Authentification OAuth2 refusée. Vérifiez que l'application Azure AD a bien la permission IMAP.AccessAsApp et que le consentement admin a été accordé.";
|
|
||||||
} else {
|
|
||||||
message = "Identifiants invalides. Pour Office 365, l'authentification basique est désactivée. Activez le mode OAuth2 et configurez les credentials Azure AD.";
|
|
||||||
}
|
|
||||||
} else if (err.message?.includes("ECONNREFUSED") || err.message?.includes("ENOTFOUND")) {
|
|
||||||
message = `Impossible de se connecter au serveur ${config.host}:${config.port}. Vérifiez l'adresse et le port IMAP.`;
|
|
||||||
} else if (err.message?.includes("certificate") || err.message?.includes("SSL")) {
|
|
||||||
message = `Erreur SSL/TLS lors de la connexion à ${config.host}. Vérifiez le port (993 pour SSL).`;
|
|
||||||
} else if (err.message?.includes("timeout") || err.message?.includes("Timeout")) {
|
|
||||||
message = `Timeout de connexion à ${config.host}:${config.port}. Vérifiez l'adresse du serveur IMAP.`;
|
|
||||||
}
|
|
||||||
|
|
||||||
done({ success: false, message });
|
|
||||||
});
|
|
||||||
|
|
||||||
// Timeout de sécurité
|
|
||||||
setTimeout(() => {
|
|
||||||
done({ success: false, message: `Timeout : impossible de se connecter à ${config.host}:${config.port} dans les 15 secondes.` });
|
|
||||||
}, 15000);
|
|
||||||
|
|
||||||
imap.connect();
|
|
||||||
});
|
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
return { success: false, message: `Erreur : ${error.message || error}` };
|
console.error(`[EmailImport] Test connection failed:`, error);
|
||||||
|
const rawMessage = error?.response || error?.message || String(error);
|
||||||
|
let message = `Erreur de connexion IMAP : ${rawMessage}`;
|
||||||
|
|
||||||
|
if (/AUTHENTICATE|authentication|invalid credentials/i.test(rawMessage)) {
|
||||||
|
message = config.authMode === "oauth2"
|
||||||
|
? "Authentification OAuth2 refusée. Vérifiez IMAP.AccessAsApp, le consentement administrateur, le service principal Exchange et l’autorisation de la boîte."
|
||||||
|
: "Identifiants invalides. Pour Microsoft 365, utilisez OAuth2 au lieu de l’authentification basique.";
|
||||||
|
} else if (/ECONNREFUSED|ENOTFOUND/i.test(rawMessage)) {
|
||||||
|
message = `Impossible de joindre ${config.host}:${config.port}. Vérifiez l’adresse et le port IMAP.`;
|
||||||
|
} else if (/certificate|TLS|SSL/i.test(rawMessage)) {
|
||||||
|
message = `Erreur TLS lors de la connexion à ${config.host}. Vérifiez le certificat et le port 993.`;
|
||||||
|
} else if (/timeout/i.test(rawMessage)) {
|
||||||
|
message = `Timeout lors de la connexion à ${config.host}:${config.port}.`;
|
||||||
|
}
|
||||||
|
|
||||||
|
return { success: false, message };
|
||||||
|
} finally {
|
||||||
|
if (client?.usable) await client.logout().catch(() => client?.close());
|
||||||
|
else client?.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -615,13 +575,13 @@ export async function startEmailImportService(userId: number): Promise<boolean>
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Run immediately on start
|
// Run immediately on start
|
||||||
checkEmailsForPDFs(config).catch((error) => {
|
runEmailCheckExclusive(config).catch((error) => {
|
||||||
console.error(`[EmailImport] Error checking emails for user ${userId}:`, error);
|
console.error(`[EmailImport] Error checking emails for user ${userId}:`, error);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Set up interval for periodic checks
|
// Set up interval for periodic checks
|
||||||
const interval = setInterval(() => {
|
const interval = setInterval(() => {
|
||||||
checkEmailsForPDFs(config).catch((error) => {
|
runEmailCheckExclusive(config).catch((error) => {
|
||||||
console.error(`[EmailImport] Error checking emails for user ${userId}:`, error);
|
console.error(`[EmailImport] Error checking emails for user ${userId}:`, error);
|
||||||
});
|
});
|
||||||
}, frequencyMs);
|
}, frequencyMs);
|
||||||
@@ -687,7 +647,7 @@ export async function triggerEmailCheck(userId: number): Promise<{ success: bool
|
|||||||
};
|
};
|
||||||
|
|
||||||
console.log(`[EmailImport] Manual check triggered for user ${userId}`);
|
console.log(`[EmailImport] Manual check triggered for user ${userId}`);
|
||||||
await checkEmailsForPDFs(config);
|
await runEmailCheckExclusive(config);
|
||||||
|
|
||||||
return { success: true, message: "Vérification terminée avec succès" };
|
return { success: true, message: "Vérification terminée avec succès" };
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
|
|||||||
19
server/fileFingerprint.test.ts
Normal file
19
server/fileFingerprint.test.ts
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
import { calculateFileSha256 } from "./fileFingerprint";
|
||||||
|
|
||||||
|
describe("calculateFileSha256", () => {
|
||||||
|
it("retourne la même empreinte pour un contenu identique", () => {
|
||||||
|
const content = Buffer.from("facture-pdf");
|
||||||
|
expect(calculateFileSha256(content)).toBe(calculateFileSha256(Buffer.from(content)));
|
||||||
|
});
|
||||||
|
|
||||||
|
it("distingue deux contenus différents", () => {
|
||||||
|
expect(calculateFileSha256(Buffer.from("facture-a"))).not.toBe(
|
||||||
|
calculateFileSha256(Buffer.from("facture-b")),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("produit une empreinte SHA-256 hexadécimale", () => {
|
||||||
|
expect(calculateFileSha256(Buffer.from("facture"))).toMatch(/^[a-f0-9]{64}$/);
|
||||||
|
});
|
||||||
|
});
|
||||||
12
server/fileFingerprint.ts
Normal file
12
server/fileFingerprint.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
import { createHash } from "node:crypto";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calcule une empreinte déterministe sur les octets du document original.
|
||||||
|
*
|
||||||
|
* L'empreinte est calculée avant tout stockage ou traitement IA : deux imports
|
||||||
|
* du même PDF sont donc reconnus même si le nom du fichier ou l'utilisateur
|
||||||
|
* diffèrent.
|
||||||
|
*/
|
||||||
|
export function calculateFileSha256(buffer: Buffer): string {
|
||||||
|
return createHash("sha256").update(buffer).digest("hex");
|
||||||
|
}
|
||||||
@@ -4,6 +4,7 @@ import path from "path";
|
|||||||
import {
|
import {
|
||||||
getImportSettingsByUser,
|
getImportSettingsByUser,
|
||||||
createSourceFile,
|
createSourceFile,
|
||||||
|
getSourceFileByContentHash,
|
||||||
updateSourceFile,
|
updateSourceFile,
|
||||||
getUserSettings,
|
getUserSettings,
|
||||||
findDuplicateInvoice,
|
findDuplicateInvoice,
|
||||||
@@ -11,7 +12,8 @@ import {
|
|||||||
createImportLog,
|
createImportLog,
|
||||||
} from "./db";
|
} from "./db";
|
||||||
import { extractInvoicesWithMistral, generateMetadataJSON } from "./invoiceExtractor";
|
import { extractInvoicesWithMistral, generateMetadataJSON } from "./invoiceExtractor";
|
||||||
import { localStoragePut, generateStorageKey } from "./localStorage";
|
import { localStorageDelete, localStoragePut, generateStorageKey } from "./localStorage";
|
||||||
|
import { calculateFileSha256 } from "./fileFingerprint";
|
||||||
import { sendImportNotification } from "./notificationService";
|
import { sendImportNotification } from "./notificationService";
|
||||||
|
|
||||||
interface FolderImportConfig {
|
interface FolderImportConfig {
|
||||||
@@ -41,6 +43,13 @@ async function processFolderFile(
|
|||||||
// Read the file
|
// Read the file
|
||||||
const fileBuffer = await fs.readFile(filePath);
|
const fileBuffer = await fs.readFile(filePath);
|
||||||
console.log(`[FolderImport] File size: ${fileBuffer.length} bytes`);
|
console.log(`[FolderImport] File size: ${fileBuffer.length} bytes`);
|
||||||
|
|
||||||
|
const contentHash = calculateFileSha256(fileBuffer);
|
||||||
|
const existingSource = await getSourceFileByContentHash(contentHash);
|
||||||
|
if (existingSource) {
|
||||||
|
console.log(`[FolderImport] PDF déjà importé, fichier ignoré: ${fileName}`);
|
||||||
|
return { success: true, imported: 0, duplicates: 1, errors: 0 };
|
||||||
|
}
|
||||||
|
|
||||||
// Store source file
|
// Store source file
|
||||||
const sourceFileKey = generateStorageKey(userId, fileName);
|
const sourceFileKey = generateStorageKey(userId, fileName);
|
||||||
@@ -57,13 +66,23 @@ async function processFolderFile(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Create source file record
|
// Create source file record
|
||||||
const sourceFile = await createSourceFile({
|
let sourceFile;
|
||||||
userId,
|
try {
|
||||||
fileName,
|
sourceFile = await createSourceFile({
|
||||||
fileKey: sourceFileKey,
|
userId,
|
||||||
fileUrl: sourceFileUrl,
|
fileName,
|
||||||
processingStatus: "processing",
|
fileKey: sourceFileKey,
|
||||||
});
|
fileUrl: sourceFileUrl,
|
||||||
|
contentHash,
|
||||||
|
processingStatus: "processing",
|
||||||
|
});
|
||||||
|
} catch (error: any) {
|
||||||
|
if (error?.code === "ER_DUP_ENTRY" || error?.errno === 1062) {
|
||||||
|
await localStorageDelete(sourceFileKey).catch(() => undefined);
|
||||||
|
return { success: true, imported: 0, duplicates: 1, errors: 0 };
|
||||||
|
}
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
|
||||||
console.log(`[FolderImport] Source file record created with ID: ${sourceFile.id}`);
|
console.log(`[FolderImport] Source file record created with ID: ${sourceFile.id}`);
|
||||||
|
|
||||||
|
|||||||
33
server/invoiceAnalytics.test.ts
Normal file
33
server/invoiceAnalytics.test.ts
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
import { buildAnnualInvoiceSummary, buildSupplierBudgetSummary } from "@shared/invoiceAnalytics";
|
||||||
|
|
||||||
|
const invoices = [
|
||||||
|
{ invoiceDate: "2026-05-15", createdAt: "2026-05-16", status: "completed", isSubscription: 0, supplierName: "SFR", totalAmount: "100" },
|
||||||
|
{ invoiceDate: "2026-05-20", createdAt: "2026-05-21", status: "completed", isSubscription: 1, supplierName: "SFR", totalAmount: "20" },
|
||||||
|
{ invoiceDate: "2025-03-10", createdAt: "2025-03-11", status: "completed", isSubscription: 1, supplierName: "Microsoft", totalAmount: "50" },
|
||||||
|
{ invoiceDate: "2026-05-01", createdAt: "2026-05-01", status: "error", isSubscription: 0, supplierName: "Ignorée", totalAmount: "999" },
|
||||||
|
];
|
||||||
|
|
||||||
|
describe("agrégats de facturation", () => {
|
||||||
|
it("calcule les volumes et montants BAP et abonnements par année", () => {
|
||||||
|
expect(buildAnnualInvoiceSummary(invoices)).toEqual([
|
||||||
|
{ year: 2026, bapCount: 1, bapAmount: 100, subscriptionCount: 1, subscriptionAmount: 20, totalAmount: 120 },
|
||||||
|
{ year: 2025, bapCount: 0, bapAmount: 0, subscriptionCount: 1, subscriptionAmount: 50, totalAmount: 50 },
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("filtre le budget par période et ventile chaque fournisseur par type", () => {
|
||||||
|
expect(buildSupplierBudgetSummary(invoices, "2026", "05")).toEqual([
|
||||||
|
{ supplierName: "SFR", subscriptionCount: 1, subscriptionAmount: 20, nonSubscriptionCount: 1, nonSubscriptionAmount: 100, totalAmount: 120 },
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("classe le budget du fournisseur le plus facturé au moins facturé", () => {
|
||||||
|
const rows = buildSupplierBudgetSummary([
|
||||||
|
...invoices,
|
||||||
|
{ invoiceDate: "2026-05-22", createdAt: "2026-05-22", status: "completed", isSubscription: 0, supplierName: "Orange", totalAmount: "300" },
|
||||||
|
], "2026", "05");
|
||||||
|
|
||||||
|
expect(rows.map((row) => row.supplierName)).toEqual(["Orange", "SFR"]);
|
||||||
|
});
|
||||||
|
});
|
||||||
17
server/invoicePeriod.test.ts
Normal file
17
server/invoicePeriod.test.ts
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
import { getInvoicePeriodDate, matchesInvoicePeriod } from "@shared/invoicePeriod";
|
||||||
|
|
||||||
|
describe("filtres de période des factures", () => {
|
||||||
|
it("privilégie la date de facture et accepte le mois demandé", () => {
|
||||||
|
const invoice = { invoiceDate: "2026-05-11T00:00:00.000Z", createdAt: "2026-06-02T00:00:00.000Z" };
|
||||||
|
expect(getInvoicePeriodDate(invoice)?.getFullYear()).toBe(2026);
|
||||||
|
expect(matchesInvoicePeriod(invoice, "2026", "05")).toBe(true);
|
||||||
|
expect(matchesInvoicePeriod(invoice, "2026", "06")).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("utilise la date de réception lorsque la date de facture est absente", () => {
|
||||||
|
const invoice = { invoiceDate: null, createdAt: "2025-01-31T00:00:00.000Z" };
|
||||||
|
expect(matchesInvoicePeriod(invoice, "2025", "01")).toBe(true);
|
||||||
|
expect(matchesInvoicePeriod(invoice, "2026", "all")).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
import { z } from "zod";
|
import { z } from "zod";
|
||||||
import { COOKIE_NAME } from "@shared/const";
|
import { COOKIE_NAME } from "@shared/const";
|
||||||
|
import { BAP_MIN_QUALITY_SCORE, meetsBapQualityThreshold } from "@shared/bapEligibility";
|
||||||
|
|
||||||
interface Condition {
|
interface Condition {
|
||||||
field: string;
|
field: string;
|
||||||
@@ -11,6 +12,7 @@ interface Actions {
|
|||||||
typeAchat?: string;
|
typeAchat?: string;
|
||||||
serviceConcerne?: string;
|
serviceConcerne?: string;
|
||||||
ventilationComptable?: string;
|
ventilationComptable?: string;
|
||||||
|
isSubscription?: 0 | 1;
|
||||||
}
|
}
|
||||||
import { getSessionCookieOptions } from "./_core/cookies";
|
import { getSessionCookieOptions } from "./_core/cookies";
|
||||||
import { systemRouter } from "./_core/systemRouter";
|
import { systemRouter } from "./_core/systemRouter";
|
||||||
@@ -24,6 +26,7 @@ import {
|
|||||||
searchInvoices,
|
searchInvoices,
|
||||||
getInvoiceStats,
|
getInvoiceStats,
|
||||||
createSourceFile,
|
createSourceFile,
|
||||||
|
getSourceFileByContentHash,
|
||||||
getSourceFileById,
|
getSourceFileById,
|
||||||
updateSourceFile,
|
updateSourceFile,
|
||||||
getUserSettings,
|
getUserSettings,
|
||||||
@@ -87,6 +90,7 @@ import { loginLocal, hashPassword, getAzureAuthUrl, isAzureAdConfigured } from "
|
|||||||
import fsSync from "fs";
|
import fsSync from "fs";
|
||||||
import pathSync from "path";
|
import pathSync from "path";
|
||||||
import { extractInvoicesWithMistral, generateMetadataJSON } from "./invoiceExtractor";
|
import { extractInvoicesWithMistral, generateMetadataJSON } from "./invoiceExtractor";
|
||||||
|
import { calculateFileSha256 } from "./fileFingerprint";
|
||||||
import { localStoragePut, generateStorageKey } from "./localStorage";
|
import { localStoragePut, generateStorageKey } from "./localStorage";
|
||||||
import { testSftpConnection, exportInvoiceToSftp, getUserSftpConfig } from "./sftpExport";
|
import { testSftpConnection, exportInvoiceToSftp, getUserSftpConfig } from "./sftpExport";
|
||||||
import { drawBapCartouche } from "./bapCartouche";
|
import { drawBapCartouche } from "./bapCartouche";
|
||||||
@@ -181,6 +185,17 @@ export const appRouter = router({
|
|||||||
// Decode base64 file data
|
// Decode base64 file data
|
||||||
const fileBuffer = Buffer.from(input.fileData, "base64");
|
const fileBuffer = Buffer.from(input.fileData, "base64");
|
||||||
console.log(`[Upload] Received file: ${input.fileName}, size: ${fileBuffer.length} bytes`);
|
console.log(`[Upload] Received file: ${input.fileName}, size: ${fileBuffer.length} bytes`);
|
||||||
|
|
||||||
|
// Le contrôle sur les octets du PDF intervient avant le stockage et l'appel IA.
|
||||||
|
// Il reste fiable même si le nom du fichier ou le compte utilisateur diffère.
|
||||||
|
const contentHash = calculateFileSha256(fileBuffer);
|
||||||
|
const existingSource = await getSourceFileByContentHash(contentHash);
|
||||||
|
if (existingSource) {
|
||||||
|
throw new TRPCError({
|
||||||
|
code: "CONFLICT",
|
||||||
|
message: `Ce PDF a déjà été importé (${existingSource.fileName}).`,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// Store source file
|
// Store source file
|
||||||
const sourceFileKey = generateStorageKey(userId, input.fileName);
|
const sourceFileKey = generateStorageKey(userId, input.fileName);
|
||||||
@@ -202,6 +217,7 @@ export const appRouter = router({
|
|||||||
fileName: input.fileName,
|
fileName: input.fileName,
|
||||||
fileKey: sourceFileKey,
|
fileKey: sourceFileKey,
|
||||||
fileUrl: sourceFileUrl,
|
fileUrl: sourceFileUrl,
|
||||||
|
contentHash,
|
||||||
processingStatus: "processing",
|
processingStatus: "processing",
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -484,8 +500,8 @@ export const appRouter = router({
|
|||||||
const hasService = !!invoice.serviceConcerne;
|
const hasService = !!invoice.serviceConcerne;
|
||||||
const hasTypeAchat = !!invoice.typeAchat;
|
const hasTypeAchat = !!invoice.typeAchat;
|
||||||
const hasVentilation = !!invoice.ventilationComptable;
|
const hasVentilation = !!invoice.ventilationComptable;
|
||||||
if (score < 100) {
|
if (!meetsBapQualityThreshold(score)) {
|
||||||
throw new TRPCError({ code: "BAD_REQUEST", message: "Le score de qualité doit être à 100% pour valider" });
|
throw new TRPCError({ code: "BAD_REQUEST", message: `Le score de qualité doit être au moins de ${BAP_MIN_QUALITY_SCORE}% pour valider` });
|
||||||
}
|
}
|
||||||
if (!isNotSubscription) {
|
if (!isNotSubscription) {
|
||||||
throw new TRPCError({ code: "BAD_REQUEST", message: "La facture est marquée comme abonnement" });
|
throw new TRPCError({ code: "BAD_REQUEST", message: "La facture est marquée comme abonnement" });
|
||||||
@@ -705,7 +721,7 @@ export const appRouter = router({
|
|||||||
const allInvoices = ctx.user.role === 'admin' ? await getAllInvoices() : await getInvoicesByUser(ctx.user.id);
|
const allInvoices = ctx.user.role === 'admin' ? await getAllInvoices() : await getInvoicesByUser(ctx.user.id);
|
||||||
// Filtrer les factures éligibles (non déjà validées)
|
// Filtrer les factures éligibles (non déjà validées)
|
||||||
const eligible = allInvoices.filter((inv: any) =>
|
const eligible = allInvoices.filter((inv: any) =>
|
||||||
(inv.qualityScore || 0) >= 100 &&
|
meetsBapQualityThreshold(inv.qualityScore) &&
|
||||||
inv.isSubscription === 0 &&
|
inv.isSubscription === 0 &&
|
||||||
!!inv.serviceConcerne &&
|
!!inv.serviceConcerne &&
|
||||||
!!inv.typeAchat &&
|
!!inv.typeAchat &&
|
||||||
@@ -1029,7 +1045,8 @@ export const appRouter = router({
|
|||||||
}),
|
}),
|
||||||
|
|
||||||
getStats: protectedProcedure.query(async ({ ctx }) => {
|
getStats: protectedProcedure.query(async ({ ctx }) => {
|
||||||
return getInvoiceStats(ctx.user.id);
|
// Les administrateurs consultent les mêmes données globales que les listes Factures.
|
||||||
|
return getInvoiceStats(ctx.user.role === "admin" ? undefined : ctx.user.id);
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
@@ -2014,7 +2031,7 @@ export const appRouter = router({
|
|||||||
|
|
||||||
for (const invoice of bapInvoices) {
|
for (const invoice of bapInvoices) {
|
||||||
const updates = await applyAutomationRules(ctx.user.id, invoice);
|
const updates = await applyAutomationRules(ctx.user.id, invoice);
|
||||||
if (updates.typeAchat || updates.serviceConcerne || updates.ventilationComptable || updates.autoFilledFields) {
|
if (updates.typeAchat || updates.serviceConcerne || updates.ventilationComptable || updates.isSubscription !== undefined || updates.autoFilledFields) {
|
||||||
await updateInvoice(invoice.id, updates);
|
await updateInvoice(invoice.id, updates);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2045,7 +2062,7 @@ export const appRouter = router({
|
|||||||
|
|
||||||
for (const invoice of bapInvoices) {
|
for (const invoice of bapInvoices) {
|
||||||
const updates = await applyAutomationRules(ctx.user.id, invoice);
|
const updates = await applyAutomationRules(ctx.user.id, invoice);
|
||||||
if (updates.typeAchat || updates.serviceConcerne || updates.ventilationComptable || updates.autoFilledFields) {
|
if (updates.typeAchat || updates.serviceConcerne || updates.ventilationComptable || updates.isSubscription !== undefined || updates.autoFilledFields) {
|
||||||
await updateInvoice(invoice.id, updates);
|
await updateInvoice(invoice.id, updates);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
51
shared/automationActions.ts
Normal file
51
shared/automationActions.ts
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
/** Les catégories d’actions proposées dans les règles d’automatisme. */
|
||||||
|
export const AUTOMATION_ACTION_FILTERS = [
|
||||||
|
{ value: "all", label: "Toutes les actions" },
|
||||||
|
{ value: "typeAchat", label: "Type d’achat" },
|
||||||
|
{ value: "serviceConcerne", label: "Service concerné" },
|
||||||
|
{ value: "ventilationComptable", label: "Ventilation comptable" },
|
||||||
|
{ value: "subscription", label: "Abonnement (Oui ou Non)" },
|
||||||
|
{ value: "subscriptionYes", label: "Abonnement : Oui" },
|
||||||
|
{ value: "subscriptionNo", label: "Abonnement : Non" },
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export type AutomationActionFilter = (typeof AUTOMATION_ACTION_FILTERS)[number]["value"];
|
||||||
|
|
||||||
|
type RuleActions = Record<string, unknown>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lit défensivement le JSON stocké en base : une règle historique invalide ne
|
||||||
|
* doit jamais empêcher l’affichage ni le filtrage de la liste complète.
|
||||||
|
*/
|
||||||
|
function parseRuleActions(actionsJson: string): RuleActions {
|
||||||
|
try {
|
||||||
|
const parsed: unknown = JSON.parse(actionsJson);
|
||||||
|
return parsed !== null && typeof parsed === "object" && !Array.isArray(parsed)
|
||||||
|
? parsed as RuleActions
|
||||||
|
: {};
|
||||||
|
} catch {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function getSubscriptionValue(actions: RuleActions): 0 | 1 | undefined {
|
||||||
|
const value = actions.isSubscription;
|
||||||
|
if (value === 1 || value === "1" || value === "OUI") return 1;
|
||||||
|
if (value === 0 || value === "0" || value === "NON") return 0;
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Retourne si les actions JSON d’une règle correspondent au filtre choisi. */
|
||||||
|
export function matchesAutomationActionFilter(
|
||||||
|
actionsJson: string,
|
||||||
|
filter: AutomationActionFilter,
|
||||||
|
): boolean {
|
||||||
|
if (filter === "all") return true;
|
||||||
|
|
||||||
|
const actions = parseRuleActions(actionsJson);
|
||||||
|
if (filter === "subscription") return Object.hasOwn(actions, "isSubscription");
|
||||||
|
if (filter === "subscriptionYes") return getSubscriptionValue(actions) === 1;
|
||||||
|
if (filter === "subscriptionNo") return getSubscriptionValue(actions) === 0;
|
||||||
|
|
||||||
|
return typeof actions[filter] === "string" && actions[filter].trim().length > 0;
|
||||||
|
}
|
||||||
10
shared/bapEligibility.ts
Normal file
10
shared/bapEligibility.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
/** Score minimal requis pour générer et valider un BAP. */
|
||||||
|
export const BAP_MIN_QUALITY_SCORE = 90;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Centralise le seuil BAP afin que l’interface et le serveur appliquent la
|
||||||
|
* même règle métier, y compris pour les scores nuls ou absents.
|
||||||
|
*/
|
||||||
|
export function meetsBapQualityThreshold(score: number | null | undefined): boolean {
|
||||||
|
return typeof score === "number" && Number.isFinite(score) && score >= BAP_MIN_QUALITY_SCORE;
|
||||||
|
}
|
||||||
108
shared/invoiceAnalytics.ts
Normal file
108
shared/invoiceAnalytics.ts
Normal file
@@ -0,0 +1,108 @@
|
|||||||
|
import { getInvoicePeriodDate, matchesInvoicePeriod } from "./invoicePeriod";
|
||||||
|
|
||||||
|
export type AnalyticsInvoice = {
|
||||||
|
invoiceDate?: Date | string | number | null;
|
||||||
|
createdAt?: Date | string | number | null;
|
||||||
|
isSubscription?: number | null;
|
||||||
|
status?: string | null;
|
||||||
|
supplierName?: string | null;
|
||||||
|
totalAmount?: number | string | null;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type AnnualInvoiceSummary = {
|
||||||
|
year: number;
|
||||||
|
bapCount: number;
|
||||||
|
bapAmount: number;
|
||||||
|
subscriptionCount: number;
|
||||||
|
subscriptionAmount: number;
|
||||||
|
totalAmount: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type SupplierBudgetSummary = {
|
||||||
|
supplierName: string;
|
||||||
|
subscriptionCount: number;
|
||||||
|
subscriptionAmount: number;
|
||||||
|
nonSubscriptionCount: number;
|
||||||
|
nonSubscriptionAmount: number;
|
||||||
|
totalAmount: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
function getAmount(value: AnalyticsInvoice["totalAmount"]): number {
|
||||||
|
const amount = Number(value);
|
||||||
|
return Number.isFinite(amount) ? amount : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Agrège les factures finalisées par année métier. « BAP » désigne ici les
|
||||||
|
* factures hors abonnement, éligibles au circuit BAP, validées ou non.
|
||||||
|
*/
|
||||||
|
export function buildAnnualInvoiceSummary(invoices: AnalyticsInvoice[]): AnnualInvoiceSummary[] {
|
||||||
|
const summaryByYear = new Map<number, AnnualInvoiceSummary>();
|
||||||
|
|
||||||
|
for (const invoice of invoices) {
|
||||||
|
if (invoice.status !== "completed") continue;
|
||||||
|
const date = getInvoicePeriodDate(invoice);
|
||||||
|
if (!date) continue;
|
||||||
|
|
||||||
|
const year = date.getFullYear();
|
||||||
|
const current = summaryByYear.get(year) ?? {
|
||||||
|
year,
|
||||||
|
bapCount: 0,
|
||||||
|
bapAmount: 0,
|
||||||
|
subscriptionCount: 0,
|
||||||
|
subscriptionAmount: 0,
|
||||||
|
totalAmount: 0,
|
||||||
|
};
|
||||||
|
const amount = getAmount(invoice.totalAmount);
|
||||||
|
|
||||||
|
if (invoice.isSubscription === 1) {
|
||||||
|
current.subscriptionCount += 1;
|
||||||
|
current.subscriptionAmount += amount;
|
||||||
|
} else {
|
||||||
|
current.bapCount += 1;
|
||||||
|
current.bapAmount += amount;
|
||||||
|
}
|
||||||
|
current.totalAmount += amount;
|
||||||
|
summaryByYear.set(year, current);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Array.from(summaryByYear.values()).sort((a, b) => b.year - a.year);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Agrège le budget réellement facturé par fournisseur sur la période choisie. */
|
||||||
|
export function buildSupplierBudgetSummary(
|
||||||
|
invoices: AnalyticsInvoice[],
|
||||||
|
year: string,
|
||||||
|
month: string,
|
||||||
|
): SupplierBudgetSummary[] {
|
||||||
|
const summaryBySupplier = new Map<string, SupplierBudgetSummary>();
|
||||||
|
|
||||||
|
for (const invoice of invoices) {
|
||||||
|
if (invoice.status !== "completed" || !matchesInvoicePeriod(invoice, year, month)) continue;
|
||||||
|
|
||||||
|
const supplierName = invoice.supplierName?.trim() || "Fournisseur inconnu";
|
||||||
|
const current = summaryBySupplier.get(supplierName) ?? {
|
||||||
|
supplierName,
|
||||||
|
subscriptionCount: 0,
|
||||||
|
subscriptionAmount: 0,
|
||||||
|
nonSubscriptionCount: 0,
|
||||||
|
nonSubscriptionAmount: 0,
|
||||||
|
totalAmount: 0,
|
||||||
|
};
|
||||||
|
const amount = getAmount(invoice.totalAmount);
|
||||||
|
|
||||||
|
if (invoice.isSubscription === 1) {
|
||||||
|
current.subscriptionCount += 1;
|
||||||
|
current.subscriptionAmount += amount;
|
||||||
|
} else {
|
||||||
|
current.nonSubscriptionCount += 1;
|
||||||
|
current.nonSubscriptionAmount += amount;
|
||||||
|
}
|
||||||
|
current.totalAmount += amount;
|
||||||
|
summaryBySupplier.set(supplierName, current);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Array.from(summaryBySupplier.values()).sort((a, b) =>
|
||||||
|
b.totalAmount - a.totalAmount || a.supplierName.localeCompare(b.supplierName, "fr"),
|
||||||
|
);
|
||||||
|
}
|
||||||
27
shared/invoicePeriod.ts
Normal file
27
shared/invoicePeriod.ts
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
/**
|
||||||
|
* Date métier utilisée pour les listes de factures : date de facture si elle
|
||||||
|
* est connue, sinon date de réception. Cette règle est partagée avec BAP.
|
||||||
|
*/
|
||||||
|
export function getInvoicePeriodDate(invoice: {
|
||||||
|
invoiceDate?: Date | string | number | null;
|
||||||
|
createdAt?: Date | string | number | null;
|
||||||
|
}): Date | null {
|
||||||
|
const value = invoice.invoiceDate ?? invoice.createdAt;
|
||||||
|
if (!value) return null;
|
||||||
|
|
||||||
|
const date = value instanceof Date ? value : new Date(value);
|
||||||
|
return Number.isNaN(date.getTime()) ? null : date;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Indique si une facture correspond au filtre Année/Mois sélectionné. */
|
||||||
|
export function matchesInvoicePeriod(
|
||||||
|
invoice: Parameters<typeof getInvoicePeriodDate>[0],
|
||||||
|
year: string,
|
||||||
|
month: string,
|
||||||
|
): boolean {
|
||||||
|
if (year === "all") return true;
|
||||||
|
|
||||||
|
const date = getInvoicePeriodDate(invoice);
|
||||||
|
if (!date || date.getFullYear() !== Number(year)) return false;
|
||||||
|
return month === "all" || date.getMonth() + 1 === Number(month);
|
||||||
|
}
|
||||||
126
todo.md
126
todo.md
@@ -703,7 +703,125 @@
|
|||||||
- [x] Ajouter des tests de non-régression ciblés et vérifier build, types et tests
|
- [x] Ajouter des tests de non-régression ciblés et vérifier build, types et tests
|
||||||
- [x] Normaliser les valeurs OAuth de loginMethod avant écriture en base
|
- [x] Normaliser les valeurs OAuth de loginMethod avant écriture en base
|
||||||
|
|
||||||
## Déploiement recette — audit de robustesse
|
## Incident production — erreur HTTP 404
|
||||||
- [ ] Pousser le checkpoint d’audit vers Gitea recette
|
- [x] Reproduire la 404 et contrôler le domaine, Traefik et les conteneurs
|
||||||
- [ ] Reconstruire l’application sur le serveur de recette
|
- [x] Identifier et corriger la cause racine sans modifier les données
|
||||||
- [ ] Vérifier le commit, les conteneurs et la disponibilité HTTP en recette
|
- [x] Vérifier le retour HTTP 200 et la santé des conteneurs
|
||||||
|
|
||||||
|
## Audit production — 674 factures affichées
|
||||||
|
- [x] Compter les factures par utilisateur, source et statut
|
||||||
|
- [x] Identifier les groupes de doublons selon plusieurs clés métier
|
||||||
|
- [x] Vérifier les références de stockage et les effets de la fusion précédente
|
||||||
|
- [x] Préparer une correction réversible sans suppression immédiate
|
||||||
|
- [x] Sauvegarder la base et le volume puis suspendre les imports email
|
||||||
|
- [x] Bloquer les réimports par empreinte PDF et fiabiliser le traitement IMAP
|
||||||
|
- [x] Déployer le correctif anti-réimport et migrer la base de production
|
||||||
|
- [x] Appliquer la correction confirmée et vérifier le comptage final
|
||||||
|
|
||||||
|
## Audit authentification IMAP Microsoft 365
|
||||||
|
- [x] Vérifier la génération du jeton Azure et le format XOAUTH2 envoyé à IMAP
|
||||||
|
- [x] Comparer les scopes, permissions et méthode d’authentification aux exigences Microsoft 365
|
||||||
|
- [x] Tester la configuration active de production sans exposer les secrets
|
||||||
|
- [x] Documenter la cause du refus IMAP et le correctif requis
|
||||||
|
|
||||||
|
## Migration import email vers ImapFlow
|
||||||
|
- [x] Remplacer la dépendance `imap` par `imapflow`
|
||||||
|
- [x] Réécrire la connexion OAuth2, la recherche UNSEEN et la lecture des messages
|
||||||
|
- [x] Conserver le traitement séquentiel, le verrou anti-concurrence et le marquage Seen après succès
|
||||||
|
- [x] Adapter le test de connexion IMAP et les messages d’erreur
|
||||||
|
- [x] Ajouter des tests de non-régression du flux ImapFlow
|
||||||
|
- [x] Vérifier TypeScript, tests, build et authentification OAuth2 réelle
|
||||||
|
|
||||||
|
## Déploiement ImapFlow — recette et production
|
||||||
|
- [x] Pousser la version ImapFlow vers le dépôt Gitea de recette
|
||||||
|
- [x] Réduire l’image runtime Docker pour fiabiliser le build sur le serveur de recette
|
||||||
|
- [x] Charger Vite uniquement en développement pour l’exclure de l’image runtime
|
||||||
|
- [x] Déployer et valider HTTP et conteneurs ImapFlow en recette (aucune source OAuth2 active à tester)
|
||||||
|
- [x] Corriger les règles Docker orphelines qui bloquaient MySQL en recette
|
||||||
|
- [x] Pousser la version validée vers le dépôt Gitea de production
|
||||||
|
- [x] Déployer et valider HTTP, conteneurs et OAuth2 ImapFlow en production
|
||||||
|
|
||||||
|
## Navigation depuis l’édition des factures BAP
|
||||||
|
- [x] Reproduire et identifier la perte du contexte de navigation depuis Factures BAP
|
||||||
|
- [x] Restaurer la page d’origine après fermeture de l’édition
|
||||||
|
- [x] Conserver les filtres et tris sélectionnés sur Factures BAP
|
||||||
|
- [x] Ajouter des tests de non-régression du retour contextuel
|
||||||
|
- [x] Vérifier TypeScript, tests, build et parcours en sandbox
|
||||||
|
- [x] Pousser le correctif vers Gitea recette et redéployer
|
||||||
|
- [x] Vérifier le parcours et la santé de la recette
|
||||||
|
|
||||||
|
## Automatisation de l’indicateur Abonnement
|
||||||
|
- [x] Analyser le modèle, le formulaire et l’exécution actuelle des automatismes
|
||||||
|
- [x] Ajouter l’option Abonnement : Oui, Non ou Ne pas modifier aux règles
|
||||||
|
- [x] Appliquer l’option Abonnement lors du traitement automatique des factures
|
||||||
|
- [x] Ajouter des tests de non-régression des règles d’abonnement
|
||||||
|
- [x] Valider les deux correctifs en sandbox
|
||||||
|
|
||||||
|
## Déploiement recette — navigation BAP et abonnement
|
||||||
|
- [x] Pousser les deux correctifs vers Gitea recette
|
||||||
|
- [x] Déployer, vérifier HTTP et valider le parcours de retour en recette
|
||||||
|
|
||||||
|
## Correctif recette — dialogue d’automatisme
|
||||||
|
- [x] Vérifier le commit et localiser l’emplacement absent de l’option Abonnement
|
||||||
|
- [x] Corriger le dialogue d’édition et le valider en recette
|
||||||
|
- [x] Arrêter le processus non applicatif autorisé qui bloque le build Docker
|
||||||
|
|
||||||
|
## Déploiement production — dialogue Abonnement
|
||||||
|
- [x] Pousser le correctif vers Gitea production
|
||||||
|
- [x] Construire et redémarrer uniquement le conteneur applicatif
|
||||||
|
- [x] Vérifier le commit, la santé, HTTP et le bundle de production
|
||||||
|
|
||||||
|
## Filtre par action des automatismes
|
||||||
|
- [x] Identifier les types d’action disponibles et leurs règles de détection
|
||||||
|
- [x] Ajouter un filtre d’action dans la liste des automatismes
|
||||||
|
- [x] Permettre d’isoler les règles Abonnement, Oui ou Non
|
||||||
|
- [x] Ajouter les tests et valider TypeScript, tests et build
|
||||||
|
|
||||||
|
## Déploiement — filtre par action des automatismes
|
||||||
|
- [x] Pousser le filtre par action vers Gitea recette
|
||||||
|
- [x] Déployer et vérifier le filtre par action en recette
|
||||||
|
- [x] Pousser la version validée vers Gitea production
|
||||||
|
- [x] Déployer et vérifier le filtre par action en production
|
||||||
|
|
||||||
|
## Seuil d’éligibilité BAP à 90 %
|
||||||
|
- [x] Identifier les validations BAP fondées sur le score de qualité
|
||||||
|
- [x] Abaisser le seuil de 100 % à 90 % pour les opérations BAP
|
||||||
|
- [x] Ajouter les tests de seuil et valider TypeScript, tests et build
|
||||||
|
|
||||||
|
## Déploiement — seuil BAP à 90 %
|
||||||
|
- [x] Pousser le correctif vers Gitea recette
|
||||||
|
- [x] Déployer et vérifier le seuil BAP à 90 % en recette
|
||||||
|
- [x] Pousser la version validée vers Gitea production
|
||||||
|
- [x] Déployer et vérifier le seuil BAP à 90 % en production
|
||||||
|
|
||||||
|
## Rétablissement du serveur de recette
|
||||||
|
- [x] Redémarrer le serveur de recette autorisé par l’utilisateur
|
||||||
|
- [x] Rétablir le conteneur applicatif et terminer le déploiement BAP à 90 %
|
||||||
|
|
||||||
|
## Factures abonnements et filtres de période
|
||||||
|
- [x] Analyser les listes Factures, Factures BAP et le menu Facturation
|
||||||
|
- [x] Ajouter les filtres Année et Mois à la page Factures
|
||||||
|
- [x] Créer la page Factures abonnements affichant uniquement les abonnements
|
||||||
|
- [x] Reprendre les recherches, filtres et actions de la page Factures
|
||||||
|
- [x] Ajouter l’entrée Factures abonnements après Factures BAP dans le menu
|
||||||
|
- [x] Ajouter les tests et valider TypeScript, build et affichage en sandbox
|
||||||
|
- [x] Déployer et vérifier le correctif en recette
|
||||||
|
- [x] Déployer et vérifier le correctif en production
|
||||||
|
|
||||||
|
## Synthèse annuelle du tableau de bord
|
||||||
|
- [x] Analyser les données et le tableau de bord existant
|
||||||
|
- [x] Calculer par année les volumes et montants BAP et abonnements
|
||||||
|
- [x] Afficher le nombre de factures et les montants par type, puis le total
|
||||||
|
- [x] Ajouter les tests et valider TypeScript, build et affichage en sandbox
|
||||||
|
|
||||||
|
## Budget réel par fournisseur
|
||||||
|
- [x] Définir l’agrégation des montants par fournisseur et statut Abonnement
|
||||||
|
- [x] Ajouter les filtres Année et Mois à l’écran Budget réel
|
||||||
|
- [x] Créer l’écran Budget réel à la fin du menu Facturation
|
||||||
|
- [x] Afficher par fournisseur les montants Abonnement, Hors abonnement et le total
|
||||||
|
- [x] Ajouter les tests et valider TypeScript, build et affichage en sandbox
|
||||||
|
|
||||||
|
## Améliorations Budget réel et tableau de bord
|
||||||
|
- [x] Confirmer le tri décroissant par montant total dans le budget
|
||||||
|
- [x] Ajouter un graphique annuel BAP versus abonnements au tableau de bord
|
||||||
|
- [x] Ajouter les tests et valider TypeScript, build et rendu sandbox
|
||||||
|
|||||||
Reference in New Issue
Block a user