techlify-inventory-common 18.41.1 → 18.41.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. package/esm2022/lib/inventory-common/stock-issue/stock-issue-list/stock-issue-list.component.mjs +3 -1
  2. package/esm2022/lib/inventory-common/stock-issue/stock-issue-products-list/stock-issue-products-list.component.mjs +3 -1
  3. package/fesm2022/{techlify-inventory-common-category.module-CPSauMD7.mjs → techlify-inventory-common-category.module-DlISogvh.mjs} +2 -2
  4. package/fesm2022/{techlify-inventory-common-category.module-CPSauMD7.mjs.map → techlify-inventory-common-category.module-DlISogvh.mjs.map} +1 -1
  5. package/fesm2022/{techlify-inventory-common-measure.module-B1LhDfAX.mjs → techlify-inventory-common-measure.module-DFAzOs0e.mjs} +2 -2
  6. package/fesm2022/{techlify-inventory-common-measure.module-B1LhDfAX.mjs.map → techlify-inventory-common-measure.module-DFAzOs0e.mjs.map} +1 -1
  7. package/fesm2022/{techlify-inventory-common-purchase-order-view.component-wFY-HGEQ.mjs → techlify-inventory-common-purchase-order-view.component-DD03J7x-.mjs} +2 -2
  8. package/fesm2022/{techlify-inventory-common-purchase-order-view.component-wFY-HGEQ.mjs.map → techlify-inventory-common-purchase-order-view.component-DD03J7x-.mjs.map} +1 -1
  9. package/fesm2022/{techlify-inventory-common-stock-issue-form.component-CQToN3ZS.mjs → techlify-inventory-common-stock-issue-form.component-BJ8GJhQi.mjs} +2 -2
  10. package/fesm2022/{techlify-inventory-common-stock-issue-form.component-CQToN3ZS.mjs.map → techlify-inventory-common-stock-issue-form.component-BJ8GJhQi.mjs.map} +1 -1
  11. package/fesm2022/{techlify-inventory-common-stock-issue-view.component-BsyVvElE.mjs → techlify-inventory-common-stock-issue-view.component-Q_Vk36E_.mjs} +2 -2
  12. package/fesm2022/{techlify-inventory-common-stock-issue-view.component-BsyVvElE.mjs.map → techlify-inventory-common-stock-issue-view.component-Q_Vk36E_.mjs.map} +1 -1
  13. package/fesm2022/{techlify-inventory-common-techlify-inventory-common-CaJu6h21.mjs → techlify-inventory-common-techlify-inventory-common-DLCEKlO0.mjs} +11 -7
  14. package/fesm2022/techlify-inventory-common-techlify-inventory-common-DLCEKlO0.mjs.map +1 -0
  15. package/fesm2022/techlify-inventory-common.mjs +1 -1
  16. package/package.json +1 -1
  17. package/fesm2022/techlify-inventory-common-techlify-inventory-common-CaJu6h21.mjs.map +0 -1
@@ -2015,6 +2015,8 @@ let StockIssueProductListComponent = class StockIssueProductListComponent extend
2015
2015
  let filters = this.filterForm.value;
2016
2016
  filters.date_from = this.datePipe.transform(filters.date_from, 'yyyy-mm-dd') ?? '';
2017
2017
  filters.date_to = this.datePipe.transform(filters.date_to, 'yyyy-mm-dd') ?? '';
2018
+ filters.page = this.page;
2019
+ filters.perPage = this.perPage;
2018
2020
  if (this.issuableData()) {
2019
2021
  filters.issuable_ids = this.issuableData()?.issuable_id;
2020
2022
  filters.issuable_type = this.issuableData()?.issuable_type;
@@ -3745,6 +3747,8 @@ let StockIssueListComponent = class StockIssueListComponent extends TechlifyList
3745
3747
  }
