Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cdd2bd6bee | |||
| f18d7a1f04 |
@@ -43,12 +43,12 @@ export class PosMainMenuSidebarComponent extends AbstractDialog {
|
||||
icon: 'pi pi-fw pi-home',
|
||||
},
|
||||
{
|
||||
label: 'فروش',
|
||||
label: 'ایجاد صورتحساب',
|
||||
routerLink: PosShopNamedRoutes.shop.meta.pagePath!(),
|
||||
icon: 'pi pi-fw pi-cart-arrow-down',
|
||||
},
|
||||
{
|
||||
label: 'فاکتورها',
|
||||
label: 'صورتحسابها',
|
||||
routerLink: posSaleInvoicesNamedRoutes.saleInvoices.meta.pagePath!(),
|
||||
icon: 'pi pi-fw pi-receipt',
|
||||
},
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
<app-card-data cardTitle="تغییر گذرواژه" class="w-full">
|
||||
<form [formGroup]="form" (submit)="submit()" class="flex flex-col gap-4">
|
||||
<shared-password-input
|
||||
[passwordControl]="form.controls.password"
|
||||
[confirmPasswordControl]="form.controls.confirmPassword" />
|
||||
|
||||
<div class="flex w-full justify-end">
|
||||
<button pButton label="ذخیره گذرواژه" [loading]="submitLoading()" class="w-full max-w-40"></button>
|
||||
</div>
|
||||
</form>
|
||||
</app-card-data>
|
||||
@@ -0,0 +1,51 @@
|
||||
import { MustMatch } from '@/core/validators';
|
||||
import { AbstractForm } from '@/shared/abstractClasses';
|
||||
import { AppCardComponent } from '@/shared/components';
|
||||
import { SharedPasswordInputComponent } from '@/shared/components/passwordInput/password-input.component';
|
||||
import { fieldControl } from '@/shared/constants';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { Component, inject } from '@angular/core';
|
||||
import { ReactiveFormsModule } from '@angular/forms';
|
||||
import { ButtonDirective } from 'primeng/button';
|
||||
import { tap } from 'rxjs';
|
||||
import { IChangePasswordSubmitPayload } from './model';
|
||||
import { PosChangePasswordService } from './services/main.service';
|
||||
|
||||
@Component({
|
||||
selector: 'pos-change-password-form',
|
||||
templateUrl: './form.component.html',
|
||||
imports: [
|
||||
ReactiveFormsModule,
|
||||
SharedPasswordInputComponent,
|
||||
CommonModule,
|
||||
ButtonDirective,
|
||||
AppCardComponent,
|
||||
],
|
||||
})
|
||||
export class PosChangePasswordFormDialogComponent extends AbstractForm<
|
||||
IChangePasswordSubmitPayload,
|
||||
any
|
||||
> {
|
||||
private readonly changePasswordService = inject(PosChangePasswordService);
|
||||
|
||||
form = this.fb.group(
|
||||
{
|
||||
password: fieldControl.password(),
|
||||
confirmPassword: fieldControl.confirmPassword(),
|
||||
},
|
||||
{
|
||||
validators: [MustMatch('password', 'confirmPassword')],
|
||||
}
|
||||
);
|
||||
|
||||
override submitForm() {
|
||||
const payload = this.form.getRawValue().password!;
|
||||
return this.changePasswordService.changePassword({ password: payload }).pipe(
|
||||
tap({
|
||||
next: (res) => {
|
||||
this.form.reset();
|
||||
},
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
export interface IChangePasswordSubmitPayload {
|
||||
password: string;
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
import { HttpClient } from '@angular/common/http';
|
||||
import { Injectable } from '@angular/core';
|
||||
import { Observable } from 'rxjs';
|
||||
import { IChangePasswordSubmitPayload } from '../model';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class PosChangePasswordService {
|
||||
constructor(private readonly http: HttpClient) {}
|
||||
|
||||
changePassword(payload: IChangePasswordSubmitPayload): Observable<unknown> {
|
||||
return this.http.put('/api/v1/pos/update-password', payload);
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,7 @@
|
||||
<app-card-data cardTitle="قیمت پیشفرض هر گرم طلا" class="w-full">
|
||||
<p-message variant="text" severity="info" icon="pi pi-info-circle">
|
||||
در این بخش میتوانید قیمت پیشفرض هر گرم طلا را وارد کنید.
|
||||
</p-message>
|
||||
<form [formGroup]="form" class="mt-6" (submit)="submit()">
|
||||
<field-unit-price [control]="form.controls.price" />
|
||||
<app-form-footer-actions (onCancel)="close()" />
|
||||
</form>
|
||||
</app-card-data>
|
||||
<app-input
|
||||
[control]="goldPrice"
|
||||
label="قیمت پیشفرض هر گرم طلا"
|
||||
name="goldBasePrice"
|
||||
type="price"
|
||||
[min]="0"
|
||||
hint="در این بخش میتوانید قیمت پیشفرض هر گرم طلا را وارد کنید." />
|
||||
|
||||
@@ -1,53 +1,31 @@
|
||||
import { AbstractForm } from '@/shared/abstractClasses';
|
||||
import { AppCardComponent, UnitPriceComponent } from '@/shared/components';
|
||||
import { FormFooterActionsComponent } from '@/shared/components/formFooterActions/form-footer-actions.component';
|
||||
import { fieldControl } from '@/shared/constants';
|
||||
import { Component, inject, signal } from '@angular/core';
|
||||
import { ReactiveFormsModule } from '@angular/forms';
|
||||
import { Message } from 'primeng/message';
|
||||
import { IPosConfigGoldPricePayload, IPosConfigGoldPriceResponse } from './models';
|
||||
import { InputComponent } from '@/shared/components';
|
||||
import { Component, inject } from '@angular/core';
|
||||
import { FormBuilder, ReactiveFormsModule } from '@angular/forms';
|
||||
import { debounce, timer } from 'rxjs';
|
||||
import { PosConfigGoldPriceService } from './services/main.service';
|
||||
|
||||
@Component({
|
||||
selector: 'pos-config-gold-price-form',
|
||||
templateUrl: 'form.component.html',
|
||||
imports: [
|
||||
ReactiveFormsModule,
|
||||
FormFooterActionsComponent,
|
||||
AppCardComponent,
|
||||
Message,
|
||||
UnitPriceComponent,
|
||||
],
|
||||
imports: [ReactiveFormsModule, InputComponent],
|
||||
})
|
||||
export class PosConfigGoldPriceFormComponent extends AbstractForm<
|
||||
IPosConfigGoldPricePayload,
|
||||
IPosConfigGoldPriceResponse
|
||||
> {
|
||||
export class PosConfigGoldPriceFormComponent {
|
||||
private readonly service = inject(PosConfigGoldPriceService);
|
||||
private readonly fb = inject(FormBuilder);
|
||||
|
||||
loading = signal(true);
|
||||
goldPrice = this.fb.control(0, { nonNullable: true });
|
||||
|
||||
initForm = () => {
|
||||
const form = this.fb.group({
|
||||
price: fieldControl.unit_price(),
|
||||
ngOnInit() {
|
||||
const initialValues = this.service.get();
|
||||
this.goldPrice.setValue(initialValues);
|
||||
|
||||
this.goldPrice.valueChanges.pipe(debounce(() => timer(300))).subscribe((value) => {
|
||||
this.submit();
|
||||
});
|
||||
|
||||
return form;
|
||||
};
|
||||
|
||||
form = this.initForm();
|
||||
|
||||
override async ngOnInit() {
|
||||
this.loading.set(true);
|
||||
const initialValues = await this.service.get();
|
||||
|
||||
this.form.controls.price.setValue((initialValues || 0) + '');
|
||||
this.loading.set(false);
|
||||
}
|
||||
|
||||
override submitForm() {
|
||||
const formValue = this.form.value.price as IPosConfigGoldPricePayload;
|
||||
this.toastService.success({ text: 'تغییرات با موفقیت اعمال شد.' });
|
||||
submit() {
|
||||
const formValue = this.goldPrice.value;
|
||||
return this.service.submit(formValue);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,12 +1,9 @@
|
||||
<app-card-data cardTitle="ثبت سریع صورتحساب" class="w-full">
|
||||
<p-message variant="text" severity="info" icon="pi pi-info-circle">
|
||||
در صورتی که فروش شما تک محصولی / خدماتی است، این قابلیت را فعال کنید.
|
||||
</p-message>
|
||||
<form [formGroup]="form" class="mt-6" (submit)="submit()">
|
||||
<div class="flex items-center gap-4">
|
||||
<div class="gap-4">
|
||||
<div class="flex items-center justify-between">
|
||||
<uikit-label name="rapidInvoice"> ثبت سریع صورتحساب </uikit-label>
|
||||
<p-toggleSwitch [formControl]="form.controls.rapidInvoice" />
|
||||
<p-toggleSwitch [formControl]="rapidInvoice" />
|
||||
</div>
|
||||
<small id="rapidInvoice-help" class="text-muted-color mt-2 block">
|
||||
در صورتی که فروش شما تک محصولی / خدماتی است، این قابلیت را فعال کنید.
|
||||
</small>
|
||||
</div>
|
||||
<app-form-footer-actions (onCancel)="close()" />
|
||||
</form>
|
||||
</app-card-data>
|
||||
|
||||
@@ -1,55 +1,33 @@
|
||||
import { AbstractForm } from '@/shared/abstractClasses';
|
||||
import { AppCardComponent } from '@/shared/components';
|
||||
import { FormFooterActionsComponent } from '@/shared/components/formFooterActions/form-footer-actions.component';
|
||||
import { UikitLabelComponent } from '@/uikit';
|
||||
import { Component, inject, signal } from '@angular/core';
|
||||
import { ReactiveFormsModule } from '@angular/forms';
|
||||
import { Message } from 'primeng/message';
|
||||
import { Component, inject } from '@angular/core';
|
||||
import { FormBuilder, ReactiveFormsModule } from '@angular/forms';
|
||||
import { ToggleSwitch } from 'primeng/toggleswitch';
|
||||
import { IPosConfigRapidInvoicePayload, IPosConfigRapidInvoiceResponse } from './models';
|
||||
import { debounce, timer } from 'rxjs';
|
||||
import { PosConfigRapidInvoiceService } from './services/main.service';
|
||||
|
||||
@Component({
|
||||
selector: 'pos-config-rapid-invoice-form',
|
||||
templateUrl: 'form.component.html',
|
||||
imports: [
|
||||
ReactiveFormsModule,
|
||||
FormFooterActionsComponent,
|
||||
AppCardComponent,
|
||||
Message,
|
||||
UikitLabelComponent,
|
||||
ToggleSwitch,
|
||||
],
|
||||
imports: [ReactiveFormsModule, UikitLabelComponent, ToggleSwitch],
|
||||
})
|
||||
export class PosConfigRapidInvoiceFormComponent extends AbstractForm<
|
||||
IPosConfigRapidInvoicePayload,
|
||||
IPosConfigRapidInvoiceResponse
|
||||
> {
|
||||
export class PosConfigRapidInvoiceFormComponent {
|
||||
private readonly service = inject(PosConfigRapidInvoiceService);
|
||||
|
||||
loading = signal(true);
|
||||
private readonly fb = inject(FormBuilder);
|
||||
|
||||
initForm = () => {
|
||||
const form = this.fb.group({
|
||||
rapidInvoice: [false],
|
||||
rapidInvoice = this.fb.control(false, { nonNullable: true });
|
||||
|
||||
ngOnInit() {
|
||||
const initialValues = this.service.get();
|
||||
this.rapidInvoice.setValue(initialValues);
|
||||
|
||||
this.rapidInvoice.valueChanges.pipe(debounce(() => timer(300))).subscribe((value) => {
|
||||
this.submit();
|
||||
});
|
||||
|
||||
return form;
|
||||
};
|
||||
|
||||
form = this.initForm();
|
||||
|
||||
override async ngOnInit() {
|
||||
this.loading.set(true);
|
||||
const initialValues = await this.service.get();
|
||||
|
||||
this.form.controls.rapidInvoice.setValue(initialValues || false);
|
||||
this.loading.set(false);
|
||||
}
|
||||
|
||||
override submitForm() {
|
||||
const formValue = this.form.value.rapidInvoice as IPosConfigRapidInvoicePayload;
|
||||
this.toastService.success({ text: 'تغییرات با موفقیت اعمال شد.' });
|
||||
submit() {
|
||||
const formValue = this.rapidInvoice.value;
|
||||
return this.service.submit(formValue);
|
||||
}
|
||||
}
|
||||
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
<div class="gap-4">
|
||||
<div class="flex items-center justify-between">
|
||||
<uikit-label name="sendToFiscalActivation"> ارسال سریع صورتحساب به مالیات </uikit-label>
|
||||
<p-toggleSwitch [formControl]="sendToFiscalActivation" />
|
||||
</div>
|
||||
<small id="sendToFiscalActivation-help" class="text-muted-color mt-2 block">
|
||||
در صورتی که میخواهید همزمان با ساخت صورتحساب، اطلاعات آن به سازمان مالیاتی ارسال شود این قابلیت را فعال کنید.
|
||||
</small>
|
||||
</div>
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
import { UikitLabelComponent } from '@/uikit';
|
||||
import { Component, inject } from '@angular/core';
|
||||
import { FormBuilder, ReactiveFormsModule } from '@angular/forms';
|
||||
import { ToggleSwitch } from 'primeng/toggleswitch';
|
||||
import { debounce, timer } from 'rxjs';
|
||||
import { PosConfigSendToFiscalActivationService } from './services/main.service';
|
||||
|
||||
@Component({
|
||||
selector: 'pos-config-send-to-fiscal-activation-form',
|
||||
templateUrl: 'form.component.html',
|
||||
imports: [ReactiveFormsModule, UikitLabelComponent, ToggleSwitch],
|
||||
})
|
||||
export class PosConfigSendToFiscalActivationFormComponent {
|
||||
private readonly service = inject(PosConfigSendToFiscalActivationService);
|
||||
|
||||
private readonly fb = inject(FormBuilder);
|
||||
|
||||
sendToFiscalActivation = this.fb.control(false, { nonNullable: true });
|
||||
|
||||
ngOnInit() {
|
||||
const initialValues = this.service.get();
|
||||
this.sendToFiscalActivation.setValue(initialValues);
|
||||
|
||||
this.sendToFiscalActivation.valueChanges.pipe(debounce(() => timer(300))).subscribe((value) => {
|
||||
this.submit();
|
||||
});
|
||||
}
|
||||
|
||||
submit() {
|
||||
const formValue = this.sendToFiscalActivation.value;
|
||||
return this.service.submit(formValue);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
export type IPosConfigSendToFiscalActivationResponse = boolean;
|
||||
|
||||
export type IPosConfigSendToFiscalActivationPayload = boolean;
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { LOCAL_STORAGE_KEYS } from 'src/assets/constants';
|
||||
import {
|
||||
IPosConfigSendToFiscalActivationPayload,
|
||||
IPosConfigSendToFiscalActivationResponse,
|
||||
} from '../models';
|
||||
|
||||
@Injectable({ providedIn: 'root' })
|
||||
export class PosConfigSendToFiscalActivationService {
|
||||
get(): IPosConfigSendToFiscalActivationResponse {
|
||||
const defaultPrice = Boolean(
|
||||
window.localStorage.getItem(LOCAL_STORAGE_KEYS.POS_CONFIG_SEND_TO_FISCAL_ACTIVATION) ===
|
||||
'true'
|
||||
);
|
||||
|
||||
this.submit(defaultPrice);
|
||||
return defaultPrice;
|
||||
}
|
||||
|
||||
submit(data: IPosConfigSendToFiscalActivationPayload) {
|
||||
window.localStorage.setItem(
|
||||
LOCAL_STORAGE_KEYS.POS_CONFIG_SEND_TO_FISCAL_ACTIVATION,
|
||||
data.toString()
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,17 @@
|
||||
<div class="flex h-full w-full flex-col items-center justify-center gap-6 p-4">
|
||||
<app-card-data cardTitle="تنظیمات صدور صورتحساب" class="w-full">
|
||||
<div class="flex w-full flex-col gap-4">
|
||||
@if (info()?.guild!.code.toLocaleLowerCase() === 'gold') {
|
||||
<pos-config-gold-price-form class="w-full" (onClose)="returnToMainPage()" />
|
||||
<pos-config-gold-price-form class="w-full" />
|
||||
<hr />
|
||||
}
|
||||
<pos-config-rapid-invoice-form class="w-full" (onClose)="returnToMainPage()" />
|
||||
<app-card-data cardTitle="تنظیمات فاکتور" class="w-full">
|
||||
<pos-config-rapid-invoice-form class="w-full" />
|
||||
<hr />
|
||||
<pos-config-send-to-fiscal-activation-form class="w-full" />
|
||||
</div>
|
||||
</app-card-data>
|
||||
<pos-change-password-form class="w-full" />
|
||||
<app-card-data cardTitle="تنظیمات پرینت صورتحساب" class="w-full">
|
||||
<p-message variant="text" severity="info" icon="pi pi-info-circle">
|
||||
هریک از موارد زیر را که میخواهید در چاپ فاکتور نمایش داده شوند را انتخاب کنید
|
||||
</p-message>
|
||||
|
||||
@@ -3,9 +3,11 @@ import { AppCardComponent } from '@/shared/components';
|
||||
import { Component, computed, inject } from '@angular/core';
|
||||
import { Router } from '@angular/router';
|
||||
import { Message } from 'primeng/message';
|
||||
import { PosChangePasswordFormDialogComponent } from '../components/changePassword/form.component';
|
||||
import { PosConfigGoldPriceFormComponent } from '../components/goldPrice/form.component';
|
||||
import { PosConfigPrintFormComponent } from '../components/print/form.component';
|
||||
import { PosConfigRapidInvoiceFormComponent } from '../components/rapidInvoice/form.component';
|
||||
import { PosConfigSendToFiscalActivationFormComponent } from '../components/sendToFiscalActivation/form.component';
|
||||
|
||||
@Component({
|
||||
selector: 'pos-config-page',
|
||||
@@ -16,6 +18,8 @@ import { PosConfigRapidInvoiceFormComponent } from '../components/rapidInvoice/f
|
||||
Message,
|
||||
PosConfigGoldPriceFormComponent,
|
||||
PosConfigRapidInvoiceFormComponent,
|
||||
PosConfigSendToFiscalActivationFormComponent,
|
||||
PosChangePasswordFormDialogComponent,
|
||||
],
|
||||
})
|
||||
export class PosConfigPageComponent {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<div class="bg-surface-card">
|
||||
<app-inner-pages-header [pageTitle]="preparedPageTitle()" [backRoute]="backRoute">
|
||||
<app-inner-pages-header [pageTitle]="preparedPageTitle()">
|
||||
<ng-template #actions>
|
||||
<button pButton icon="pi pi-plus" type="button" size="small" outlined [routerLink]="createRoute"></button>
|
||||
<button pButton icon="pi pi-refresh" type="button" size="small" outlined (click)="refresh()"></button>
|
||||
</ng-template>
|
||||
</app-inner-pages-header>
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
import { POS_ROUTES } from '@/domains/pos/routes';
|
||||
import { PosInfoStore } from '@/domains/pos/store';
|
||||
import { InnerPagesHeaderComponent } from '@/shared/components/innerPagesHeader/inner-pages-header.component';
|
||||
import { Component, computed, inject, signal } from '@angular/core';
|
||||
@@ -26,7 +25,8 @@ export class PosOwnedGoodsListComponent {
|
||||
|
||||
loading = signal(true);
|
||||
items = signal<IPosGoodsManagementResponse[]>([]);
|
||||
backRoute = POS_ROUTES.path || '/';
|
||||
// backRoute = POS_ROUTES.path || '/';
|
||||
createRoute = PosGoodsManagementRoutes.create.meta.pagePath!();
|
||||
|
||||
preparedPageTitle = computed(
|
||||
() => `لیست کالاهای ${this.infoStore.entity()?.businessActivity.name}`
|
||||
|
||||
@@ -31,7 +31,7 @@ export const PosGoodsManagementRoutes: NamedRoutes<TPosGoodsManagementRouteNames
|
||||
import('../../views/create.component').then((m) => m.PosGoodsCreateComponent),
|
||||
meta: {
|
||||
title: 'ایجاد کالا',
|
||||
pagePath: () => baseRoute,
|
||||
pagePath: () => `${baseRoute}/create`,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
@@ -3,7 +3,7 @@ import { SharedGoodFormComponent } from '@/shared/components/good';
|
||||
import { InnerPagesHeaderComponent } from '@/shared/components/innerPagesHeader/inner-pages-header.component';
|
||||
import { Component, computed, inject } from '@angular/core';
|
||||
import { Router } from '@angular/router';
|
||||
import config from 'src/config';
|
||||
import { PosGoodsManagementRoutes } from '../constants';
|
||||
import { PosOwnedGoodsService } from '../services/main.service';
|
||||
|
||||
@Component({
|
||||
@@ -18,7 +18,7 @@ export class PosGoodsCreateComponent {
|
||||
|
||||
readonly guildId = computed(() => this.store.entity()?.guild.id || '');
|
||||
|
||||
readonly backRoute = config.isPosApplication ? '/' : '/pos';
|
||||
readonly backRoute = PosGoodsManagementRoutes.goods.meta.pagePath!();
|
||||
|
||||
preparedPageTitle = computed(
|
||||
() => `ایجاد کالا برای ${this.store.entity()?.businessActivity.name}`
|
||||
|
||||
@@ -5,7 +5,7 @@ import { ButtonDirective } from 'primeng/button';
|
||||
import images from 'src/assets/images';
|
||||
import { IPosInOrderGood } from '../../models';
|
||||
import { PosLandingStore } from '../../store/main.store';
|
||||
import { PayloadFormDialogComponent } from '../payload-form.component';
|
||||
import { PayloadFormDialogComponent } from '../payloads/payload-form.component';
|
||||
|
||||
@Component({
|
||||
selector: 'pos-order-card-template',
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<div class="bg-surface-card shrink-0 h-full overflow-hidden md:rounded-xl md:p-4 md:w-md pb-0 flex flex-col">
|
||||
<div class="grow flex flex-col overflow-hidden">
|
||||
<div class="flex items-center justify-between shrink-0">
|
||||
<div class="flex items-center gap-2 text-muted-color">
|
||||
<div class="bg-surface-card flex h-full shrink-0 flex-col overflow-hidden pb-0 md:w-md md:rounded-xl md:p-4">
|
||||
<div class="flex grow flex-col overflow-hidden">
|
||||
<div class="flex shrink-0 items-center justify-between">
|
||||
<div class="text-muted-color flex items-center gap-2">
|
||||
<i class="pi pi-shopping-cart"></i>
|
||||
<span class="text-base font-bold">سفارشها</span>
|
||||
</div>
|
||||
<div class="flex gap-2 shrink-0">
|
||||
<div class="flex shrink-0 gap-2">
|
||||
<button pButton type="button" icon="pi pi-plus" outlined size="small" (click)="addMoreGoods()">
|
||||
افزودن کالا
|
||||
</button>
|
||||
@@ -16,21 +16,20 @@
|
||||
outlined
|
||||
severity="danger"
|
||||
size="small"
|
||||
(click)="clearOrderList()"
|
||||
>
|
||||
(click)="clearOrderList()">
|
||||
پاک کردن سفارشها
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@if (!inOrderGoods().length) {
|
||||
<div class="grow flex flex-col gap-5 justify-center items-center text-center text-muted-color py-5">
|
||||
<div class="text-muted-color flex grow flex-col items-center justify-center gap-5 py-5 text-center">
|
||||
<i class="pi pi-inbox text-6xl!"></i>
|
||||
<span class="text-lg text-muted-color">هیچ سفارشی ثبت نشده است.</span>
|
||||
<span class="text-muted-color text-lg">هیچ سفارشی ثبت نشده است.</span>
|
||||
</div>
|
||||
} @else {
|
||||
<div class="flex flex-col gap-2 mt-3 overflow-auto">
|
||||
<div class="mt-3 flex flex-col gap-2 overflow-auto">
|
||||
@for (inOrderGood of inOrderGoods(); track inOrderGood.id) {
|
||||
@if (inOrderGood.good.pricing_model === "GOLD") {
|
||||
@if (inOrderGood.good.pricing_model === 'GOLD') {
|
||||
<gold-payload-order-card [orderItem]="inOrderGood" />
|
||||
} @else {
|
||||
<standard-payload-order-card [orderItem]="inOrderGood" />
|
||||
@@ -40,9 +39,9 @@
|
||||
}
|
||||
</div>
|
||||
<hr />
|
||||
<div class="flex flex-col gap-4 sticky bottom-0 py-2">
|
||||
<p-card class="border border-surface-border">
|
||||
<div class="flex gap-2 items-center justify-between shrink-0">
|
||||
<div class="sticky bottom-0 flex flex-col gap-4 py-2">
|
||||
<p-card class="border-surface-border border">
|
||||
<div class="flex shrink-0 items-center justify-between gap-2">
|
||||
<app-key-value label="مشتری" [value]="customerNameToShow()" />
|
||||
<button pButton outlined icon="pi pi-pencil" size="small" (click)="openCustomerDialog()"></button>
|
||||
</div>
|
||||
@@ -56,11 +55,8 @@
|
||||
icon="pi pi-check"
|
||||
class="w-full"
|
||||
size="large"
|
||||
(click)="submitAndPay()"
|
||||
></button>
|
||||
(click)="submitAndPay()"></button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<pos-order-customer-dialog [(visible)]="isVisibleCustomerForm" (onSubmit)="submitCustomer()" />
|
||||
<!-- <pos-pre-invoice-dialog [(visible)]="isVisiblePreInvoiceForm" /> -->
|
||||
<pos-payment-form-dialog [(visible)]="isVisiblePaymentForm" (onSubmit)="submitPayment($event)" />
|
||||
|
||||
@@ -1,17 +1,23 @@
|
||||
// import { CustomersSelectComponent } from '@/modules/customers/components/select/select.component';
|
||||
// import { ICustomerResponse } from '@/modules/customers/models';
|
||||
import { KeyValueComponent } from '@/shared/components';
|
||||
import { ChangeDetectionStrategy, Component, computed, EventEmitter, inject, Output, signal } from '@angular/core';
|
||||
import {
|
||||
ChangeDetectionStrategy,
|
||||
Component,
|
||||
computed,
|
||||
EventEmitter,
|
||||
inject,
|
||||
Output,
|
||||
signal,
|
||||
} from '@angular/core';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { ButtonDirective } from 'primeng/button';
|
||||
import { Card } from 'primeng/card';
|
||||
import images from 'src/assets/images';
|
||||
import { IPosOrderResponse } from '../../models';
|
||||
import { PosLandingStore } from '../../store/main.store';
|
||||
import { PosOrderCustomerDialogComponent } from '../customers/customer-dialog.component';
|
||||
import { GoldPayloadOrderCardComponent } from '../payloads/gold/order-card.component';
|
||||
import { StandardPayloadOrderCardComponent } from '../payloads/standard/order-card.component';
|
||||
import { PosPaymentFormDialogComponent } from '../payment/form-dialog.component';
|
||||
import { POSOrderPriceInfoCardComponent } from './price-info-card.component';
|
||||
|
||||
@Component({
|
||||
@@ -26,20 +32,17 @@ import { POSOrderPriceInfoCardComponent } from './price-info-card.component';
|
||||
StandardPayloadOrderCardComponent,
|
||||
PosOrderCustomerDialogComponent,
|
||||
KeyValueComponent,
|
||||
PosPaymentFormDialogComponent,
|
||||
Card,
|
||||
],
|
||||
})
|
||||
export class PosOrderSectionComponent {
|
||||
private readonly store = inject(PosLandingStore);
|
||||
@Output() onAddMoreGoods = new EventEmitter<void>();
|
||||
@Output() onSuccess = new EventEmitter<IPosOrderResponse>();
|
||||
@Output() onSubmit = new EventEmitter<void>();
|
||||
|
||||
placeholderImage = images.placeholders.default;
|
||||
|
||||
isVisibleCustomerForm = signal(false);
|
||||
isVisiblePaymentForm = signal(false);
|
||||
isVisiblePreInvoiceForm = signal(false);
|
||||
|
||||
inOrderGoods = computed(() => this.store.inOrderGoods());
|
||||
customer = computed(() => this.store.customer());
|
||||
@@ -77,8 +80,7 @@ export class PosOrderSectionComponent {
|
||||
}
|
||||
|
||||
submitAndPay() {
|
||||
this.isVisiblePaymentForm.set(false);
|
||||
queueMicrotask(() => this.isVisiblePaymentForm.set(true));
|
||||
this.onSubmit.emit();
|
||||
}
|
||||
|
||||
addMoreGoods() {
|
||||
@@ -86,7 +88,4 @@ export class PosOrderSectionComponent {
|
||||
}
|
||||
|
||||
submitCustomer() {}
|
||||
submitPayment(invoice: IPosOrderResponse) {
|
||||
this.onSuccess.emit(invoice);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -44,6 +44,7 @@ export class PosGoldPayloadFormComponent extends AbstractForm<
|
||||
};
|
||||
|
||||
@Input({ required: true }) vatPercentage!: number;
|
||||
@Input() isRapidInvoice!: boolean;
|
||||
|
||||
@Output() onSubmitForm = new EventEmitter<IGoldPayload>();
|
||||
@Output() onChangeTotalAmount = new EventEmitter<number>();
|
||||
@@ -71,7 +72,9 @@ export class PosGoldPayloadFormComponent extends AbstractForm<
|
||||
|
||||
goldDefaultUnitPrice = signal<number>(0);
|
||||
|
||||
preparedCTAText = computed(() => (this.editMode ? 'اعمال ویرایش' : 'افزودن به لیست خرید'));
|
||||
preparedCTAText = computed(() =>
|
||||
this.editMode ? 'اعمال ویرایش' : this.isRapidInvoice ? 'ثبت و پرداخت' : 'افزودن به لیست خرید'
|
||||
);
|
||||
|
||||
private readonly initialForm = () => {
|
||||
const defaultPrice = this.posGoldConfig.get();
|
||||
|
||||
@@ -1 +1 @@
|
||||
export * from '../payload-form.component';
|
||||
export * from './payload-form.component';
|
||||
|
||||
+5
-6
@@ -4,24 +4,23 @@
|
||||
[modal]="true"
|
||||
[style]="{ 'max-height': '90svh', height: 'auto' }"
|
||||
[closable]="true"
|
||||
(onHide)="close()"
|
||||
>
|
||||
(onHide)="close()">
|
||||
@if (good) {
|
||||
@if (isGoldMode()) {
|
||||
<pos-gold-payload-form
|
||||
[initialValues]="goldPayload()"
|
||||
[vatPercentage]="vatPercentage()"
|
||||
[editMode]="editMode()"
|
||||
(onSubmit)="submit($event)"
|
||||
/>
|
||||
[isRapidInvoice]="isRapidInvoice()"
|
||||
(onSubmit)="submit($event)" />
|
||||
} @else if (isStandardMode()) {
|
||||
<pos-standard-payload-form
|
||||
[initialValues]="standardPayload()"
|
||||
[vatPercentage]="vatPercentage()"
|
||||
[measureUnit]="good.measure_unit"
|
||||
[editMode]="editMode()"
|
||||
(onSubmit)="submit($event)"
|
||||
/>
|
||||
[isRapidInvoice]="isRapidInvoice()"
|
||||
(onSubmit)="submit($event)" />
|
||||
}
|
||||
}
|
||||
</shared-light-bottomsheet>
|
||||
+12
-5
@@ -2,10 +2,11 @@ import { IGoodResponse } from '@/domains/pos/models/good.io';
|
||||
import { AbstractDialog } from '@/shared/abstractClasses/abstract-dialog';
|
||||
import { SharedLightBottomsheetComponent } from '@/shared/components/dialog/light-bottomsheet.component';
|
||||
import { Component, computed, EventEmitter, inject, Input, Output, signal } from '@angular/core';
|
||||
import { IGoldPayload, IPosOrderItem, IStandardPayload, TPosOrderGoodPayload } from '../models';
|
||||
import { PosLandingStore } from '../store/main.store';
|
||||
import { PosGoldPayloadFormComponent } from './payloads/gold/form.component';
|
||||
import { PosStandardPayloadFormComponent } from './payloads/standard/form.component';
|
||||
import { PosConfigRapidInvoiceService } from '../../../configs/components/rapidInvoice/services/main.service';
|
||||
import { IGoldPayload, IPosOrderItem, IStandardPayload } from '../../models';
|
||||
import { PosLandingStore } from '../../store/main.store';
|
||||
import { PosGoldPayloadFormComponent } from './gold/form.component';
|
||||
import { PosStandardPayloadFormComponent } from './standard/form.component';
|
||||
|
||||
@Component({
|
||||
selector: 'pos-payload-form-dialog',
|
||||
@@ -20,9 +21,10 @@ export class PayloadFormDialogComponent extends AbstractDialog {
|
||||
@Input({ required: true }) good!: IGoodResponse;
|
||||
@Input() initialValues?: IPosOrderItem;
|
||||
@Input() orderItemId?: string;
|
||||
@Output() onSubmit = new EventEmitter<TPosOrderGoodPayload>();
|
||||
@Output() onCreateRapidOrder = new EventEmitter<void>();
|
||||
|
||||
private readonly store = inject(PosLandingStore);
|
||||
private readonly rapidInvoiceConfig = inject(PosConfigRapidInvoiceService);
|
||||
|
||||
totalAmount = signal<number>(0);
|
||||
preparedTitle = computed(() => this.good?.name);
|
||||
@@ -32,6 +34,8 @@ export class PayloadFormDialogComponent extends AbstractDialog {
|
||||
isGoldMode = computed(() => this.good.pricing_model === 'GOLD');
|
||||
isStandardMode = computed(() => this.good.pricing_model === 'STANDARD');
|
||||
|
||||
isRapidInvoice = computed(() => this.rapidInvoiceConfig.get());
|
||||
|
||||
goldPayload = computed(() =>
|
||||
this.isGoldMode() && this.editMode()
|
||||
? (this.initialValues as IPosOrderItem<IGoldPayload>)
|
||||
@@ -52,6 +56,9 @@ export class PayloadFormDialogComponent extends AbstractDialog {
|
||||
this.store.editInOrderGoods({ id: this.orderItemId!, good: this.good, ...payload });
|
||||
} else {
|
||||
this.store.addToInOrderGoods(this.good.id, payload);
|
||||
if (this.isRapidInvoice()) {
|
||||
this.onCreateRapidOrder.emit();
|
||||
}
|
||||
}
|
||||
this.close();
|
||||
}
|
||||
@@ -1,13 +1,12 @@
|
||||
<form [formGroup]="form" (submit)="submit()">
|
||||
<app-input [control]="form.controls.unit_price" name="unit_price" label="قیمت پایه" type="price" />
|
||||
<app-input [control]="form.controls.unit_price" name="unit_price" label="مبلغ واحد" type="price" />
|
||||
<app-input
|
||||
[control]="form.controls.quantity"
|
||||
name="quantity"
|
||||
[label]="measureUnit.name"
|
||||
type="number"
|
||||
[suffix]="measureUnit.name"
|
||||
[min]="0"
|
||||
/>
|
||||
[min]="0" />
|
||||
|
||||
<app-amount-percentage-input
|
||||
[percentageControl]="form.controls.discount_percentage"
|
||||
@@ -16,17 +15,15 @@
|
||||
[minAmount]="0"
|
||||
[maxAmount]="baseTotalAmount()"
|
||||
name="discount"
|
||||
label="تخفیف"
|
||||
/>
|
||||
label="تخفیف" />
|
||||
|
||||
<hr />
|
||||
<div class="flex flex-col gap-4 justify-center w-full">
|
||||
<div class="flex w-full flex-col justify-center gap-4">
|
||||
<pos-form-dialog-amount-card-template
|
||||
[totalAmount]="totalAmount()"
|
||||
[baseTotalAmount]="baseTotalAmount()"
|
||||
[discountAmount]="discountAmount()"
|
||||
[taxAmount]="taxAmount()"
|
||||
/>
|
||||
<button pButton class="sm:w-auto w-full" (onClick)="submit()">{{ preparedCTAText() }}</button>
|
||||
[taxAmount]="taxAmount()" />
|
||||
<button pButton class="w-full sm:w-auto" (onClick)="submit()">{{ preparedCTAText() }}</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
@@ -27,6 +27,7 @@ export class PosStandardPayloadFormComponent extends AbstractForm<
|
||||
> {
|
||||
@Input({ required: true }) measureUnit!: ISummary;
|
||||
@Input({ required: true }) vatPercentage!: number;
|
||||
@Input() isRapidInvoice!: boolean;
|
||||
@Output() onChangeTotalAmount = new EventEmitter<number>();
|
||||
|
||||
private readonly initialForm = () => {
|
||||
@@ -60,7 +61,9 @@ export class PosStandardPayloadFormComponent extends AbstractForm<
|
||||
discountAmount = signal<number>(0);
|
||||
taxAmount = signal<number>(0);
|
||||
|
||||
preparedCTAText = computed(() => (this.editMode ? 'اعمال ویرایش' : 'افزودن به لیست خرید'));
|
||||
preparedCTAText = computed(() =>
|
||||
this.editMode ? 'اعمال ویرایش' : this.isRapidInvoice ? 'ثبت و پرداخت' : 'افزودن به لیست خرید'
|
||||
);
|
||||
|
||||
toPriceFormat(amount: number) {
|
||||
if (!amount) {
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
import { ChangeDetectionStrategy, Component, EventEmitter, inject, Output } from '@angular/core';
|
||||
import { Skeleton } from 'primeng/skeleton';
|
||||
import { PosLandingStore } from '../store/main.store';
|
||||
import { PosLandingStore } from '../../store/main.store';
|
||||
|
||||
@Component({
|
||||
selector: 'pos-good-categories',
|
||||
+4
-4
@@ -1,8 +1,8 @@
|
||||
import { Component, inject, Input, signal } from '@angular/core';
|
||||
import { Button } from 'primeng/button';
|
||||
import { finalize, Observable } from 'rxjs';
|
||||
import { PosGoodFavoriteService } from '../services/favorite.service';
|
||||
import { PosLandingStore } from '../store/main.store';
|
||||
import { PosGoodFavoriteService } from '../../services/favorite.service';
|
||||
import { PosLandingStore } from '../../store/main.store';
|
||||
|
||||
@Component({
|
||||
selector: 'pos-good-favorite-cta',
|
||||
@@ -39,14 +39,14 @@ export class FavoriteCTAComponent {
|
||||
private handleFavoriteRequest(
|
||||
request$: Observable<unknown>,
|
||||
goodId: string,
|
||||
isFavorite: boolean,
|
||||
isFavorite: boolean
|
||||
) {
|
||||
this.loading.set(true);
|
||||
request$
|
||||
.pipe(
|
||||
finalize(() => {
|
||||
this.loading.set(false);
|
||||
}),
|
||||
})
|
||||
)
|
||||
.subscribe(() => {
|
||||
this.store.toggleGoodFavorite(goodId, isFavorite);
|
||||
+5
-1
@@ -36,6 +36,10 @@
|
||||
</div>
|
||||
|
||||
@if (showPayloadForm() && selectedGoodToAdd(); as selectedGood) {
|
||||
<pos-payload-form-dialog [(visible)]="showPayloadForm" [good]="selectedGood" (onClose)="onClosePayloadForm()" />
|
||||
<pos-payload-form-dialog
|
||||
[(visible)]="showPayloadForm"
|
||||
[good]="selectedGood"
|
||||
(onClose)="onClosePayloadForm()"
|
||||
(onCreateRapidOrder)="createRapidOrder()" />
|
||||
}
|
||||
</div>
|
||||
+17
-3
@@ -1,15 +1,24 @@
|
||||
import { Maybe } from '@/core';
|
||||
import { IGoodResponse } from '@/domains/pos/models/good.io';
|
||||
import { SearchInputComponent } from '@/shared/components/search/search-input.component';
|
||||
import { ChangeDetectionStrategy, Component, computed, inject, Input, signal } from '@angular/core';
|
||||
import {
|
||||
ChangeDetectionStrategy,
|
||||
Component,
|
||||
computed,
|
||||
EventEmitter,
|
||||
inject,
|
||||
Input,
|
||||
Output,
|
||||
signal,
|
||||
} from '@angular/core';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { Divider } from 'primeng/divider';
|
||||
import { SelectButton } from 'primeng/selectbutton';
|
||||
import { PosLandingStore, TViewType } from '../store/main.store';
|
||||
import { PosLandingStore, TViewType } from '../../store/main.store';
|
||||
import { PayloadFormDialogComponent } from '../payloads';
|
||||
import { PosGoodCategoriesComponent } from './categories.component';
|
||||
import { PosGoodsGridViewComponent } from './grid-view.component';
|
||||
import { PosGoodsListViewComponent } from './list-view.component';
|
||||
import { PayloadFormDialogComponent } from './payloads';
|
||||
|
||||
@Component({
|
||||
selector: 'pos-goods',
|
||||
@@ -28,6 +37,7 @@ import { PayloadFormDialogComponent } from './payloads';
|
||||
})
|
||||
export class PosGoodsComponent {
|
||||
@Input() activeCategory = signal<Maybe<string>>(null);
|
||||
@Output() onCreateRapidOrder = new EventEmitter<void>();
|
||||
|
||||
private readonly store = inject(PosLandingStore);
|
||||
|
||||
@@ -77,4 +87,8 @@ export class PosGoodsComponent {
|
||||
this.showPayloadForm.set(false);
|
||||
this.selectedGoodToAdd.set(null);
|
||||
}
|
||||
|
||||
createRapidOrder() {
|
||||
this.onCreateRapidOrder.emit();
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -12,7 +12,7 @@ import {
|
||||
import { ButtonDirective } from 'primeng/button';
|
||||
import { Skeleton } from 'primeng/skeleton';
|
||||
import images from 'src/assets/images';
|
||||
import { PosLandingStore } from '../store/main.store';
|
||||
import { PosLandingStore } from '../../store/main.store';
|
||||
import { FavoriteCTAComponent } from './favorite-CTA.component';
|
||||
|
||||
@Component({
|
||||
+1
-1
@@ -12,7 +12,7 @@ import {
|
||||
import { ButtonDirective } from 'primeng/button';
|
||||
import { Skeleton } from 'primeng/skeleton';
|
||||
import images from 'src/assets/images';
|
||||
import { PosLandingStore } from '../store/main.store';
|
||||
import { PosLandingStore } from '../../store/main.store';
|
||||
import { FavoriteCTAComponent } from './favorite-CTA.component';
|
||||
|
||||
@Component({
|
||||
@@ -1,13 +1,13 @@
|
||||
@if (loading()) {
|
||||
<shared-page-loading />
|
||||
} @else if (pos()) {
|
||||
<div class="w-full min-h-[calc(100dvh-5.5rem)] md:overflow-hidden">
|
||||
<div class="w-full! h-full flex max-md:flex-col gap-4 pt-0">
|
||||
<div class="grow min-h-[calc(100dvh-5.5rem)] w-full">
|
||||
<pos-goods class="block h-full" />
|
||||
<div class="min-h-[calc(100dvh-5.5rem)] w-full md:overflow-hidden">
|
||||
<div class="flex h-full w-full! gap-4 pt-0 max-md:flex-col">
|
||||
<div class="min-h-[calc(100dvh-5.5rem)] w-full grow">
|
||||
<pos-goods class="block h-full" (onCreateRapidOrder)="createRapidOrder()" />
|
||||
</div>
|
||||
@if (!isMobile()) {
|
||||
<div class="md:shrink-0 h-full md:block hidden p-4 overflow-auto">
|
||||
<div class="hidden h-full overflow-auto p-4 md:block md:shrink-0">
|
||||
<pos-order-section />
|
||||
</div>
|
||||
}
|
||||
@@ -18,9 +18,8 @@
|
||||
<button
|
||||
type="button"
|
||||
pButton
|
||||
class="sticky! bottom-0 inset-x-0 w-full right-0 z-1200 border-t border-surface-border bg-surface-0 px-4 py-3 shadow-[0_-4px_16px_rgba(0,0,0,0.08)] md:hidden! rounded-b-none!"
|
||||
(click)="openInvoiceBottomSheet()"
|
||||
>
|
||||
class="border-surface-border bg-surface-0 sticky! inset-x-0 right-0 bottom-0 z-1200 w-full rounded-b-none! border-t px-4 py-3 shadow-[0_-4px_16px_rgba(0,0,0,0.08)] md:hidden!"
|
||||
(click)="openInvoiceBottomSheet()">
|
||||
<!-- [style.paddingBottom]="'calc(0.75rem + {{env(safe-area-inset-bottom)}})'" -->
|
||||
<div class="mx-auto flex w-full max-w-3xl items-center justify-between">
|
||||
<div class="flex flex-col items-start gap-1">
|
||||
@@ -34,11 +33,15 @@
|
||||
</div>
|
||||
</button>
|
||||
}
|
||||
<shared-light-bottomsheet [(visible)]="showInvoiceBottomSheet" [modal]="true" [closable]="true" header="فاکتور">
|
||||
@if (showInvoiceBottomSheet()) {
|
||||
<pos-order-section (onAddMoreGoods)="closeInvoiceBottomSheet()" (onSuccess)="onSuccessSubmit($event)" />
|
||||
}
|
||||
<shared-light-bottomsheet [(visible)]="showInvoiceBottomSheet" [modal]="true" [closable]="true" header="فاکتور">
|
||||
<pos-order-section (onAddMoreGoods)="closeInvoiceBottomSheet()" (onSubmit)="submitOrder()" />
|
||||
</shared-light-bottomsheet>
|
||||
}
|
||||
|
||||
@if (isVisiblePaymentForm()) {
|
||||
<pos-payment-form-dialog [(visible)]="isVisiblePaymentForm" (onSubmit)="submitPayment($event)" />
|
||||
}
|
||||
|
||||
@if (responseInvoice()) {
|
||||
<pos-order-submitted-dialog [(visible)]="isVisibleSuccessDialog" [invoice]="responseInvoice()!" />
|
||||
|
||||
@@ -7,9 +7,10 @@ import { PageLoadingComponent } from '@/shared/components/page-loading.component
|
||||
import { PriceMaskDirective } from '@/shared/directives';
|
||||
import { ChangeDetectionStrategy, Component, computed, inject, signal } from '@angular/core';
|
||||
import { ButtonDirective } from 'primeng/button';
|
||||
import { PosGoodsComponent } from '../components/goods.component';
|
||||
import { PosOrderSectionComponent } from '../components/order/order-section.component';
|
||||
import { PosOrderSubmittedDialogComponent } from '../components/order/order-submitted-dialog.component';
|
||||
import { PosPaymentFormDialogComponent } from '../components/payment/form-dialog.component';
|
||||
import { PosGoodsComponent } from '../components/views/goods.component';
|
||||
import { IPosOrderResponse } from '../models';
|
||||
import { PosLandingStore } from '../store/main.store';
|
||||
|
||||
@@ -27,21 +28,23 @@ import { PosLandingStore } from '../store/main.store';
|
||||
SharedLightBottomsheetComponent,
|
||||
ButtonDirective,
|
||||
PosOrderSubmittedDialogComponent,
|
||||
PosPaymentFormDialogComponent,
|
||||
],
|
||||
})
|
||||
export class PosShopComponent extends AbstractIsMobileComponent {
|
||||
private readonly infoStore = inject(PosInfoStore);
|
||||
private readonly landingStore = inject(PosLandingStore);
|
||||
|
||||
isVisibleSuccessDialog = signal(false);
|
||||
responseInvoice = signal<Maybe<IPosOrderResponse>>(null);
|
||||
readonly isVisibleSuccessDialog = signal(false);
|
||||
readonly showInvoiceBottomSheet = signal(false);
|
||||
readonly isVisiblePaymentForm = signal(false);
|
||||
readonly responseInvoice = signal<Maybe<IPosOrderResponse>>(null);
|
||||
|
||||
readonly loading = computed(() => this.infoStore.loading());
|
||||
readonly pos = computed(() => this.infoStore.entity());
|
||||
readonly error = computed(() => this.infoStore.error());
|
||||
readonly inOrderGoods = computed(() => this.landingStore.inOrderGoods());
|
||||
readonly priceInfo = computed(() => this.landingStore.orderPricingInfo());
|
||||
readonly showInvoiceBottomSheet = signal(false);
|
||||
|
||||
// getData() {
|
||||
// this.infoStore.getData().subscribe();
|
||||
@@ -55,7 +58,15 @@ export class PosShopComponent extends AbstractIsMobileComponent {
|
||||
this.showInvoiceBottomSheet.set(false);
|
||||
}
|
||||
|
||||
onSuccessSubmit(invoice: IPosOrderResponse) {
|
||||
createRapidOrder() {
|
||||
this.isVisiblePaymentForm.set(true);
|
||||
}
|
||||
|
||||
submitOrder() {
|
||||
this.isVisiblePaymentForm.set(true);
|
||||
}
|
||||
|
||||
submitPayment(invoice: IPosOrderResponse) {
|
||||
this.closeInvoiceBottomSheet();
|
||||
this.responseInvoice.set(invoice);
|
||||
this.isVisibleSuccessDialog.set(true);
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<div
|
||||
class="text-surface-700 relative flex flex-col gap-4 overflow-hidden rounded-2xl border px-4 py-4 pe-2"
|
||||
class="text-surface-700 relative flex flex-col gap-4 overflow-hidden rounded-lg border px-4 py-4 pe-2"
|
||||
[style.backgroundColor]="preparedInfo().bgColor"
|
||||
[style.borderColor]="preparedInfo().borderColor"
|
||||
(click)="showDetails()">
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<section class="light-bottomsheet-panel" [ngStyle]="style || { 'max-height': mobileDrawerHeight, height: 'auto' }">
|
||||
<div class="light-bottomsheet-content">
|
||||
@if (header || closable) {
|
||||
<header class="light-bottomsheet-header">
|
||||
<header class="light-bottomsheet-header border-surface-border border-b">
|
||||
<span class="text-xl font-bold">{{ header }}</span>
|
||||
@if (closable) {
|
||||
<p-button
|
||||
@@ -13,8 +13,7 @@
|
||||
size="small"
|
||||
class="light-bottomsheet-close"
|
||||
(click)="onVisibilityChange(false)"
|
||||
aria-label="Close"
|
||||
>
|
||||
aria-label="Close">
|
||||
</p-button>
|
||||
}
|
||||
</header>
|
||||
|
||||
@@ -4,10 +4,17 @@ import { InputComponent } from '../input/input.component';
|
||||
|
||||
@Component({
|
||||
selector: 'field-unit-price',
|
||||
template: `<app-input label="قیمت پایه" [control]="control" [name]="name" type="price" />`,
|
||||
template: `<app-input
|
||||
label="مبلغ واحد"
|
||||
[control]="control"
|
||||
[name]="name"
|
||||
[hint]="hint"
|
||||
type="price"
|
||||
/>`,
|
||||
imports: [ReactiveFormsModule, InputComponent],
|
||||
})
|
||||
export class UnitPriceComponent {
|
||||
@Input({ required: true }) control = new FormControl<string>('');
|
||||
@Input() name = 'unit_price';
|
||||
@Input() hint = '';
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
@if (backRoute) {
|
||||
<p-button icon="pi pi-arrow-right" aria-label="بازگشت" outlined size="small" [routerLink]="backRoute" />
|
||||
}
|
||||
<span class="text-xl font-bold">{{ pageTitle }}</span>
|
||||
<h5 class="py-1.5 font-bold">{{ pageTitle }}</h5>
|
||||
</div>
|
||||
</div>
|
||||
@if (actions) {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<uikit-field [label]="label" [name]="name" [control]="control" [showLabel]="!!label" [showErrors]="showErrors">
|
||||
@if (labelSuffix) {
|
||||
<ng-template #labelView>
|
||||
<div class="flex gap-1 items-center">
|
||||
<div class="flex items-center gap-1">
|
||||
<uikit-label [name]="name">
|
||||
@if (labelTextView) {
|
||||
<ng-container [ngTemplateOutlet]="labelTextView"></ng-container>
|
||||
@@ -13,12 +13,12 @@
|
||||
</div>
|
||||
</ng-template>
|
||||
}
|
||||
@if (type === "switch") {
|
||||
@if (type === 'switch') {
|
||||
<p-toggleSwitch [attr.disabled]="disabled" [formControl]="control" />
|
||||
} @else {
|
||||
<p-inputgroup>
|
||||
<!-- [minlength]="minlength || null" -->
|
||||
@if (type === "price") {
|
||||
@if (type === 'price') {
|
||||
<p-inputnumber
|
||||
[attr.id]="name"
|
||||
[formControl]="control"
|
||||
@@ -32,8 +32,7 @@
|
||||
[required]="isRequired"
|
||||
[invalid]="control.invalid && (control.touched || control.dirty)"
|
||||
(onInput)="onPriceInput($event)"
|
||||
(onBlur)="blur.emit()"
|
||||
/>
|
||||
(onBlur)="blur.emit()" />
|
||||
<!-- (input)="onInput($event)" -->
|
||||
} @else {
|
||||
<input
|
||||
@@ -58,8 +57,7 @@
|
||||
[required]="isRequired"
|
||||
[invalid]="control.invalid && (control.touched || control.dirty)"
|
||||
(onBlur)="blur.emit()"
|
||||
(input)="onInput($event)"
|
||||
/>
|
||||
(input)="onInput($event)" />
|
||||
}
|
||||
@if (suffixTemp) {
|
||||
<ng-container [ngTemplateOutlet]="suffixTemp" />
|
||||
@@ -69,6 +67,6 @@
|
||||
</p-inputgroup>
|
||||
}
|
||||
@if (hint) {
|
||||
<small [attr.id]="name + '-help'">{{ hint }}</small>
|
||||
<small [attr.id]="name + '-help'" class="text-muted-color">{{ hint }}</small>
|
||||
}
|
||||
</uikit-field>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<div class="flex items-center gap-2 overflow-hidden rounded-xl border border-slate-200 bg-white p-2">
|
||||
<div class="border-surface-border bg-surface-card flex items-center gap-2 overflow-hidden rounded-lg border p-2">
|
||||
<p-button icon="pi pi-chevron-right" size="small" text class="shrink-0" (onClick)="prevSeason()" />
|
||||
<div class="flex flex-1 cursor-pointer justify-center" (click)="openPicker()">
|
||||
<span class="text-base font-semibold">{{ currentSeason() }}</span>
|
||||
|
||||
@@ -5,6 +5,7 @@ export enum LOCAL_STORAGE_KEYS {
|
||||
LAST_LOGIN_TIME = 'lastLoginTime',
|
||||
LOGIN_ATTEMPTS = 'loginAttempts',
|
||||
POS_CONFIG_RAPID_INVOICE = 'posConfigRapidInvoice',
|
||||
POS_CONFIG_SEND_TO_FISCAL_ACTIVATION = 'posConfigSendToFiscalActivation',
|
||||
POS_CONFIG_PRINT = 'posConfigPrint',
|
||||
POS_CONFIG_GOLD_PRICE = 'posConfigGoldPrice',
|
||||
}
|
||||
|
||||
+13
-3
@@ -15,17 +15,27 @@ form,
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
body.tenant-tis .p-drawer {
|
||||
body.application-pos .p-drawer {
|
||||
will-change: transform;
|
||||
transform: translateZ(0);
|
||||
backface-visibility: hidden;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
body.tenant-tis .p-drawer-mask {
|
||||
body.application-pos .p-drawer-mask {
|
||||
will-change: opacity;
|
||||
}
|
||||
|
||||
body.tenant-tis .p-drawer .p-drawer-content {
|
||||
body.application-pos .p-drawer .p-drawer-content {
|
||||
-webkit-overflow-scrolling: touch;
|
||||
overscroll-behavior: contain;
|
||||
}
|
||||
|
||||
body.application-pos .p-card {
|
||||
box-shadow: none !important;
|
||||
border: 1px solid var(--surface-border) !important;
|
||||
}
|
||||
|
||||
body.application-pos .p-select {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
+1
-1
@@ -32,7 +32,7 @@ if (themeMeta) {
|
||||
}
|
||||
|
||||
if (config.isPosApplication) {
|
||||
document.body.classList.add('tenant-tis');
|
||||
document.body.classList.add('application-pos');
|
||||
}
|
||||
|
||||
bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));
|
||||
|
||||
Reference in New Issue
Block a user