diff --git a/frontend/src/components/pages/Job.vue b/frontend/src/components/pages/Job.vue
index 5b500a6..2bdef8c 100644
--- a/frontend/src/components/pages/Job.vue
+++ b/frontend/src/components/pages/Job.vue
@@ -13,7 +13,7 @@
- {{ job.customInstallationAddress || "" }}
+ {{ job.jobAddress["fullAddress"] || "" }}
@@ -32,6 +32,26 @@
+
+
+
+
+
+
+
+ Job is {{ job.status }}.
+
+
+
+
+
[
},
]);
+const createInvoiceForJob = async () => {
+ console.log(job);
+ await Api.createInvoiceForJob(job.value.name);
+}
+
const handleLazyLoad = async (event) => {
console.log("Task list on Job Page - handling lazy load:", event);
try {
@@ -232,7 +257,7 @@ const handleLazyLoad = async (event) => {
onMounted(async () => {
console.log("DEBUG: Query params:", route.query);
-
+
try {
const optionsResult = await Api.getTaskStatusOptions();
if (optionsResult && optionsResult.length > 0) {