3746
3748
  loadData() {
3747
3749
  let filters = this.filterForm.value;
3750
+ filters.page = this.page;
3751
+ filters.perPage = this.perPage;
3748
3752
  if (this.issuableData()) {
3749
3753
  filters.issuable_ids = this.issuableData()?.issuable_id;
3750
3754
  filters.issuable_type = this.issuableData()?.issuable_type;
@@ -4441,7 +4445,7 @@ const routes$6 = [
4441
4445
  },
4442
4446
  {
4443
4447
  path: "measures",
4444
- loadChildren: () => import('./techlify-inventory-common-measure.module-B1LhDfAX.mjs').then((mod) => mod.MeasureModule),
4448
+ loadChildren: () => import('./techlify-inventory-common-measure.module-DFAzOs0e.mjs').then((mod) => mod.MeasureModule),
4445
4449
  },
4446
4450
  {
4447
4451
  path: 'stock-issues',
@@ -4453,7 +4457,7 @@ const routes$6 = [
4453
4457
  },
4454
4458
  {
4455
4459
  path: 'categories',
4456
- loadChildren: () => import('./techlify-inventory-common-category.module-CPSauMD7.mjs').then((mod) => mod.CategoryModule),
4460
+ loadChildren: () => import('./techlify-inventory-common-category.module-DlISogvh.mjs').then((mod) => mod.CategoryModule),
4457
4461
  },
4458
4462
  {
4459
4463
  path: 'products',
@@ -4770,17 +4774,17 @@ const routes$5 = [
4770
4774
  },
4771
4775
  {
4772
4776
  path: 'form',
4773
- loadComponent: () => import('./techlify-inventory-common-stock-issue-form.component-CQToN3ZS.mjs').then(m => m.StockIssueFormComponent),
4777
+ loadComponent: () => import('./techlify-inventory-common-stock-issue-form.component-BJ8GJhQi.mjs').then(m => m.StockIssueFormComponent),
4774
4778
  canLoad: [AuthenticationGuard]
4775
4779
  },
4776
4780
  {
4777
4781
  path: 'form/:id',
4778
- loadComponent: () => import('./techlify-inventory-common-stock-issue-form.component-CQToN3ZS.mjs').then(m => m.StockIssueFormComponent),
4782
+ loadComponent: () => import('./techlify-inventory-common-stock-issue-form.component-BJ8GJhQi.mjs').then(m => m.StockIssueFormComponent),
4779
4783
  canLoad: [AuthenticationGuard]
4780
4784
  },
4781
4785
  {
4782
4786
  path: ':id/view',
4783
- loadComponent: () => import('./techlify-inventory-common-stock-issue-view.component-BsyVvElE.mjs').then(m => m.StockIssueViewComponent),
4787
+ loadComponent: () => import('./techlify-inventory-common-stock-issue-view.component-Q_Vk36E_.mjs').then(m => m.StockIssueViewComponent),
4784
4788
  canLoad: [AuthenticationGuard]
4785
4789
  }
4786
4790
  ];
@@ -6085,7 +6089,7 @@ const routes$4 = [
6085
6089
  },
6086
6090
  {
6087
6091
  path: 'purchase-orders/:id/view',
6088
- loadComponent: () => import('./techlify-inventory-common-purchase-order-view.component-wFY-HGEQ.mjs').then(m => m.PurchaseOrderViewComponent)
6092
+ loadComponent: () => import('./techlify-inventory-common-purchase-order-view.component-DD03J7x-.mjs').then(m => m.PurchaseOrderViewComponent)
6089
6093
  }
6090
6094
  ],
6091
6095
  },
@@ -6958,4 +6962,4 @@ var shelf_module = /*#__PURE__*/Object.freeze({
6958
6962
  */
6959
6963
 
6960
6964
  export { IncidentListComponent as $, StockIssueProductFormButtonComponent as A, StockReceiptsModule as B, StockReceiptPageComponent as C, StockReceiptListComponent as D, StockReceiptProductsListComponent as E, StockReceiptSingleProductFormComponent as F, StockReceiptViewComponent as G, StockReceiptProductFormComponent as H, InventoryCommonRoutingModule as I, StockReceiptProductFormButtonComponent as J, StockTransferListComponent as K, LocationService as L, MeasureService as M, StockTransferFormComponent as N, StockTransferService as O, PurchaseOrderService as P, SupplierModule as Q, SupplierFormButtonComponent as R, StockIssueService as S, TechlifyFilterComponent as T, SupplierFormComponent as U, SuppliersListComponent as V, SupplierTypeService as W, PayeeSelectorModule as X, PayeeSelectorComponent as Y, IncidentModule as Z, IncidentService as _, TechlifyFilterModule as a, IncidentFormComponent as a0, IncidentFormButtonComponent as a1, RatingModule as a2, RatingService as a3, RatingListComponent as a4, RatingFormComponent as a5, RatingFormButtonComponent as a6, ExportToExcelButtonComponent as a7, LocationModule as a8, LocationListComponent as a9, LocationFormComponent as aa, LocationFormButtonComponent as ab, ShelfModule as ac, ShelfService as ad, ShelfListComponent as ae, ShelfFormComponent as af, ShelfFormButtonComponent as ag, MaterialModule as b, LocationSelectorComponent as c, InventoryCommonModule as d, StockSummaryService as e, ProductModule as f, ProductFormComponent as g, ProductBasicInfoComponent as h, ProductFormButtonComponent as i, ProductQuickSearchComponent as j, ProductSearchModule as k, ProductSearchComponent as l, ProductListComponent as m, ProductService as n, ProductFormService as o, ProductBatchUpdateFormComponent as p, ProductImportPageComponent as q, ProductViewPageComponent as r, StockIssueModule as s, StockIssuePageComponent as t, StockIssuePageModule as u, StockIssueSingleProductFormComponent as v, StockIssueListComponent as w, StockIssueProductListComponent as x, StockIssueProductService as y, StockIssueProductFormComponent as z };
6961
- //# sourceMappingURL=techlify-inventory-common-techlify-inventory-common-CaJu6h21.mjs.map
6965
+ //# sourceMappingURL=techlify-inventory-common-techlify-inventory-common-DLCEKlO0.mjs.map