This commit is contained in:
Andreas Wilms
2025-09-08 18:30:35 +02:00
commit f12cc8b2ce
130 changed files with 16911 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
"use server";
import { main, OrderData } from "./orderUpdateBillbee";
export async function uploadFile(formData: FormData) {
const file = formData.get("file") as File;
// Check if the file is a CSV
if (!file || (file.type !== "text/csv" && !file.name.endsWith(".csv"))) {
return { message: "Ausgewählte Datei ist keine CSV", status: false };
}
const arrayBuffer = await file.arrayBuffer();
const buffer = new Uint8Array(arrayBuffer);
// Decode the buffer to a string
const decoder: TextDecoder = new TextDecoder("utf-8");
const csvContent: string = decoder.decode(buffer);
// Determine the delimiter (comma or semicolon)
const delimiter = csvContent.includes(";") ? ";" : ",";
// Parse the CSV content using the detected delimiter
const rows: string[][] = csvContent
.split("\n")
.map((row) => row.split(delimiter));
const requiredHeaders = ["Bestellnummer", "Sendungsnummer"];
const headers: string[] = rows[0].map((header) =>
header.trim().replace(/\r/g, "")
);
// Check if CSV containes required Headers
const allHeadersPresent: boolean = requiredHeaders.every((header) =>
headers.includes(header)
);
if (!allHeadersPresent) {
return {
message:
'CSV enthält nicht die notwendigen Header "Bestellnummer" und "Sendungsnummer"',
status: false,
};
}
// Get the indices of the required headers
const indices: number[] = requiredHeaders.map((header) =>
headers.indexOf(header)
);
// Create an array of objects with only the required headers
const filteredData: OrderData[] = rows.slice(1).map((row) => {
const orderData: OrderData = {
Bestellnummer: row[indices[0]] ? row[indices[0]].trim() : null,
Sendungsnummer: row[indices[1]] ? row[indices[1]].trim() : null,
};
return orderData;
});
return { data: await main(filteredData), status: true };
}

View File

@@ -0,0 +1,120 @@
"use server";
const API_KEY = process.env.BILLBEE_API_KEY as string;
const USERNAME = process.env.BILLBEE_USERNAME as string;
const API_PASSWORD = process.env.BILLBEE_PASSWORD as string;
const BASE_URL = "https://api.billbee.io/api/v1";
export interface OrderData {
Bestellnummer: string | null;
Sendungsnummer: string | null;
}
export interface RespError {
orderId: string | null;
error: string;
}
async function addShipment(orderId: string, shippingId: string) {
const url = `${BASE_URL}/orders/${orderId}/shipment`;
const headers: HeadersInit = {
"X-Billbee-Api-Key": API_KEY,
accept: "application/json",
"Content-Type": "application/json",
Authorization: "Basic " + btoa(`${USERNAME}:${API_PASSWORD}`),
};
const payload = {
ShippingId: shippingId,
ShippingProviderId: 6082,
ShipmentType: 0,
};
const response = await fetch(url, {
method: "POST",
headers: headers,
body: JSON.stringify(payload),
credentials: "include", // Include credentials for basic auth
});
if (!response.ok) {
throw new Error(`Error ${response.status}: ${await response.text()}`);
}
// Update order status
const updateUrl = `${BASE_URL}/orders/${orderId}/orderstate`;
const updatePayload = {
NewStateId: 4,
};
const updateResponse = await fetch(updateUrl, {
method: "PUT",
headers: headers,
body: JSON.stringify(updatePayload),
credentials: "include",
});
if (!updateResponse.ok) {
throw new Error(
`Error updating order status ${
updateResponse.status
}: ${await updateResponse.text()}`
);
}
}
async function getByExternalId(externalId: string) {
const url = `${BASE_URL}/orders/findbyextref/${externalId}`;
const headers: HeadersInit = {
"X-Billbee-Api-Key": API_KEY,
accept: "application/json",
Authorization: "Basic " + btoa(`${USERNAME}:${API_PASSWORD}`),
};
const response = await fetch(url, {
method: "GET",
headers: headers,
credentials: "include",
});
if (!response.ok) {
throw new Error(`Error ${response.status}: ${await response.text()}`);
}
return await response.json();
}
async function updateCompleteShipment(orderId: string, shippingId: string) {
const res = await getByExternalId(orderId);
const content = res.Data;
const billbeeId = content.BillBeeOrderId;
await addShipment(billbeeId, shippingId);
}
export async function main(data: OrderData[]) {
const errors: RespError[] = [];
for (const { Bestellnummer, Sendungsnummer } of data) {
if (!Bestellnummer || !Sendungsnummer) {
errors.push({
orderId: Bestellnummer,
error: "Order ID or Shipping ID is None",
});
continue;
}
try {
await updateCompleteShipment(Bestellnummer, Sendungsnummer);
} catch (e) {
const errorMessage = e instanceof Error ? e.message : "Unknown error";
console.error(`Error processing order ${Bestellnummer}: ${errorMessage}`);
errors.push({ orderId: Bestellnummer, error: errorMessage });
}
}
const result = {
successful: data.length - errors.length,
errors: errors,
};
return result;
}

