This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import { posAuthNamedRoutes } from '@/domains/pos/modules/auth/constants';
|
||||
import { POS_ROUTES } from '@/domains/pos/routes';
|
||||
import { PUBLIC_SALE_INVOICES_ROUTES } from '@/modules/saleInvoices/constants';
|
||||
import { Notfound } from '@/pages/notfound/notfound.component';
|
||||
import { Routes } from '@angular/router';
|
||||
|
||||
export const appRoutes: Routes = [
|
||||
{
|
||||
path: '',
|
||||
loadComponent: () =>
|
||||
import('@/domains/pos/layouts/layout.component').then((m) => m.PosLayoutComponent),
|
||||
children: [POS_ROUTES],
|
||||
},
|
||||
{
|
||||
...posAuthNamedRoutes.login,
|
||||
path: 'auth',
|
||||
},
|
||||
...PUBLIC_SALE_INVOICES_ROUTES,
|
||||
{ path: '**', component: Notfound },
|
||||
];
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 83 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 70 KiB |
@@ -0,0 +1,27 @@
|
||||
import { BrandingConfig } from '../default/branding.config';
|
||||
|
||||
export const brandingConfig: BrandingConfig = {
|
||||
appTitle: 'پرداحت نوین - مدیریت صورتحسابهای مالیاتی',
|
||||
manifestPath: '/favicon/site.webmanifest',
|
||||
themeColor: '#ffffff',
|
||||
enableInstallPrompt: true,
|
||||
title: 'پرداحت نوین',
|
||||
fullTitle: 'پرداحت نوین - مدیریت صورتحسابهای مالیاتی',
|
||||
support: {
|
||||
phones: [
|
||||
{
|
||||
title: 'واحد پشتیبانی 1',
|
||||
phones: ['021-91012345'],
|
||||
},
|
||||
{
|
||||
title: 'واحد پشتیبانی 2',
|
||||
phones: ['021-91012346'],
|
||||
},
|
||||
{
|
||||
title: 'پاسخگویی اضطراری',
|
||||
phones: ['0912-123-4567'],
|
||||
},
|
||||
],
|
||||
workingHours: 'شنبه تا چهارشنبه: 8 صبح تا 5 عصر، پنجشنبه: 8 صبح تا 2 عصر',
|
||||
},
|
||||
};
|
||||
@@ -0,0 +1,7 @@
|
||||
import login from 'src/tenants/novin/assets/images/login.jpg';
|
||||
import logo from 'src/tenants/novin/assets/images/logo.png';
|
||||
|
||||
export default {
|
||||
logo,
|
||||
login,
|
||||
};
|
||||
@@ -0,0 +1,3 @@
|
||||
export default {
|
||||
isPosApplication: true,
|
||||
};
|
||||
Reference in New Issue
Block a user