דלג לתוכן
עמוד הבית
השכרות
רכבים
לקוחות
עסקים
מסמכים
מוסכים
מכירות
התראות
תחזוקה
הצעת מחיר
עמוד הבית
השכרות
רכבים
לקוחות
עסקים
מסמכים
מוסכים
מכירות
התראות
תחזוקה
הצעת מחיר
Search ...
Results
עמוד הבית
השכרות
רכבים
לקוחות
עסקים
מסמכים
מוסכים
מכירות
התראות
תחזוקה
הצעת מחיר
עמוד הבית
השכרות
רכבים
לקוחות
עסקים
מסמכים
מוסכים
מכירות
התראות
תחזוקה
הצעת מחיר
רבקה צולק
רבקה צולק
פרופיל
הזמנות
מסמכים
תשלומים
פרטים אישיים
פרטי רישיון
פרטי אשראי
You are not permitted to submit this form!
You are not permitted to submit this form!
4 ספרות אחרונות:
6343
שם לקוח
מס. רכב
מס. השכרה
תחנה
סוכן
תאריך התחלה
תאריך סיום
חיוב בסה"כ
סטטוס
שעון עצר
רבקה
86002702
35156
2025-11-04
2025-11-04
5.9
מבוטל
הסתיים
מבוטל
מושהה
מתוזמן
פעילה
function startStopwatch35156(targetDate, targetTime) { if(targetDate==''||targetTime==''){ document.getElementById('stopwatch-35156').innerText='---'; return; } const [year, month, day] = targetDate.split('-').map(Number); const [hour, minute] = targetTime.split(':').map(Number); const target = new Date(year, month - 1, day, hour, minute); let days, hours, minutes; function updateStopwatch35156() { const now = new Date(); const timeLeft = target - now; if (timeLeft <= 0) { document.getElementById('stopwatch-35156').innerText = 'Time is up!'; // clearInterval(interval); return; } days = Math.floor(timeLeft / (1000 * 60 * 60 * 24)); hours = Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); minutes = Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60)); // document.getElementById('stopwatch-35156').innerText = ` days : hours : minutes`; document.getElementById('stopwatch-35156').innerText = days + ' days : ' + hours + ' hours : ' + minutes + ' minutes'; } updateStopwatch35156(); const interval = setInterval(updateStopwatch35156, 60000); // Update every minute } // Example usage: var targetDate = '2025-11-04'; var targetTime = '15:15'; startStopwatch35156(targetDate, targetTime);
פעולות נוספות
הערות
הצג פרטים
הצג PDF
הפק חשבונית
החזרת רכב
רבקה
73592802
35154
2025-11-06
2025-11-06
5.9
מושהה
הסתיים
מבוטל
מושהה
מתוזמן
פעילה
function startStopwatch35154(targetDate, targetTime) { if(targetDate==''||targetTime==''){ document.getElementById('stopwatch-35154').innerText='---'; return; } const [year, month, day] = targetDate.split('-').map(Number); const [hour, minute] = targetTime.split(':').map(Number); const target = new Date(year, month - 1, day, hour, minute); let days, hours, minutes; function updateStopwatch35154() { const now = new Date(); const timeLeft = target - now; if (timeLeft <= 0) { document.getElementById('stopwatch-35154').innerText = 'Time is up!'; // clearInterval(interval); return; } days = Math.floor(timeLeft / (1000 * 60 * 60 * 24)); hours = Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); minutes = Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60)); // document.getElementById('stopwatch-35154').innerText = ` days : hours : minutes`; document.getElementById('stopwatch-35154').innerText = days + ' days : ' + hours + ' hours : ' + minutes + ' minutes'; } updateStopwatch35154(); const interval = setInterval(updateStopwatch35154, 60000); // Update every minute } // Example usage: var targetDate = '2025-11-06'; var targetTime = '12:00'; startStopwatch35154(targetDate, targetTime);
פעולות נוספות
הערות
הצג פרטים
הצג PDF
הפק חשבונית
החזרת רכב
רבקה
73592802
35152
2025-11-04
2025-11-04
מושהה
הסתיים
מבוטל
מושהה
מתוזמן
פעילה
function startStopwatch35152(targetDate, targetTime) { if(targetDate==''||targetTime==''){ document.getElementById('stopwatch-35152').innerText='---'; return; } const [year, month, day] = targetDate.split('-').map(Number); const [hour, minute] = targetTime.split(':').map(Number); const target = new Date(year, month - 1, day, hour, minute); let days, hours, minutes; function updateStopwatch35152() { const now = new Date(); const timeLeft = target - now; if (timeLeft <= 0) { document.getElementById('stopwatch-35152').innerText = 'Time is up!'; // clearInterval(interval); return; } days = Math.floor(timeLeft / (1000 * 60 * 60 * 24)); hours = Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); minutes = Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60)); // document.getElementById('stopwatch-35152').innerText = ` days : hours : minutes`; document.getElementById('stopwatch-35152').innerText = days + ' days : ' + hours + ' hours : ' + minutes + ' minutes'; } updateStopwatch35152(); const interval = setInterval(updateStopwatch35152, 60000); // Update every minute } // Example usage: var targetDate = '2025-11-04'; var targetTime = '09:00'; startStopwatch35152(targetDate, targetTime);
פעולות נוספות
הערות
הצג פרטים
הצג PDF
הפק חשבונית
החזרת רכב
רבקה
86002702
35146
2025-11-04
2025-11-04
מושהה
הסתיים
מבוטל
מושהה
מתוזמן
פעילה
function startStopwatch35146(targetDate, targetTime) { if(targetDate==''||targetTime==''){ document.getElementById('stopwatch-35146').innerText='---'; return; } const [year, month, day] = targetDate.split('-').map(Number); const [hour, minute] = targetTime.split(':').map(Number); const target = new Date(year, month - 1, day, hour, minute); let days, hours, minutes; function updateStopwatch35146() { const now = new Date(); const timeLeft = target - now; if (timeLeft <= 0) { document.getElementById('stopwatch-35146').innerText = 'Time is up!'; // clearInterval(interval); return; } days = Math.floor(timeLeft / (1000 * 60 * 60 * 24)); hours = Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); minutes = Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60)); // document.getElementById('stopwatch-35146').innerText = ` days : hours : minutes`; document.getElementById('stopwatch-35146').innerText = days + ' days : ' + hours + ' hours : ' + minutes + ' minutes'; } updateStopwatch35146(); const interval = setInterval(updateStopwatch35146, 60000); // Update every minute } // Example usage: var targetDate = '2025-11-04'; var targetTime = '08:45'; startStopwatch35146(targetDate, targetTime);
פעולות נוספות
הערות
הצג פרטים
הצג PDF
הפק חשבונית
החזרת רכב
רבקה
73592802
35078
2025-11-03
2025-11-03
מושהה
הסתיים
מבוטל
מושהה
מתוזמן
פעילה
function startStopwatch35078(targetDate, targetTime) { if(targetDate==''||targetTime==''){ document.getElementById('stopwatch-35078').innerText='---'; return; } const [year, month, day] = targetDate.split('-').map(Number); const [hour, minute] = targetTime.split(':').map(Number); const target = new Date(year, month - 1, day, hour, minute); let days, hours, minutes; function updateStopwatch35078() { const now = new Date(); const timeLeft = target - now; if (timeLeft <= 0) { document.getElementById('stopwatch-35078').innerText = 'Time is up!'; // clearInterval(interval); return; } days = Math.floor(timeLeft / (1000 * 60 * 60 * 24)); hours = Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); minutes = Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60)); // document.getElementById('stopwatch-35078').innerText = ` days : hours : minutes`; document.getElementById('stopwatch-35078').innerText = days + ' days : ' + hours + ' hours : ' + minutes + ' minutes'; } updateStopwatch35078(); const interval = setInterval(updateStopwatch35078, 60000); // Update every minute } // Example usage: var targetDate = '2025-11-03'; var targetTime = '14:45'; startStopwatch35078(targetDate, targetTime);
פעולות נוספות
הערות
הצג פרטים
הצג PDF
הפק חשבונית
החזרת רכב
רבקה
73592802
35077
2025-11-03
2025-11-03
מושהה
הסתיים
מבוטל
מושהה
מתוזמן
פעילה
function startStopwatch35077(targetDate, targetTime) { if(targetDate==''||targetTime==''){ document.getElementById('stopwatch-35077').innerText='---'; return; } const [year, month, day] = targetDate.split('-').map(Number); const [hour, minute] = targetTime.split(':').map(Number); const target = new Date(year, month - 1, day, hour, minute); let days, hours, minutes; function updateStopwatch35077() { const now = new Date(); const timeLeft = target - now; if (timeLeft <= 0) { document.getElementById('stopwatch-35077').innerText = 'Time is up!'; // clearInterval(interval); return; } days = Math.floor(timeLeft / (1000 * 60 * 60 * 24)); hours = Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); minutes = Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60)); // document.getElementById('stopwatch-35077').innerText = ` days : hours : minutes`; document.getElementById('stopwatch-35077').innerText = days + ' days : ' + hours + ' hours : ' + minutes + ' minutes'; } updateStopwatch35077(); const interval = setInterval(updateStopwatch35077, 60000); // Update every minute } // Example usage: var targetDate = '2025-11-03'; var targetTime = '14:45'; startStopwatch35077(targetDate, targetTime);
פעולות נוספות
הערות
הצג פרטים
הצג PDF
הפק חשבונית
החזרת רכב
חפש לפי:
סנן לפי:
מסמכים-סוג
הכל
ביטוח רכב
דוח תאונה
הצעת מחיר
חשבונית מס קבלה
טסט
מסמך כללי
מסמך רגיל
רשיון רכב
תעודת ביטוח
תקנון חתום
מספר רכב
סוג מסמך
תאריך העלאה
הערות
לא נמצאו מסמכים מתאימים
חובות וקנסות
תשלומים שהתקבלו
יתרת חוב: 7,647.16 ₪
שם לקוח
מספר הזמנה
תאריך חיוב
גביה עד-
סכום לתשלום
סוג חיוב
סטטוס
הערות
רבקה
35074
04/11/2025
04/11/2025
1198.6071092031
fine
לא שולם
פעולות נוספות
שלח הודעה
פתח הזמנה
מחק
רבקה
33797
17/09/2025
17/09/2025
2856.5071092031
fine
לא שולם
פעולות נוספות
שלח הודעה
פתח הזמנה
מחק
רבקה
33792
15/09/2025
15/09/2025
349.00710920309
fine
לא שולם
פעולות נוספות
שלח הודעה
פתח הזמנה
מחק
רבקה
33789
15/09/2025
15/09/2025
349.00710920309
fine
לא שולם
פעולות נוספות
שלח הודעה
פתח הזמנה
מחק
רבקה
33782
15/09/2025
15/09/2025
349.00710920309
fine
לא שולם
פעולות נוספות
שלח הודעה
פתח הזמנה
מחק
רבקה
33776
15/09/2025
15/09/2025
349.00710920309
fine
לא שולם
פעולות נוספות
שלח הודעה
פתח הזמנה
מחק
רבקה
33172
11/09/2025
11/09/2025
733.582409972
fine
לא שולם
פעולות נוספות
שלח הודעה
פתח הזמנה
מחק
רבקה
33172
09/09/2025
09/09/2025
175.5
renting
לא שולם
פעולות נוספות
שלח הודעה
פתח הזמנה
מחק
רבקה
33168
09/09/2025
09/09/2025
175.5
renting
לא שולם
פעולות נוספות
שלח הודעה
פתח הזמנה
מחק
רבקה
32733
04/09/2025
04/09/2025
335.33769565346
fine
לא שולם
פעולות נוספות
שלח הודעה
פתח הזמנה
מחק
שם לקוח
מספר הזמנה
תאריך חיוב
גביה עד-
סכום לתשלום
סוג חיוב
סטטוס
הערות
לא נמצאו מסמכים מתאימים
לקוח חדש נוסף בהצלחה!