template client page

This commit is contained in:
Casey 2025-11-11 11:28:32 -06:00
parent df1df3f882
commit f44bbbe7d4
3 changed files with 16 additions and 4 deletions

View file

@ -34,20 +34,20 @@ const createButtons = ref([
{
label: "Client",
command: () => {
modalStore.openModal("createClient");
router.push("/clients/new");
},
},
{
label: "On-Site Meeting",
command: () => {
modalStore.openModal("createOnsiteMeeting");
router.push("/onsitemeetings/new");
},
},
{
label: "Estimate",
command: () => {
//frappe.new_doc("Estimate");
modalStore.openModal("createEstimate");
router.push("/createEstimate/new");
},
},
{