Commit 8d266004 authored by RAHUL RATHORE's avatar RAHUL RATHORE
Browse files

fix: build issue for "merchant-tablet-ionic"

parent b7d99b2c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ import { ILocaleMember } from '@modules/server.common/interfaces/ILocale';
})
export class OrderDeliveredComponent {
	@Input()
	getWarehouseStatus: () => void;
	getWarehouseStatus: (status: string) => void;

	@Input()
	order: Order;
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ import { ILocaleMember } from '@modules/server.common/interfaces/ILocale';
})
export class OrderDeliveryProblemComponent {
	@Input()
	getWarehouseStatus: () => void;
	getWarehouseStatus: (status: any) => void;

	@Input()
	order: Order;
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ import { ILocaleMember } from '@modules/server.common/interfaces/ILocale';
})
export class OrderWarehousePreparationProblemComponent {
	@Input()
	getWarehouseStatus: () => void;
	getWarehouseStatus: (status: any) => void;

	@Input()
	order: Order;
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ import { ProductLocalesService } from '@modules/client.common.angular2/locale/pr
})
export class OrderWithCarrierComponent {
	@Input()
	getWarehouseStatus: () => void;
	getWarehouseStatus: (status: any) => void;

	@Input()
	order: Order;
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ import { ProductLocalesService } from '@modules/client.common.angular2/locale/pr
})
export class OrderWithoutCarrierComponent {
	@Input()
	getWarehouseStatus: () => void;
	getWarehouseStatus: (status: any) => void;

	@Input()
	order: Order;
Loading