2
0
mirror of https://github.com/frappe/books.git synced 2024-12-22 10:58:59 +00:00

chore: refactored styling

This commit is contained in:
akshayitzme 2024-10-15 10:08:05 +05:30
parent d80ecdf18a
commit 636f91849d
3 changed files with 30 additions and 35 deletions

View File

@ -8,7 +8,7 @@ export type ItemSerialNumbers = { [item: string]: string };
export type DiscountType = "percent" | "amount";
export type ModalName = 'ShiftOpen' | 'ShiftClose' | 'Payment' | 'LoyaltyProgram' | 'InvoiceListAlert'
export type ModalName = 'ShiftOpen' | 'ShiftClose' | 'Payment' | 'LoyaltyProgram' | 'RouteToInvoiceList'
export interface POSItem {
image?:string,

View File

@ -1,15 +1,16 @@
<template>
<Modal class="h-auto w-96 px-10" :set-close-listener="false">
<p class="text-center py-4">Alert</p>
<Modal class="h-auto px-6 select-none" :set-close-listener="false">
<p class="text-center font-semibold py-3">{{ t`Alert` }}</p>
<hr class="dark:border-gray-800" />
<p class="py-6">This will remove all selected items.</p>
<div class="row-start-6 grid grid-cols-2 gap-4 mt-auto pb-10">
<p class="py-6">
{{ t`Clicking continue will remove all the selected items.` }}
</p>
<div class="row-start-6 grid grid-cols-2 gap-4 mt-auto pb-6">
<div class="flex col-span-2 gap-5">
<Button
class="w-full bg-red-500 dark:bg-red-700"
style="padding: 1.35rem"
@click="$emit('toggleModal', 'InvoiceListAlert')"
class="py-5 w-full bg-red-500 dark:bg-red-700"
@click="$emit('toggleModal', 'RouteToInvoiceList')"
>
<slot>
<p class="uppercase text-lg text-white font-semibold">
@ -17,12 +18,12 @@
</p>
</slot>
</Button>
<Button
class="w-full p-5 bg-green-500 dark:bg-green-700"
style="padding: 1.35rem"
class="w-full py-5 bg-green-500 dark:bg-green-700"
@click="
routeTo('/list/SalesInvoice');
$emit('toggleModal', 'InvoiceListAlert');
$emit('toggleModal', 'RouteToInvoiceList');
"
>
<slot>

View File

@ -41,7 +41,7 @@
/>
<AlertModal
:open-modal="openInvoiceListAlertModal"
:open-modal="openRouteToInvoiceListModal"
@toggle-modal="toggleModal"
/>
@ -192,25 +192,14 @@
</span>
</div>
<div class="relative group">
<div
class="p-1 px-1.5 rounded-md bg-gray-100"
@click="
sinvDoc.items?.length
? (openInvoiceListAlertModal = true)
: routeTo('/list/SalesInvoice')
"
>
<div class="p-1 rounded-md bg-gray-100" @click="routeToSinvList">
<svg
xmlns="http://www.w3.org/2000/svg"
height="24px"
height="24"
viewBox="0 -960 960 960"
width="24px"
width="24"
fill="currentColor"
class="
feather feather-search
text-gray-700
dark:text-gray-300
"
class="text-gray-700 dark:text-gray-300"
>
<path
d="M240-100q-41.92 0-70.96-29.04Q140-158.08 140-199.82V-300h120v-552.31l55.39 47.7 56.15-47.7 56.15 47.7 56.16-47.7 56.15 47.7 56.15-47.7 56.16 47.7 56.15-47.7 56.15 47.7 55.39-47.7V-200q0 41.92-29.04 70.96Q761.92-100 720-100H240Zm480-60q17 0 28.5-11.5T760-200v-560H320v460h360v100q0 17 11.5 28.5T720-160ZM367.69-610v-60h226.92v60H367.69Zm0 120v-60h226.92v60H367.69Zm310-114.62q-14.69 0-25.04-10.34-10.34-10.35-10.34-25.04t10.34-25.04q10.35-10.34 25.04-10.34t25.04 10.34q10.35 10.35 10.35 25.04t-10.35 25.04q-10.35 10.34-25.04 10.34Zm0 120q-14.69 0-25.04-10.34-10.34-10.35-10.34-25.04t10.34-25.04q10.35-10.34 25.04-10.34t25.04 10.34q10.35 10.35 10.35 25.04t-10.35 25.04q-10.35 10.34-25.04 10.34ZM240-160h380v-80H200v40q0 17 11.5 28.5T240-160Zm-40 0v-80 80Z"
@ -225,15 +214,14 @@
left-1/2
transform
-translate-x-1/2
mb-2
rounded-md
opacity-0
bg-gray-100
dark:bg-gray-850 dark:text-white
text-black text-xs
rounded-md
text-black text-xs text-center
mb-2
p-2
w-28
text-center
opacity-0
group-hover:opacity-100
transition-opacity
duration-300
@ -460,7 +448,7 @@ export default defineComponent({
openLoyaltyProgramModal: false,
openShiftCloseModal: false,
openShiftOpenModal: false,
openInvoiceListAlertModal: false,
openRouteToInvoiceListModal: false,
additionalDiscounts: fyo.pesa(0),
cashAmount: fyo.pesa(0),
@ -537,7 +525,6 @@ export default defineComponent({
toggleSidebar(true);
},
methods: {
routeTo,
async setCustomer(value: string) {
if (!value) {
this.sinvDoc.party = '';
@ -897,7 +884,14 @@ export default defineComponent({
}
}, 1);
},
async routeToSinvList() {
if (!this.sinvDoc.items.length) {
return await routeTo('/list/SalesInvoice');
}
this.openRouteToInvoiceListModal = true;
},
routeTo,
getItem,
},
});