1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
"use client";
import Image from "next/image";
import PackageCamera from "./lib/camera/component/pakageCamera";
import BarcodeScanner from "./lib/camera/component/scannerBarcode";
import SjCamera from "./lib/camera/component/sjCamera";
import useCameraStore from "./lib/camera/hooks/useCameraStore";
import Header from "./lib/camera/component/hedear";
import { Button } from "@mui/material";
import { SaveAsOutlined } from "@mui/icons-material";
import axios from "axios";
import odooApi from "./lib/api/odooApi";
import { useEffect, useState } from "react";
import { useRouter } from "next/navigation";
import { getAuth } from "./lib/api/auth";
export default function Home() {
const [isLogin, setIsLogin] = useState<boolean>(true);
const {
barcode,
imageSj,
imagePackage,
setBarcode,
setImageSj,
setImagePackage,
} = useCameraStore();
const [isLoading, setIsLoading] = useState<boolean>(false);
const router = useRouter();
useEffect(() => {
const token = getAuth();
if (!token) {
router.push("/login");
} else {
setIsLogin(true);
}
}, [router]);
const handleSubmit = async (event: React.FormEvent<HTMLFormElement>) => {
event.preventDefault();
setIsLoading(true);
if (!barcode || !imageSj || !imagePackage) {
alert("Barcode dan gambar harus tersedia.");
setIsLoading(false);
return;
}
try {
const newSjImage = imageSj.replace(/^.*?,/, "");
const newPackageImage = imagePackage.replace(/^.*?,/, "");
const data = {
sj_document: newSjImage, // Kirim base64 lengkap dengan prefix
paket_document: newPackageImage, // Kirim base64 lengkap dengan prefix
};
const response = await odooApi(
"PUT",
`/api/v1/stock-picking/${barcode}/documentation`,
data
);
if (response.status.code == 200) {
alert("Berhasil Submit Data");
setBarcode("");
setImageSj("");
setImagePackage("");
setIsLoading(false);
}else if(response.status.code == 404){
alert("Gagal Submit Data, Picking Code Tidak Ditemukan " );
setIsLoading(false);
}else{
alert("Gagal Submit Data, Silahkan Coba Lagi" );
setIsLoading(false);
}
return response.data;
} catch (error: unknown) {
if (error instanceof Error) {
console.error("Error mengirim data:", error.message);
} else if (axios.isAxiosError(error)) {
console.error("Error:", error.response?.data);
} else {
console.error("Unknown error:", error);
}
setIsLoading(false);
}
};
return (
<div className="bg-white h-screen overflow-auto">
<Header />
{isLogin && (
<div className="py-4 px-4 sm:px-96 pt-20">
<form onSubmit={handleSubmit}>
<div>
<BarcodeScanner />
</div>
<div className="h-4"></div>
<div className="flex justify-between">
<SjCamera />
<PackageCamera />
</div>
<div className="h-2"></div>
{imageSj && (
<>
<label className="block mt-2 text-sm font-medium text-gray-700 text-center">
Gambar Foto Surat Jalan
</label>
<div className="relative w-full h-[300px] border-2 border-gray-200 p-2 rounded-sm">
<Image
src={imageSj}
alt="Captured"
layout="fill"
objectFit="cover"
unoptimized
className="p-2"
/>
</div>
</>
)}
<div className="h-2"></div>
{imagePackage && (
<>
<label className="block mt-2 text-sm font-medium text-gray-700 text-center">
Gambar Foto Penerima
</label>
<div className="relative w-full h-[300px] border-2 border-gray-200 p-2 rounded-sm">
<Image
src={imagePackage}
alt="Captured"
layout="fill"
objectFit="cover"
unoptimized
className="p-2"
/>
</div>
</>
)}
<div>
<div className="h-4"></div>
<Button
className="w-[50%] sm:w-[25%]"
variant="contained"
color="error"
startIcon={<SaveAsOutlined />}
type="submit"
disabled={isLoading}
>
Simpan
</Button>
</div>
</form>
</div>
)}
{!isLogin && (
<div className="py-4 px-4 sm:px-96 pt-20">
<div className="text-center">
<p className="text-2xl font-bold">Loading...</p>
</div>
</div>
)}
</div>
);
}
|