|
@@ -6,10 +6,13 @@ import { LoginPage } from '../pages/login/login';
|
|
import { HallPage } from '../pages/hall/hall';
|
|
import { HallPage } from '../pages/hall/hall';
|
|
import { HomePage } from '../pages/home/home';
|
|
import { HomePage } from '../pages/home/home';
|
|
|
|
|
|
|
|
+import { OdooListHeader } from "../components/odoo-list-header/odoo-list-header";
|
|
|
|
+
|
|
import { CustomerListPage } from '../pages/customer-list/customer-list';
|
|
import { CustomerListPage } from '../pages/customer-list/customer-list';
|
|
import { CustomerOptions } from "../pages/customer-list/customer-options";
|
|
import { CustomerOptions } from "../pages/customer-list/customer-options";
|
|
import { CustomerDetailsPage } from "../pages/customer-details/customer-details";
|
|
import { CustomerDetailsPage } from "../pages/customer-details/customer-details";
|
|
import { BudgetListPage } from '../pages/budget-list/budget-list';
|
|
import { BudgetListPage } from '../pages/budget-list/budget-list';
|
|
|
|
+import { BudgetDetailsPage } from "../pages/budget-details/budget-details";
|
|
import { ProductListPage } from '../pages/product-list/product-list';
|
|
import { ProductListPage } from '../pages/product-list/product-list';
|
|
import { ProductOptions } from '../pages/product-list/product-options';
|
|
import { ProductOptions } from '../pages/product-list/product-options';
|
|
import { ProductDetailsPage } from '../pages/product-details/product-details';
|
|
import { ProductDetailsPage } from '../pages/product-details/product-details';
|
|
@@ -46,6 +49,7 @@ import { DoubleTapDirective } from "../directives/double-tap-directive";
|
|
@NgModule({
|
|
@NgModule({
|
|
declarations: [
|
|
declarations: [
|
|
OdooMobileApp,
|
|
OdooMobileApp,
|
|
|
|
+ // Pages
|
|
LoginPage,
|
|
LoginPage,
|
|
HallPage,
|
|
HallPage,
|
|
HomePage,
|
|
HomePage,
|
|
@@ -53,6 +57,7 @@ import { DoubleTapDirective } from "../directives/double-tap-directive";
|
|
CustomerOptions,
|
|
CustomerOptions,
|
|
CustomerDetailsPage,
|
|
CustomerDetailsPage,
|
|
BudgetListPage,
|
|
BudgetListPage,
|
|
|
|
+ BudgetDetailsPage,
|
|
ProductListPage,
|
|
ProductListPage,
|
|
ProductOptions,
|
|
ProductOptions,
|
|
ProductDetailsPage,
|
|
ProductDetailsPage,
|
|
@@ -64,11 +69,15 @@ import { DoubleTapDirective } from "../directives/double-tap-directive";
|
|
ToolsPage,
|
|
ToolsPage,
|
|
SettingsPage,
|
|
SettingsPage,
|
|
AboutPage,
|
|
AboutPage,
|
|
|
|
+ // Pipes
|
|
ViewMenuPipe,
|
|
ViewMenuPipe,
|
|
ImageSanitizerPipe,
|
|
ImageSanitizerPipe,
|
|
ProductAttributeLinePipe,
|
|
ProductAttributeLinePipe,
|
|
ProductAttributeValuePipe,
|
|
ProductAttributeValuePipe,
|
|
- DoubleTapDirective
|
|
|
|
|
|
+ // Directives
|
|
|
|
+ DoubleTapDirective,
|
|
|
|
+ // Components
|
|
|
|
+ OdooListHeader
|
|
],
|
|
],
|
|
imports: [
|
|
imports: [
|
|
IonicModule.forRoot(OdooMobileApp),
|
|
IonicModule.forRoot(OdooMobileApp),
|
|
@@ -77,6 +86,7 @@ import { DoubleTapDirective } from "../directives/double-tap-directive";
|
|
bootstrap: [IonicApp],
|
|
bootstrap: [IonicApp],
|
|
entryComponents: [
|
|
entryComponents: [
|
|
OdooMobileApp,
|
|
OdooMobileApp,
|
|
|
|
+ // Pages
|
|
LoginPage,
|
|
LoginPage,
|
|
HallPage,
|
|
HallPage,
|
|
HomePage,
|
|
HomePage,
|
|
@@ -84,6 +94,7 @@ import { DoubleTapDirective } from "../directives/double-tap-directive";
|
|
CustomerOptions,
|
|
CustomerOptions,
|
|
CustomerDetailsPage,
|
|
CustomerDetailsPage,
|
|
BudgetListPage,
|
|
BudgetListPage,
|
|
|
|
+ BudgetDetailsPage,
|
|
ProductListPage,
|
|
ProductListPage,
|
|
ProductOptions,
|
|
ProductOptions,
|
|
ProductDetailsPage,
|
|
ProductDetailsPage,
|