feat: Enhance customer and inventory components with new features and improvements

This commit is contained in:
2025-12-15 18:00:45 +03:30
parent 17fa65407c
commit 108d192f88
24 changed files with 207 additions and 78 deletions
@@ -6,6 +6,7 @@ import { POS_API_ROUTES } from '../constants';
import {
IPosInfoRawResponse,
IPosInfoResponse,
IPosOrderRequest,
IPosProductCategoriesRawResponse,
IPosProductCategoriesResponse,
IPosStockRawResponse,
@@ -31,4 +32,8 @@ export class PosService {
this.apiRoutes.productCategories(),
);
}
submitOrder(payload: IPosOrderRequest): Observable<any> {
return this.http.post<any>(this.apiRoutes.submitOrder(), payload);
}
}