View File

@@ -0,0 +1,145 @@
"use client";
import { useRef, useState } from "react";
import { uploadFile } from "./action";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import {
Card,
CardHeader,
CardTitle,
CardContent,
CardFooter,
} from "@/components/ui/card";
import { RespError } from "./orderUpdateBillbee";
import { toast, Bounce } from "react-toastify";
export default function UploadForm() {
const fileInput = useRef<HTMLInputElement | null>(null);
const [uploadResult, setUploadResult] = useState<{
successful: number;
errors: RespError[];
} | null>(null);
const [isProcessing, setIsProcessing] = useState<true | false>(false);
const handleSubmit = async (event: React.FormEvent<HTMLFormElement>) => {
event.preventDefault(); // Prevent the default form submission
if (fileInput.current?.files) {
const file = fileInput.current.files[0];
const data = new FormData();
data.append("file", file);
setIsProcessing(true);
const res = await uploadFile(data);
if (res.status && res.data) {
setUploadResult(res.data);
toast.success(res.message, {
position: "bottom-right",
autoClose: 5000,
hideProgressBar: false,
closeOnClick: false,
pauseOnHover: true,
draggable: true,
progress: undefined,
theme: "light",
transition: Bounce,
});
} else {
toast.error(res.message, {
position: "bottom-right",
autoClose: 5000,
hideProgressBar: false,
closeOnClick: false,
pauseOnHover: true,
draggable: true,
progress: undefined,
theme: "light",
transition: Bounce,
});
}
setIsProcessing(false);
}
};
return (
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-50">
<Card className="w-full max-w-sm mb-4">
{" "}
{/* Added margin-bottom for spacing */}
<CardHeader>
<CardTitle>Lade eine Datei hoch</CardTitle>
</CardHeader>
{!isProcessing ? (
<form onSubmit={handleSubmit} className="flex flex-col gap-4">
<CardContent className="flex flex-col gap-4">
<div className="flex flex-col gap-2">
<Label htmlFor="file">Choose a file</Label>
<Input id="file" type="file" name="file" ref={fileInput} />
</div>
</CardContent>
<CardFooter className="flex justify-end">
<Button type="submit">Submit</Button>
</CardFooter>
</form>
) : (
<div className="flex items-center justify-center w-full h-32">
<div role="status">
<svg
aria-hidden="true"
className="w-20 h-20 text-gray-200 animate-spin dark:text-gray-600 fill-black"
viewBox="0 0 100 101"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z"
fill="currentColor"
/>
<path
d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z"
fill="currentFill"
/>
</svg>
<span className="sr-only">Loading...</span>
</div>
</div>
)}
</Card>
{uploadResult && (
<div className="w-full max-w-sm">
<Card className="overflow-hidden">
<CardHeader>
<CardTitle>Upload Result</CardTitle>
</CardHeader>
<CardContent className="h-64 overflow-y-auto p-4">
<p className="font-semibold">
Anzahl erfolgreicher Updates: {uploadResult.successful}
</p>
{uploadResult.errors.length > 0 && (
<div className="mt-2">
<h4 className="font-semibold">Errors:</h4>
<ul className="list-disc list-inside">
{uploadResult.errors.map((error, index) => (
<li key={index}>
<span className="font-medium">Order ID:</span>{" "}
{error.orderId || "N/A"},
<span className="font-medium"> Error:</span>{" "}
{error.error}
</li>
))}
</ul>
</div>
)}
</CardContent>
</Card>
</div>
)}
</div>
);
}