Added price for service

This commit is contained in:
2025-08-26 17:19:41 -04:00
parent 87a50fa37c
commit 76cbca94e3
7 changed files with 350 additions and 93 deletions

View File

@@ -55,6 +55,7 @@
{{ getServiceTypeName(service.type_service_call) }}
</td>
<td class="px-6 py-4 whitespace-normal text-sm">{{ service.description }}</td>
<td class="px-6 py-4 whitespace-normal text-sm">{{ service.service_cost }}</td>
</tr>
</tbody>
</table>
@@ -93,6 +94,7 @@ interface ServiceCall {
customer_town: string;
type_service_call: number;
description: string;
service_cost: string;
}
export default defineComponent({