@hitsoft/kadooglu-keops 0.0.2 → 0.0.4

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 (306) hide show
  1. package/config/enums/route-names.d.ts +16 -1
  2. package/esm2020/config/enums/route-names.mjs +1 -1
  3. package/esm2020/config/providers/route.provider.mjs +141 -4
  4. package/esm2020/lib/features/bl-tracking/components/bl-tracking-form.component.mjs +82 -0
  5. package/esm2020/lib/features/bl-tracking/components/bl-tracking.component.mjs +65 -0
  6. package/esm2020/lib/features/bl-tracking/hit-bl-tracking-routing.module.mjs +29 -0
  7. package/esm2020/lib/features/bl-tracking/hit-bl-tracking.module.mjs +58 -0
  8. package/esm2020/lib/features/carriers/components/carrier-form.component.mjs +78 -0
  9. package/esm2020/lib/features/carriers/components/carriers.component.mjs +66 -0
  10. package/esm2020/lib/features/carriers/hit-carriers-routing.module.mjs +29 -0
  11. package/esm2020/lib/features/carriers/hit-carriers.module.mjs +58 -0
  12. package/esm2020/lib/features/container-loading-counts/components/container-loading-counts.component.mjs +2 -2
  13. package/esm2020/lib/features/container-pallet-capacities/components/container-pallet-capacities.component.mjs +6 -5
  14. package/esm2020/lib/features/cost-calculation/components/cost-calculation-inputs.component.mjs +16 -12
  15. package/esm2020/lib/features/cost-calculation/components/cost-calculation-results.component.mjs +3 -3
  16. package/esm2020/lib/features/cost-calculation/components/cost-calculation.component.mjs +90 -39
  17. package/esm2020/lib/features/cost-calculation/engine/currency.utils.mjs +10 -10
  18. package/esm2020/lib/features/cost-calculation/engine/formulas.mjs +10 -10
  19. package/esm2020/lib/features/cost-calculation/engine/item-resolver.mjs +16 -16
  20. package/esm2020/lib/features/cost-calculation/engine/stage-builder.mjs +11 -10
  21. package/esm2020/lib/features/cost-calculation/hit-cost-calculation.module.mjs +7 -3
  22. package/esm2020/lib/features/cost-parameter-categories/components/cost-parameter-categories.component.mjs +3 -7
  23. package/esm2020/lib/features/cost-parameter-categories/components/cost-parameter-category-form.component.mjs +4 -14
  24. package/esm2020/lib/features/cost-parameters/components/cost-parameter-form.component.mjs +22 -39
  25. package/esm2020/lib/features/cost-parameters/components/cost-parameters.component.mjs +19 -15
  26. package/esm2020/lib/features/destination-ports/components/destination-port-form.component.mjs +86 -0
  27. package/esm2020/lib/features/destination-ports/components/destination-ports.component.mjs +74 -0
  28. package/esm2020/lib/features/destination-ports/hit-destination-ports-routing.module.mjs +29 -0
  29. package/esm2020/lib/features/destination-ports/hit-destination-ports.module.mjs +58 -0
  30. package/esm2020/lib/features/fob-inland-definitions/components/fob-inland-definition-form.component.mjs +80 -0
  31. package/esm2020/lib/features/fob-inland-definitions/components/fob-inland-definitions.component.mjs +65 -0
  32. package/esm2020/lib/features/fob-inland-definitions/hit-fob-inland-definitions-routing.module.mjs +29 -0
  33. package/esm2020/lib/features/fob-inland-definitions/hit-fob-inland-definitions.module.mjs +58 -0
  34. package/esm2020/lib/features/freight-offers/components/freight-offer-copy.component.mjs +67 -0
  35. package/esm2020/lib/features/freight-offers/components/freight-offer-form.component.mjs +181 -0
  36. package/esm2020/lib/features/freight-offers/components/freight-offers.component.mjs +159 -0
  37. package/esm2020/lib/features/freight-offers/hit-freight-offers-routing.module.mjs +29 -0
  38. package/esm2020/lib/features/freight-offers/hit-freight-offers.module.mjs +62 -0
  39. package/esm2020/lib/features/incoterms/components/incoterm-form.component.mjs +81 -0
  40. package/esm2020/lib/features/incoterms/components/incoterms.component.mjs +65 -0
  41. package/esm2020/lib/features/incoterms/hit-incoterms-routing.module.mjs +29 -0
  42. package/esm2020/lib/features/incoterms/hit-incoterms.module.mjs +58 -0
  43. package/esm2020/lib/features/index.mjs +29 -1
  44. package/esm2020/lib/features/item-classifications/components/item-classifications.component.mjs +199 -0
  45. package/esm2020/lib/features/item-classifications/hit-item-classifications-routing.module.mjs +29 -0
  46. package/esm2020/lib/features/item-classifications/hit-item-classifications.module.mjs +60 -0
  47. package/esm2020/lib/features/item-package-groups/components/item-package-group-form.component.mjs +78 -0
  48. package/esm2020/lib/features/item-package-groups/components/item-package-groups.component.mjs +69 -0
  49. package/esm2020/lib/features/item-package-groups/hit-item-package-groups-routing.module.mjs +29 -0
  50. package/esm2020/lib/features/item-package-groups/hit-item-package-groups.module.mjs +58 -0
  51. package/esm2020/lib/features/item-package-types/components/item-package-type-form.component.mjs +78 -0
  52. package/esm2020/lib/features/item-package-types/components/item-package-types.component.mjs +69 -0
  53. package/esm2020/lib/features/item-package-types/hit-item-package-types-routing.module.mjs +29 -0
  54. package/esm2020/lib/features/item-package-types/hit-item-package-types.module.mjs +58 -0
  55. package/esm2020/lib/features/item-product-types/components/item-product-type-form.component.mjs +78 -0
  56. package/esm2020/lib/features/item-product-types/components/item-product-types.component.mjs +69 -0
  57. package/esm2020/lib/features/item-product-types/hit-item-product-types-routing.module.mjs +29 -0
  58. package/esm2020/lib/features/item-product-types/hit-item-product-types.module.mjs +58 -0
  59. package/esm2020/lib/features/lines/components/line-form.component.mjs +78 -0
  60. package/esm2020/lib/features/lines/components/lines.component.mjs +66 -0
  61. package/esm2020/lib/features/lines/hit-lines-routing.module.mjs +29 -0
  62. package/esm2020/lib/features/lines/hit-lines.module.mjs +58 -0
  63. package/esm2020/lib/features/packaging-prices/components/packaging-price-form.component.mjs +4 -9
  64. package/esm2020/lib/features/packaging-prices/packaging-price-calculator.mjs +1 -1
  65. package/esm2020/lib/features/pos/components/pos-form.component.mjs +77 -0
  66. package/esm2020/lib/features/pos/components/pos.component.mjs +65 -0
  67. package/esm2020/lib/features/pos/hit-pos-routing.module.mjs +29 -0
  68. package/esm2020/lib/features/pos/hit-pos.module.mjs +58 -0
  69. package/esm2020/lib/features/price-parameter-types/components/price-parameter-types.component.mjs +3 -3
  70. package/esm2020/lib/features/price-parameters/components/price-parameter-form-cost-items.component.mjs +32 -0
  71. package/esm2020/lib/features/price-parameters/components/price-parameter-form-discount-rates-modal.component.mjs +52 -0
  72. package/esm2020/lib/features/price-parameters/components/price-parameter-form-discount-rates.component.mjs +84 -0
  73. package/esm2020/lib/features/price-parameters/components/price-parameter-form-items.component.mjs +43 -0
  74. package/esm2020/lib/features/price-parameters/components/price-parameter-form-price-lists.component.mjs +42 -0
  75. package/esm2020/lib/features/price-parameters/components/price-parameter-form.component.mjs +320 -0
  76. package/esm2020/lib/features/price-parameters/components/price-parameter-price-update-preview-modal.component.mjs +26 -0
  77. package/esm2020/lib/features/price-parameters/components/price-parameters.component.mjs +85 -0
  78. package/esm2020/lib/features/price-parameters/hit-price-parameters-routing.module.mjs +46 -0
  79. package/esm2020/lib/features/price-parameters/hit-price-parameters.module.mjs +96 -0
  80. package/esm2020/lib/features/price-parameters/price-parameter-cost-match.service.mjs +21 -0
  81. package/esm2020/lib/features/price-parameters/price-parameter-form-data.service.mjs +49 -0
  82. package/esm2020/lib/features/price-parameters/price-parameter-l10n-helper.mjs +7 -0
  83. package/esm2020/lib/features/price-parameters/price-parameter-lookups.service.mjs +27 -0
  84. package/esm2020/lib/features/price-parameters/price-parameter-price-update.service.mjs +119 -0
  85. package/esm2020/lib/features/settings/components/cost-settings.component.mjs +8 -4
  86. package/esm2020/lib/kadooglu-keops-routing.module.mjs +27 -1
  87. package/esm2020/lib/shared/amount-currency-input/amount-currency-input.component.mjs +68 -0
  88. package/esm2020/lib/shared/cost-item-classification.utils.mjs +15 -0
  89. package/esm2020/lib/shared/cost-item-rows.builder.mjs +40 -0
  90. package/esm2020/lib/shared/pipes/resolve-code-name.pipe.mjs +16 -0
  91. package/esm2020/lib/shared/shared-ui.module.mjs +20 -0
  92. package/esm2020/lib/utils/business-region.utils.mjs +12 -0
  93. package/esm2020/lib/utils/currency.utils.mjs +5 -1
  94. package/esm2020/lib/utils/exchange-rate.utils.mjs +12 -0
  95. package/esm2020/proxy/bl-tracking/dtos/index.mjs +2 -0
  96. package/esm2020/proxy/bl-tracking/dtos/models.mjs +2 -0
  97. package/esm2020/proxy/business-partners/dtos/index.mjs +2 -0
  98. package/esm2020/proxy/business-partners/dtos/models.mjs +2 -0
  99. package/esm2020/proxy/business-region.enum.mjs +9 -0
  100. package/esm2020/proxy/carriers/dtos/index.mjs +2 -0
  101. package/esm2020/proxy/carriers/dtos/models.mjs +2 -0
  102. package/esm2020/proxy/container-loading-counts/dtos/models.mjs +1 -1
  103. package/esm2020/proxy/controllers/bl-tracking.service.mjs +36 -0
  104. package/esm2020/proxy/controllers/business-partner.service.mjs +22 -0
  105. package/esm2020/proxy/controllers/carrier.service.mjs +36 -0
  106. package/esm2020/proxy/controllers/container-loading-count.service.mjs +5 -5
  107. package/esm2020/proxy/controllers/cost-parameter.service.mjs +1 -5
  108. package/esm2020/proxy/controllers/destination-port.service.mjs +44 -0
  109. package/esm2020/proxy/controllers/fob-inland-definition.service.mjs +36 -0
  110. package/esm2020/proxy/controllers/freight-offer.service.mjs +57 -0
  111. package/esm2020/proxy/controllers/incoterm.service.mjs +36 -0
  112. package/esm2020/proxy/controllers/index.mjs +16 -1
  113. package/esm2020/proxy/controllers/item-classification.service.mjs +42 -0
  114. package/esm2020/proxy/controllers/item-package-group.service.mjs +40 -0
  115. package/esm2020/proxy/controllers/item-package-type.service.mjs +40 -0
  116. package/esm2020/proxy/controllers/item-product-type.service.mjs +40 -0
  117. package/esm2020/proxy/controllers/item.service.mjs +7 -3
  118. package/esm2020/proxy/controllers/line.service.mjs +36 -0
  119. package/esm2020/proxy/controllers/pos.service.mjs +36 -0
  120. package/esm2020/proxy/controllers/price-list.service.mjs +28 -0
  121. package/esm2020/proxy/controllers/price-parameter.service.mjs +45 -0
  122. package/esm2020/proxy/cost-parameter-categories/dtos/models.mjs +1 -1
  123. package/esm2020/proxy/cost-parameters/dtos/models.mjs +1 -1
  124. package/esm2020/proxy/destination-ports/dtos/index.mjs +2 -0
  125. package/esm2020/proxy/destination-ports/dtos/models.mjs +2 -0
  126. package/esm2020/proxy/fob-inland-definitions/dtos/index.mjs +2 -0
  127. package/esm2020/proxy/fob-inland-definitions/dtos/models.mjs +2 -0
  128. package/esm2020/proxy/freight-offers/dtos/index.mjs +2 -0
  129. package/esm2020/proxy/freight-offers/dtos/models.mjs +2 -0
  130. package/esm2020/proxy/incoterms/dtos/index.mjs +2 -0
  131. package/esm2020/proxy/incoterms/dtos/models.mjs +2 -0
  132. package/esm2020/proxy/item-classifications/dtos/index.mjs +2 -0
  133. package/esm2020/proxy/item-classifications/dtos/models.mjs +2 -0
  134. package/esm2020/proxy/item-package-groups/dtos/index.mjs +2 -0
  135. package/esm2020/proxy/item-package-groups/dtos/models.mjs +2 -0
  136. package/esm2020/proxy/item-package-types/dtos/index.mjs +2 -0
  137. package/esm2020/proxy/item-package-types/dtos/models.mjs +2 -0
  138. package/esm2020/proxy/item-product-types/dtos/index.mjs +2 -0
  139. package/esm2020/proxy/item-product-types/dtos/models.mjs +2 -0
  140. package/esm2020/proxy/lines/dtos/index.mjs +2 -0
  141. package/esm2020/proxy/lines/dtos/models.mjs +2 -0
  142. package/esm2020/proxy/pos/dtos/index.mjs +2 -0
  143. package/esm2020/proxy/pos/dtos/models.mjs +2 -0
  144. package/esm2020/proxy/price-lists/dtos/index.mjs +2 -0
  145. package/esm2020/proxy/price-lists/dtos/models.mjs +2 -0
  146. package/esm2020/proxy/price-parameters/dtos/index.mjs +2 -0
  147. package/esm2020/proxy/price-parameters/dtos/models.mjs +2 -0
  148. package/esm2020/proxy/price-parameters/price-parameter-status.enum.mjs +9 -0
  149. package/esm2020/proxy/public-api.mjs +18 -2
  150. package/esm2020/proxy/settings/models.mjs +1 -1
  151. package/fesm2015/hitsoft-kadooglu-keops-config.mjs +140 -3
  152. package/fesm2015/hitsoft-kadooglu-keops-config.mjs.map +1 -1
  153. package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs +556 -21
  154. package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs.map +1 -1
  155. package/fesm2015/hitsoft-kadooglu-keops.mjs +4510 -763
  156. package/fesm2015/hitsoft-kadooglu-keops.mjs.map +1 -1
  157. package/fesm2020/hitsoft-kadooglu-keops-config.mjs +140 -3
  158. package/fesm2020/hitsoft-kadooglu-keops-config.mjs.map +1 -1
  159. package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs +556 -21
  160. package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs.map +1 -1
  161. package/fesm2020/hitsoft-kadooglu-keops.mjs +4462 -732
  162. package/fesm2020/hitsoft-kadooglu-keops.mjs.map +1 -1
  163. package/lib/features/bl-tracking/components/bl-tracking-form.component.d.ts +24 -0
  164. package/lib/features/bl-tracking/components/bl-tracking.component.d.ts +22 -0
  165. package/lib/features/bl-tracking/hit-bl-tracking-routing.module.d.ts +7 -0
  166. package/lib/features/bl-tracking/hit-bl-tracking.module.d.ts +18 -0
  167. package/lib/features/carriers/components/carrier-form.component.d.ts +24 -0
  168. package/lib/features/carriers/components/carriers.component.d.ts +22 -0
  169. package/lib/features/carriers/hit-carriers-routing.module.d.ts +7 -0
  170. package/lib/features/carriers/hit-carriers.module.d.ts +18 -0
  171. package/lib/features/container-loading-counts/components/container-loading-counts.component.d.ts +2 -2
  172. package/lib/features/container-pallet-capacities/components/container-pallet-capacities.component.d.ts +1 -1
  173. package/lib/features/cost-calculation/components/cost-calculation-inputs.component.d.ts +10 -7
  174. package/lib/features/cost-calculation/components/cost-calculation.component.d.ts +16 -8
  175. package/lib/features/cost-calculation/engine/currency.utils.d.ts +2 -2
  176. package/lib/features/cost-calculation/engine/formulas.d.ts +2 -2
  177. package/lib/features/cost-calculation/hit-cost-calculation.module.d.ts +2 -1
  178. package/lib/features/cost-parameter-categories/components/cost-parameter-categories.component.d.ts +0 -1
  179. package/lib/features/cost-parameter-categories/components/cost-parameter-category-form.component.d.ts +1 -5
  180. package/lib/features/cost-parameters/components/cost-parameter-form.component.d.ts +10 -7
  181. package/lib/features/cost-parameters/components/cost-parameters.component.d.ts +6 -6
  182. package/lib/features/destination-ports/components/destination-port-form.component.d.ts +25 -0
  183. package/lib/features/destination-ports/components/destination-ports.component.d.ts +24 -0
  184. package/lib/features/destination-ports/hit-destination-ports-routing.module.d.ts +7 -0
  185. package/lib/features/destination-ports/hit-destination-ports.module.d.ts +18 -0
  186. package/lib/features/fob-inland-definitions/components/fob-inland-definition-form.component.d.ts +24 -0
  187. package/lib/features/fob-inland-definitions/components/fob-inland-definitions.component.d.ts +22 -0
  188. package/lib/features/fob-inland-definitions/hit-fob-inland-definitions-routing.module.d.ts +7 -0
  189. package/lib/features/fob-inland-definitions/hit-fob-inland-definitions.module.d.ts +18 -0
  190. package/lib/features/freight-offers/components/freight-offer-copy.component.d.ts +22 -0
  191. package/lib/features/freight-offers/components/freight-offer-form.component.d.ts +49 -0
  192. package/lib/features/freight-offers/components/freight-offers.component.d.ts +47 -0
  193. package/lib/features/freight-offers/hit-freight-offers-routing.module.d.ts +7 -0
  194. package/lib/features/freight-offers/hit-freight-offers.module.d.ts +19 -0
  195. package/lib/features/incoterms/components/incoterm-form.component.d.ts +24 -0
  196. package/lib/features/incoterms/components/incoterms.component.d.ts +22 -0
  197. package/lib/features/incoterms/hit-incoterms-routing.module.d.ts +7 -0
  198. package/lib/features/incoterms/hit-incoterms.module.d.ts +18 -0
  199. package/lib/features/index.d.ts +21 -0
  200. package/lib/features/item-classifications/components/item-classifications.component.d.ts +66 -0
  201. package/lib/features/item-classifications/hit-item-classifications-routing.module.d.ts +7 -0
  202. package/lib/features/item-classifications/hit-item-classifications.module.d.ts +17 -0
  203. package/lib/features/item-package-groups/components/item-package-group-form.component.d.ts +24 -0
  204. package/lib/features/item-package-groups/components/item-package-groups.component.d.ts +22 -0
  205. package/lib/features/item-package-groups/hit-item-package-groups-routing.module.d.ts +7 -0
  206. package/lib/features/item-package-groups/hit-item-package-groups.module.d.ts +18 -0
  207. package/lib/features/item-package-types/components/item-package-type-form.component.d.ts +24 -0
  208. package/lib/features/item-package-types/components/item-package-types.component.d.ts +22 -0
  209. package/lib/features/item-package-types/hit-item-package-types-routing.module.d.ts +7 -0
  210. package/lib/features/item-package-types/hit-item-package-types.module.d.ts +18 -0
  211. package/lib/features/item-product-types/components/item-product-type-form.component.d.ts +24 -0
  212. package/lib/features/item-product-types/components/item-product-types.component.d.ts +22 -0
  213. package/lib/features/item-product-types/hit-item-product-types-routing.module.d.ts +7 -0
  214. package/lib/features/item-product-types/hit-item-product-types.module.d.ts +18 -0
  215. package/lib/features/lines/components/line-form.component.d.ts +24 -0
  216. package/lib/features/lines/components/lines.component.d.ts +22 -0
  217. package/lib/features/lines/hit-lines-routing.module.d.ts +7 -0
  218. package/lib/features/lines/hit-lines.module.d.ts +18 -0
  219. package/lib/features/pos/components/pos-form.component.d.ts +24 -0
  220. package/lib/features/pos/components/pos.component.d.ts +22 -0
  221. package/lib/features/pos/hit-pos-routing.module.d.ts +7 -0
  222. package/lib/features/pos/hit-pos.module.d.ts +18 -0
  223. package/lib/features/price-parameters/components/price-parameter-form-cost-items.component.d.ts +15 -0
  224. package/lib/features/price-parameters/components/price-parameter-form-discount-rates-modal.component.d.ts +24 -0
  225. package/lib/features/price-parameters/components/price-parameter-form-discount-rates.component.d.ts +22 -0
  226. package/lib/features/price-parameters/components/price-parameter-form-items.component.d.ts +15 -0
  227. package/lib/features/price-parameters/components/price-parameter-form-price-lists.component.d.ts +15 -0
  228. package/lib/features/price-parameters/components/price-parameter-form.component.d.ts +77 -0
  229. package/lib/features/price-parameters/components/price-parameter-price-update-preview-modal.component.d.ts +11 -0
  230. package/lib/features/price-parameters/components/price-parameters.component.d.ts +30 -0
  231. package/lib/features/price-parameters/hit-price-parameters-routing.module.d.ts +7 -0
  232. package/lib/features/price-parameters/hit-price-parameters.module.d.ts +25 -0
  233. package/lib/features/price-parameters/price-parameter-cost-match.service.d.ts +10 -0
  234. package/lib/features/price-parameters/price-parameter-form-data.service.d.ts +25 -0
  235. package/lib/features/price-parameters/price-parameter-l10n-helper.d.ts +2 -0
  236. package/lib/features/price-parameters/price-parameter-lookups.service.d.ts +15 -0
  237. package/lib/features/price-parameters/price-parameter-price-update.service.d.ts +30 -0
  238. package/lib/shared/amount-currency-input/amount-currency-input.component.d.ts +23 -0
  239. package/lib/shared/cost-item-classification.utils.d.ts +11 -0
  240. package/lib/shared/cost-item-rows.builder.d.ts +11 -0
  241. package/lib/shared/pipes/resolve-code-name.pipe.d.ts +11 -0
  242. package/lib/shared/shared-ui.module.d.ts +10 -0
  243. package/lib/utils/business-region.utils.d.ts +7 -0
  244. package/lib/utils/currency.utils.d.ts +2 -0
  245. package/lib/utils/exchange-rate.utils.d.ts +2 -0
  246. package/package.json +1 -1
  247. package/proxy/bl-tracking/dtos/index.d.ts +1 -0
  248. package/proxy/bl-tracking/dtos/models.d.ts +25 -0
  249. package/proxy/business-partners/dtos/index.d.ts +1 -0
  250. package/proxy/business-partners/dtos/models.d.ts +4 -0
  251. package/proxy/business-region.enum.d.ts +6 -0
  252. package/proxy/carriers/dtos/index.d.ts +1 -0
  253. package/proxy/carriers/dtos/models.d.ts +10 -0
  254. package/proxy/container-loading-counts/dtos/models.d.ts +1 -1
  255. package/proxy/controllers/bl-tracking.service.d.ts +14 -0
  256. package/proxy/controllers/business-partner.service.d.ts +11 -0
  257. package/proxy/controllers/carrier.service.d.ts +14 -0
  258. package/proxy/controllers/container-loading-count.service.d.ts +2 -2
  259. package/proxy/controllers/cost-parameter.service.d.ts +1 -2
  260. package/proxy/controllers/destination-port.service.d.ts +17 -0
  261. package/proxy/controllers/fob-inland-definition.service.d.ts +14 -0
  262. package/proxy/controllers/freight-offer.service.d.ts +19 -0
  263. package/proxy/controllers/incoterm.service.d.ts +14 -0
  264. package/proxy/controllers/index.d.ts +15 -0
  265. package/proxy/controllers/item-classification.service.d.ts +17 -0
  266. package/proxy/controllers/item-package-group.service.d.ts +15 -0
  267. package/proxy/controllers/item-package-type.service.d.ts +15 -0
  268. package/proxy/controllers/item-product-type.service.d.ts +15 -0
  269. package/proxy/controllers/item.service.d.ts +3 -1
  270. package/proxy/controllers/line.service.d.ts +14 -0
  271. package/proxy/controllers/pos.service.d.ts +14 -0
  272. package/proxy/controllers/price-list.service.d.ts +13 -0
  273. package/proxy/controllers/price-parameter.service.d.ts +16 -0
  274. package/proxy/cost-parameter-categories/dtos/models.d.ts +0 -4
  275. package/proxy/cost-parameters/dtos/models.d.ts +4 -11
  276. package/proxy/destination-ports/dtos/index.d.ts +1 -0
  277. package/proxy/destination-ports/dtos/models.d.ts +19 -0
  278. package/proxy/fob-inland-definitions/dtos/index.d.ts +1 -0
  279. package/proxy/fob-inland-definitions/dtos/models.d.ts +19 -0
  280. package/proxy/freight-offers/dtos/index.d.ts +1 -0
  281. package/proxy/freight-offers/dtos/models.d.ts +66 -0
  282. package/proxy/incoterms/dtos/index.d.ts +1 -0
  283. package/proxy/incoterms/dtos/models.d.ts +22 -0
  284. package/proxy/item-classifications/dtos/index.d.ts +1 -0
  285. package/proxy/item-classifications/dtos/models.d.ts +34 -0
  286. package/proxy/item-package-groups/dtos/index.d.ts +1 -0
  287. package/proxy/item-package-groups/dtos/models.d.ts +13 -0
  288. package/proxy/item-package-types/dtos/index.d.ts +1 -0
  289. package/proxy/item-package-types/dtos/models.d.ts +13 -0
  290. package/proxy/item-product-types/dtos/index.d.ts +1 -0
  291. package/proxy/item-product-types/dtos/models.d.ts +13 -0
  292. package/proxy/lines/dtos/index.d.ts +1 -0
  293. package/proxy/lines/dtos/models.d.ts +10 -0
  294. package/proxy/pos/dtos/index.d.ts +1 -0
  295. package/proxy/pos/dtos/models.d.ts +10 -0
  296. package/proxy/price-lists/dtos/index.d.ts +1 -0
  297. package/proxy/price-lists/dtos/models.d.ts +10 -0
  298. package/proxy/price-parameters/dtos/index.d.ts +1 -0
  299. package/proxy/price-parameters/dtos/models.d.ts +104 -0
  300. package/proxy/price-parameters/price-parameter-status.enum.d.ts +6 -0
  301. package/proxy/public-api.d.ts +17 -1
  302. package/proxy/settings/models.d.ts +1 -0
  303. package/esm2020/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.mjs +0 -9
  304. package/esm2020/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.mjs +0 -11
  305. package/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.d.ts +0 -2
  306. package/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.d.ts +0 -8
@@ -0,0 +1,24 @@
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { BlTrackingService, BlTrackingDto } from '@hitsoft/kadooglu-keops/proxy';
4
+ import * as i0 from "@angular/core";
5
+ export declare class BlTrackingFormComponent implements OnInit, OnChanges {
6
+ private readonly fb;
7
+ private readonly service;
8
+ visible: boolean;
9
+ mode: 'create' | 'edit';
10
+ current: BlTrackingDto | null;
11
+ visibleChange: EventEmitter<boolean>;
12
+ saved: EventEmitter<void>;
13
+ form: FormGroup;
14
+ saving: boolean;
15
+ constructor(fb: FormBuilder, service: BlTrackingService);
16
+ ngOnInit(): void;
17
+ ngOnChanges(changes: SimpleChanges): void;
18
+ private buildForm;
19
+ get title(): string;
20
+ onVisibleChange(value: boolean): void;
21
+ save(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<BlTrackingFormComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<BlTrackingFormComponent, "lib-bl-tracking-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
24
+ }
@@ -0,0 +1,22 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
3
+ import { BlTrackingService, BlTrackingDto } from '@hitsoft/kadooglu-keops/proxy';
4
+ import * as i0 from "@angular/core";
5
+ export declare class BlTrackingComponent implements OnInit {
6
+ private readonly service;
7
+ private readonly toaster;
8
+ private readonly confirmation;
9
+ items: BlTrackingDto[];
10
+ selected: BlTrackingDto | null;
11
+ formVisible: boolean;
12
+ formMode: 'create' | 'edit';
13
+ constructor(service: BlTrackingService, toaster: ToasterService, confirmation: ConfirmationService);
14
+ ngOnInit(): void;
15
+ loadList(): void;
16
+ openCreate(): void;
17
+ openEdit(row: BlTrackingDto): void;
18
+ onSaved(): void;
19
+ remove(row: BlTrackingDto): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<BlTrackingComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<BlTrackingComponent, "lib-bl-tracking", never, {}, {}, never, never, false>;
22
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/router";
3
+ export declare class HitBlTrackingRoutingModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitBlTrackingRoutingModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitBlTrackingRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitBlTrackingRoutingModule>;
7
+ }
@@ -0,0 +1,18 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/bl-tracking.component";
3
+ import * as i2 from "./components/bl-tracking-form.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "@abp/ng.core";
7
+ import * as i6 from "@abp/ng.theme.shared";
8
+ import * as i7 from "@abp/ng.components/page";
9
+ import * as i8 from "@volo/abp.commercial.ng.ui";
10
+ import * as i9 from "@ng-bootstrap/ng-bootstrap";
11
+ import * as i10 from "./hit-bl-tracking-routing.module";
12
+ import * as i11 from "devextreme-angular";
13
+ export declare class HitBlTrackingModule {
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitBlTrackingModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitBlTrackingModule, [typeof i1.BlTrackingComponent, typeof i2.BlTrackingFormComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.CoreModule, typeof i6.ThemeSharedModule, typeof i7.PageModule, typeof i8.CommercialUiModule, typeof i9.NgbDropdownModule, typeof i10.HitBlTrackingRoutingModule, typeof i11.DxDataGridModule], never>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitBlTrackingModule>;
17
+ }
18
+ export declare function loadHitBlTrackingModuleAsChild(): Promise<typeof HitBlTrackingModule>;
@@ -0,0 +1,24 @@
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { CarrierService, CarrierDto } from '@hitsoft/kadooglu-keops/proxy';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CarrierFormComponent implements OnInit, OnChanges {
6
+ private readonly fb;
7
+ private readonly service;
8
+ visible: boolean;
9
+ mode: 'create' | 'edit';
10
+ current: CarrierDto | null;
11
+ visibleChange: EventEmitter<boolean>;
12
+ saved: EventEmitter<void>;
13
+ form: FormGroup;
14
+ saving: boolean;
15
+ constructor(fb: FormBuilder, service: CarrierService);
16
+ ngOnInit(): void;
17
+ ngOnChanges(changes: SimpleChanges): void;
18
+ private buildForm;
19
+ get title(): string;
20
+ onVisibleChange(value: boolean): void;
21
+ save(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarrierFormComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<CarrierFormComponent, "lib-carrier-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
24
+ }
@@ -0,0 +1,22 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
3
+ import { CarrierService, CarrierDto } from '@hitsoft/kadooglu-keops/proxy';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CarriersComponent implements OnInit {
6
+ private readonly service;
7
+ private readonly toaster;
8
+ private readonly confirmation;
9
+ items: CarrierDto[];
10
+ selected: CarrierDto | null;
11
+ formVisible: boolean;
12
+ formMode: 'create' | 'edit';
13
+ constructor(service: CarrierService, toaster: ToasterService, confirmation: ConfirmationService);
14
+ ngOnInit(): void;
15
+ loadList(): void;
16
+ openCreate(): void;
17
+ openEdit(row: CarrierDto): void;
18
+ onSaved(): void;
19
+ remove(row: CarrierDto): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarriersComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<CarriersComponent, "lib-carriers", never, {}, {}, never, never, false>;
22
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/router";
3
+ export declare class HitCarriersRoutingModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitCarriersRoutingModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitCarriersRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitCarriersRoutingModule>;
7
+ }
@@ -0,0 +1,18 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/carriers.component";
3
+ import * as i2 from "./components/carrier-form.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "@abp/ng.core";
7
+ import * as i6 from "@abp/ng.theme.shared";
8
+ import * as i7 from "@abp/ng.components/page";
9
+ import * as i8 from "@volo/abp.commercial.ng.ui";
10
+ import * as i9 from "@ng-bootstrap/ng-bootstrap";
11
+ import * as i10 from "./hit-carriers-routing.module";
12
+ import * as i11 from "devextreme-angular";
13
+ export declare class HitCarriersModule {
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitCarriersModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitCarriersModule, [typeof i1.CarriersComponent, typeof i2.CarrierFormComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.CoreModule, typeof i6.ThemeSharedModule, typeof i7.PageModule, typeof i8.CommercialUiModule, typeof i9.NgbDropdownModule, typeof i10.HitCarriersRoutingModule, typeof i11.DxDataGridModule], never>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitCarriersModule>;
17
+ }
18
+ export declare function loadHitCarriersModuleAsChild(): Promise<typeof HitCarriersModule>;
@@ -1,7 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
3
  import { ToasterService } from '@abp/ng.theme.shared';
4
- import { ContainerDefinitionService, ContainerLoadingCountService, PalletDefinitionService, ContainerDefinitionDto, PalletDefinitionDto, ProductTypeLookupDto } from '@hitsoft/kadooglu-keops/proxy';
4
+ import { ContainerDefinitionService, ContainerLoadingCountService, PalletDefinitionService, ContainerDefinitionDto, PalletDefinitionDto, ItemProductTypeLookupDto } from '@hitsoft/kadooglu-keops/proxy';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class ContainerLoadingCountsComponent implements OnInit {
7
7
  private readonly service;
@@ -10,7 +10,7 @@ export declare class ContainerLoadingCountsComponent implements OnInit {
10
10
  private readonly toaster;
11
11
  loading: boolean;
12
12
  saving: boolean;
13
- productTypes: ProductTypeLookupDto[];
13
+ productTypes: ItemProductTypeLookupDto[];
14
14
  containers: ContainerDefinitionDto[];
15
15
  pallets: PalletDefinitionDto[];
16
16
  private readonly controls;
@@ -16,7 +16,7 @@ export declare class ContainerPalletCapacitiesComponent implements OnInit {
16
16
  formMode: 'create' | 'edit';
17
17
  constructor(service: ContainerPalletCapacityService, containerDefinitionService: ContainerDefinitionService, palletDefinitionService: PalletDefinitionService, toaster: ToasterService, confirmation: ConfirmationService);
18
18
  ngOnInit(): void;
19
- loadLookups(): void;
19
+ load(): void;
20
20
  loadList(): void;
21
21
  getContainerName(code: string | undefined | null): string;
22
22
  getPalletName(code: string | undefined | null): string;
@@ -1,20 +1,23 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import DataSource from 'devextreme/data/data_source';
3
- import { CostParameterDto, ItemDto, CostItemCalculationType, Currency } from '@hitsoft/kadooglu-keops/proxy';
3
+ import { PriceParameterDto, ItemDto, Currency } from '@hitsoft/kadooglu-keops/proxy';
4
4
  import { CostCalculationStage } from '../cost-calculation.models';
5
+ import { isPackagingCostItem, isRateCostItem } from '../../../shared/cost-item-classification.utils';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class CostCalculationInputsComponent {
7
- readonly RateType = CostItemCalculationType.Rate;
8
+ readonly isRate: typeof isRateCostItem;
9
+ readonly isPackaging: typeof isPackagingCostItem;
8
10
  readonly currencyOptions: import("../../../utils/currency.utils").CurrencyOption[];
11
+ readonly tryUsdCurrencyOptions: import("../../../utils/currency.utils").CurrencyOption[];
9
12
  itemsDataSource: DataSource | null;
10
13
  itemDisplayExpr: (item: ItemDto) => string;
11
- parameters: CostParameterDto[];
12
- parameterDisplayExpr: (p: CostParameterDto) => string;
14
+ parameters: PriceParameterDto[];
15
+ parameterDisplayExpr: (p: PriceParameterDto) => string;
13
16
  stages: CostCalculationStage[];
14
17
  selectedItemCode: string | null;
15
18
  selectedItemCodeChange: EventEmitter<string>;
16
- selectedParameterCode: string | null;
17
- selectedParameterCodeChange: EventEmitter<string>;
19
+ selectedParameterDocEntry: number | null;
20
+ selectedParameterDocEntryChange: EventEmitter<number>;
18
21
  rawOilPrice: number;
19
22
  rawOilPriceChange: EventEmitter<number>;
20
23
  rawOilCurrency: Currency;
@@ -36,5 +39,5 @@ export declare class CostCalculationInputsComponent {
36
39
  onRateEurChange(): void;
37
40
  private emitAndRecalc;
38
41
  static ɵfac: i0.ɵɵFactoryDeclaration<CostCalculationInputsComponent, never>;
39
- static ɵcmp: i0.ɵɵComponentDeclaration<CostCalculationInputsComponent, "lib-cost-calculation-inputs", never, { "itemsDataSource": "itemsDataSource"; "itemDisplayExpr": "itemDisplayExpr"; "parameters": "parameters"; "parameterDisplayExpr": "parameterDisplayExpr"; "stages": "stages"; "selectedItemCode": "selectedItemCode"; "selectedParameterCode": "selectedParameterCode"; "rawOilPrice": "rawOilPrice"; "rawOilCurrency": "rawOilCurrency"; "systemRateUsd": "systemRateUsd"; "systemRateEur": "systemRateEur"; "rateUsd": "rateUsd"; "rateEur": "rateEur"; }, { "selectedItemCodeChange": "selectedItemCodeChange"; "selectedParameterCodeChange": "selectedParameterCodeChange"; "rawOilPriceChange": "rawOilPriceChange"; "rawOilCurrencyChange": "rawOilCurrencyChange"; "rateUsdChange": "rateUsdChange"; "rateEurChange": "rateEurChange"; "itemChange": "itemChange"; "parameterChange": "parameterChange"; "recalc": "recalc"; }, never, never, false>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<CostCalculationInputsComponent, "lib-cost-calculation-inputs", never, { "itemsDataSource": "itemsDataSource"; "itemDisplayExpr": "itemDisplayExpr"; "parameters": "parameters"; "parameterDisplayExpr": "parameterDisplayExpr"; "stages": "stages"; "selectedItemCode": "selectedItemCode"; "selectedParameterDocEntry": "selectedParameterDocEntry"; "rawOilPrice": "rawOilPrice"; "rawOilCurrency": "rawOilCurrency"; "systemRateUsd": "systemRateUsd"; "systemRateEur": "systemRateEur"; "rateUsd": "rateUsd"; "rateEur": "rateEur"; }, { "selectedItemCodeChange": "selectedItemCodeChange"; "selectedParameterDocEntryChange": "selectedParameterDocEntryChange"; "rawOilPriceChange": "rawOilPriceChange"; "rawOilCurrencyChange": "rawOilCurrencyChange"; "rateUsdChange": "rateUsdChange"; "rateEurChange": "rateEurChange"; "itemChange": "itemChange"; "parameterChange": "parameterChange"; "recalc": "recalc"; }, never, never, false>;
40
43
  }
@@ -1,22 +1,26 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import { LocalizationService } from '@abp/ng.core';
2
3
  import DataSource from 'devextreme/data/data_source';
3
- import { CostGroupService, CostItemService, CostParameterService, ExchangeRateService, ItemService, ItemDto, CostParameterDto, Currency } from '@hitsoft/kadooglu-keops/proxy';
4
+ import { CostGroupService, CostItemService, PriceParameterService, ExchangeRateService, ItemService, ItemDto, PriceParameterDto, Currency } from '@hitsoft/kadooglu-keops/proxy';
4
5
  import { CostResult, RoleGroup } from '../engine';
5
6
  import { CostCalculationStage } from '../cost-calculation.models';
7
+ import { PriceParameterLookupsService } from '../../price-parameters/price-parameter-lookups.service';
6
8
  import * as i0 from "@angular/core";
7
9
  export declare class CostCalculationComponent implements OnInit {
8
10
  private readonly parameterService;
11
+ private readonly priceParameterLookupsService;
9
12
  private readonly costItemService;
10
13
  private readonly costGroupService;
11
14
  private readonly exchangeRateService;
12
15
  private readonly itemService;
16
+ private readonly localization;
13
17
  readonly itemCodePrefix = "05";
14
18
  productItems: ItemDto[];
15
19
  itemsDataSource: DataSource | null;
16
20
  selectedItemCode: string | null;
17
21
  selectedItemName: string | null;
18
- parameters: CostParameterDto[];
19
- selectedParameterCode: string | null;
22
+ parameters: PriceParameterDto[];
23
+ selectedParameterDocEntry: number | null;
20
24
  rawOilPrice: number;
21
25
  rawOilCurrency: Currency;
22
26
  systemRateUsd: number;
@@ -26,23 +30,27 @@ export declare class CostCalculationComponent implements OnInit {
26
30
  stages: CostCalculationStage[];
27
31
  result: CostResult | null;
28
32
  roleGroups: RoleGroup[];
33
+ private packagingBaseTry;
29
34
  private costItemsByCode;
30
35
  private groups;
31
36
  private productGroupNames;
32
- private regionNames;
33
- constructor(parameterService: CostParameterService, costItemService: CostItemService, costGroupService: CostGroupService, exchangeRateService: ExchangeRateService, itemService: ItemService);
37
+ private typeNames;
38
+ constructor(parameterService: PriceParameterService, priceParameterLookupsService: PriceParameterLookupsService, costItemService: CostItemService, costGroupService: CostGroupService, exchangeRateService: ExchangeRateService, itemService: ItemService, localization: LocalizationService);
34
39
  ngOnInit(): void;
35
- parameterLabel(p: CostParameterDto): string;
40
+ parameterLabel(p: PriceParameterDto): string;
36
41
  onItemChange(): void;
42
+ private loadPackagingCost;
43
+ private findPackagingItem;
44
+ private applyPackagingAmount;
37
45
  readonly itemDisplayExpr: (item: ItemDto) => string;
38
- readonly parameterDisplayExpr: (p: CostParameterDto) => string;
46
+ readonly parameterDisplayExpr: (p: PriceParameterDto) => string;
39
47
  private toNameMap;
40
48
  onParameterChange(): void;
49
+ private loadProductItems;
41
50
  private buildValuesByCode;
42
51
  private buildStages;
43
52
  calculate(): void;
44
53
  print(): void;
45
- private resolveRates;
46
54
  static ɵfac: i0.ɵɵFactoryDeclaration<CostCalculationComponent, never>;
47
55
  static ɵcmp: i0.ɵɵComponentDeclaration<CostCalculationComponent, "lib-cost-calculation", never, {}, {}, never, never, false>;
48
56
  }
@@ -1,4 +1,4 @@
1
1
  import { Currency } from '@hitsoft/kadooglu-keops/proxy';
2
2
  import { CostAmount } from './models';
3
- export declare function toAmount(baseUsd: number, rateUsd: number, rateEur: number): CostAmount;
4
- export declare function toBaseUsd(value: number, currency: Currency | undefined, rateUsd: number, rateEur: number): number;
3
+ export declare function toAmount(baseTry: number, rateUsd: number, rateEur: number): CostAmount;
4
+ export declare function toBaseTry(value: number, currency: Currency | undefined, rateUsd: number, rateEur: number): number;
@@ -1,6 +1,6 @@
1
1
  import { CostResult, EngineRequest, ResolvedItems } from './models';
2
- export declare function calculateLoss(rawOilUsd: number, resolvedItems: ResolvedItems): number;
3
- export declare function calculateProductionCost(rawOilUsd: number, resolvedItems: ResolvedItems, loss: number): number;
2
+ export declare function calculateLoss(rawOilTry: number, resolvedItems: ResolvedItems): number;
3
+ export declare function calculateProductionCost(rawOilTry: number, resolvedItems: ResolvedItems, loss: number): number;
4
4
  export declare function calculateTotalCost(productionCost: number, resolvedItems: ResolvedItems): number;
5
5
  export declare function calculateProfit(totalCost: number, profitRate: number): number;
6
6
  export declare function calculateTotalSalePrice(totalCost: number, profit: number): number;
@@ -11,9 +11,10 @@ import * as i9 from "@abp/ng.components/page";
11
11
  import * as i10 from "@volo/abp.commercial.ng.ui";
12
12
  import * as i11 from "./hit-cost-calculation-routing.module";
13
13
  import * as i12 from "devextreme-angular";
14
+ import * as i13 from "../../shared/shared-ui.module";
14
15
  export declare class HitCostCalculationModule {
15
16
  static ɵfac: i0.ɵɵFactoryDeclaration<HitCostCalculationModule, never>;
16
- static ɵmod: i0.ɵɵNgModuleDeclaration<HitCostCalculationModule, [typeof i1.CostCalculationComponent, typeof i2.CostCalculationInputsComponent, typeof i3.CostCalculationResultsComponent, typeof i4.CostCalculationResultSumComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i7.CoreModule, typeof i8.ThemeSharedModule, typeof i9.PageModule, typeof i10.CommercialUiModule, typeof i11.HitCostCalculationRoutingModule, typeof i12.DxSelectBoxModule], never>;
17
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitCostCalculationModule, [typeof i1.CostCalculationComponent, typeof i2.CostCalculationInputsComponent, typeof i3.CostCalculationResultsComponent, typeof i4.CostCalculationResultSumComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i7.CoreModule, typeof i8.ThemeSharedModule, typeof i9.PageModule, typeof i10.CommercialUiModule, typeof i11.HitCostCalculationRoutingModule, typeof i12.DxSelectBoxModule, typeof i13.SharedUiModule], never>;
17
18
  static ɵinj: i0.ɵɵInjectorDeclaration<HitCostCalculationModule>;
18
19
  }
19
20
  export declare function loadHitCostCalculationModuleAsChild(): Promise<typeof HitCostCalculationModule>;
@@ -12,7 +12,6 @@ export declare class CostParameterCategoriesComponent implements OnInit {
12
12
  formMode: 'create' | 'edit';
13
13
  constructor(service: CostParameterCategoryService, toaster: ToasterService, confirmation: ConfirmationService);
14
14
  ngOnInit(): void;
15
- getParentCodeLabel(value: any): string;
16
15
  loadList(): void;
17
16
  openCreate(): void;
18
17
  openEdit(row: CostParameterCategoryDto): void;
@@ -1,6 +1,6 @@
1
1
  import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { FormBuilder, FormGroup } from '@angular/forms';
3
- import { CostParameterCategoryService, CostParameterCategoryDto, CostParameterCategoryParentCode } from '@hitsoft/kadooglu-keops/proxy';
3
+ import { CostParameterCategoryService, CostParameterCategoryDto } from '@hitsoft/kadooglu-keops/proxy';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class CostParameterCategoryFormComponent implements OnInit, OnChanges {
6
6
  private readonly fb;
@@ -11,10 +11,6 @@ export declare class CostParameterCategoryFormComponent implements OnInit, OnCha
11
11
  visibleChange: EventEmitter<boolean>;
12
12
  saved: EventEmitter<void>;
13
13
  form: FormGroup;
14
- readonly parentCodeOptions: {
15
- value: CostParameterCategoryParentCode;
16
- label: string;
17
- }[];
18
14
  constructor(fb: FormBuilder, service: CostParameterCategoryService);
19
15
  ngOnInit(): void;
20
16
  ngOnChanges(changes: SimpleChanges): void;
@@ -1,16 +1,18 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
3
- import { CostItemService, CostParameterService, CostItemDto, CostParameterCategoryLookupDto, CostParameterDto, CostParameterStatus } from '@hitsoft/kadooglu-keops/proxy';
3
+ import { CostItemService, CostParameterService, CostItemDto, CostParameterDto, CostParameterStatus, CostParameterCategoryDto } from '@hitsoft/kadooglu-keops/proxy';
4
+ import { isRateCostItem, isCustomCostItem } from '../../../shared/cost-item-classification.utils';
5
+ import { CostItemRowsBuilder } from '../../../shared/cost-item-rows.builder';
4
6
  import * as i0 from "@angular/core";
5
7
  export declare class CostParameterFormComponent implements OnInit {
6
8
  private readonly fb;
7
9
  private readonly service;
8
10
  private readonly costItemService;
11
+ private readonly rowsBuilder;
9
12
  visible: boolean;
10
13
  mode: 'create' | 'edit';
11
14
  current: CostParameterDto | null;
12
- productGroupOptions: CostParameterCategoryLookupDto[];
13
- regionOptions: CostParameterCategoryLookupDto[];
15
+ productGroupOptions: CostParameterCategoryDto[];
14
16
  visibleChange: EventEmitter<boolean>;
15
17
  saved: EventEmitter<void>;
16
18
  form: FormGroup;
@@ -21,16 +23,17 @@ export declare class CostParameterFormComponent implements OnInit {
21
23
  label: string;
22
24
  }[];
23
25
  readonly currencyOptions: import("../../../utils/currency.utils").CurrencyOption[];
26
+ readonly regionOptions: import("../../../utils/business-region.utils").BusinessRegionOption[];
24
27
  readonly customLabel: string;
25
- constructor(fb: FormBuilder, service: CostParameterService, costItemService: CostItemService);
28
+ readonly isRate: typeof isRateCostItem;
29
+ readonly isCustom: typeof isCustomCostItem;
30
+ constructor(fb: FormBuilder, service: CostParameterService, costItemService: CostItemService, rowsBuilder: CostItemRowsBuilder);
26
31
  ngOnInit(): void;
27
32
  get itemsArray(): FormArray;
28
33
  get title(): string;
29
- isRate(costItem: CostItemDto): boolean;
30
- isCustom(costItem: CostItemDto): boolean;
31
34
  onVisibleChange(value: boolean): void;
32
35
  save(): void;
33
36
  private loadCostItems;
34
37
  static ɵfac: i0.ɵɵFactoryDeclaration<CostParameterFormComponent, never>;
35
- static ɵcmp: i0.ɵɵComponentDeclaration<CostParameterFormComponent, "lib-cost-parameter-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; "productGroupOptions": "productGroupOptions"; "regionOptions": "regionOptions"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<CostParameterFormComponent, "lib-cost-parameter-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; "productGroupOptions": "productGroupOptions"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
36
39
  }
@@ -1,24 +1,24 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
3
- import { CostParameterService, CostParameterCategoryLookupDto, CostParameterDto } from '@hitsoft/kadooglu-keops/proxy';
3
+ import { CostParameterService, CostParameterDto, CostParameterCategoryDto, CostParameterCategoryService } from '@hitsoft/kadooglu-keops/proxy';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class CostParametersComponent implements OnInit {
6
6
  private readonly service;
7
+ private readonly categoryService;
7
8
  private readonly toaster;
8
9
  private readonly confirmation;
9
10
  items: CostParameterDto[];
10
- productGroupOptions: CostParameterCategoryLookupDto[];
11
- regionOptions: CostParameterCategoryLookupDto[];
11
+ productGroupOptions: CostParameterCategoryDto[];
12
12
  selected: CostParameterDto | null;
13
13
  formVisible: boolean;
14
14
  formMode: 'create' | 'edit';
15
- constructor(service: CostParameterService, toaster: ToasterService, confirmation: ConfirmationService);
15
+ constructor(service: CostParameterService, categoryService: CostParameterCategoryService, toaster: ToasterService, confirmation: ConfirmationService);
16
16
  ngOnInit(): void;
17
17
  getStatusLabel(value: any): string;
18
18
  getProductGroupName(code: string | undefined | null): string;
19
- getRegionName(code: string | undefined | null): string;
19
+ getRegionLabel(value: any): string;
20
20
  private resolveName;
21
- loadCodeLookups(): void;
21
+ load(): void;
22
22
  loadList(): void;
23
23
  openCreate(): void;
24
24
  openEdit(row: CostParameterDto): void;
@@ -0,0 +1,25 @@
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { DestinationPortService, DestinationPortDto, CountryLookupDto } from '@hitsoft/kadooglu-keops/proxy';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DestinationPortFormComponent implements OnInit, OnChanges {
6
+ private readonly fb;
7
+ private readonly service;
8
+ visible: boolean;
9
+ mode: 'create' | 'edit';
10
+ current: DestinationPortDto | null;
11
+ countries: CountryLookupDto[];
12
+ visibleChange: EventEmitter<boolean>;
13
+ saved: EventEmitter<void>;
14
+ form: FormGroup;
15
+ saving: boolean;
16
+ constructor(fb: FormBuilder, service: DestinationPortService);
17
+ ngOnInit(): void;
18
+ ngOnChanges(changes: SimpleChanges): void;
19
+ private buildForm;
20
+ get title(): string;
21
+ onVisibleChange(value: boolean): void;
22
+ save(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<DestinationPortFormComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<DestinationPortFormComponent, "lib-destination-port-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; "countries": "countries"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
25
+ }
@@ -0,0 +1,24 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
3
+ import { DestinationPortService, DestinationPortDto, CountryLookupDto } from '@hitsoft/kadooglu-keops/proxy';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DestinationPortsComponent implements OnInit {
6
+ private readonly service;
7
+ private readonly toaster;
8
+ private readonly confirmation;
9
+ items: DestinationPortDto[];
10
+ countries: CountryLookupDto[];
11
+ selected: DestinationPortDto | null;
12
+ formVisible: boolean;
13
+ formMode: 'create' | 'edit';
14
+ constructor(service: DestinationPortService, toaster: ToasterService, confirmation: ConfirmationService);
15
+ ngOnInit(): void;
16
+ loadList(): void;
17
+ getCountryName(code: string): string;
18
+ openCreate(): void;
19
+ openEdit(row: DestinationPortDto): void;
20
+ onSaved(): void;
21
+ remove(row: DestinationPortDto): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<DestinationPortsComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<DestinationPortsComponent, "lib-destination-ports", never, {}, {}, never, never, false>;
24
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/router";
3
+ export declare class HitDestinationPortsRoutingModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitDestinationPortsRoutingModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitDestinationPortsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitDestinationPortsRoutingModule>;
7
+ }
@@ -0,0 +1,18 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/destination-ports.component";
3
+ import * as i2 from "./components/destination-port-form.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "@abp/ng.core";
7
+ import * as i6 from "@abp/ng.theme.shared";
8
+ import * as i7 from "@abp/ng.components/page";
9
+ import * as i8 from "@volo/abp.commercial.ng.ui";
10
+ import * as i9 from "@ng-bootstrap/ng-bootstrap";
11
+ import * as i10 from "./hit-destination-ports-routing.module";
12
+ import * as i11 from "devextreme-angular";
13
+ export declare class HitDestinationPortsModule {
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitDestinationPortsModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitDestinationPortsModule, [typeof i1.DestinationPortsComponent, typeof i2.DestinationPortFormComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.CoreModule, typeof i6.ThemeSharedModule, typeof i7.PageModule, typeof i8.CommercialUiModule, typeof i9.NgbDropdownModule, typeof i10.HitDestinationPortsRoutingModule, typeof i11.DxDataGridModule], never>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitDestinationPortsModule>;
17
+ }
18
+ export declare function loadHitDestinationPortsModuleAsChild(): Promise<typeof HitDestinationPortsModule>;
@@ -0,0 +1,24 @@
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { FobInlandDefinitionService, FobInlandDefinitionDto } from '@hitsoft/kadooglu-keops/proxy';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FobInlandDefinitionFormComponent implements OnInit, OnChanges {
6
+ private readonly fb;
7
+ private readonly service;
8
+ visible: boolean;
9
+ mode: 'create' | 'edit';
10
+ current: FobInlandDefinitionDto | null;
11
+ visibleChange: EventEmitter<boolean>;
12
+ saved: EventEmitter<void>;
13
+ form: FormGroup;
14
+ saving: boolean;
15
+ constructor(fb: FormBuilder, service: FobInlandDefinitionService);
16
+ ngOnInit(): void;
17
+ ngOnChanges(changes: SimpleChanges): void;
18
+ private buildForm;
19
+ get title(): string;
20
+ onVisibleChange(value: boolean): void;
21
+ save(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<FobInlandDefinitionFormComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<FobInlandDefinitionFormComponent, "lib-fob-inland-definition-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
24
+ }
@@ -0,0 +1,22 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
3
+ import { FobInlandDefinitionService, FobInlandDefinitionDto } from '@hitsoft/kadooglu-keops/proxy';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FobInlandDefinitionsComponent implements OnInit {
6
+ private readonly service;
7
+ private readonly toaster;
8
+ private readonly confirmation;
9
+ items: FobInlandDefinitionDto[];
10
+ selected: FobInlandDefinitionDto | null;
11
+ formVisible: boolean;
12
+ formMode: 'create' | 'edit';
13
+ constructor(service: FobInlandDefinitionService, toaster: ToasterService, confirmation: ConfirmationService);
14
+ ngOnInit(): void;
15
+ loadList(): void;
16
+ openCreate(): void;
17
+ openEdit(row: FobInlandDefinitionDto): void;
18
+ onSaved(): void;
19
+ remove(row: FobInlandDefinitionDto): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<FobInlandDefinitionsComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<FobInlandDefinitionsComponent, "lib-fob-inland-definitions", never, {}, {}, never, never, false>;
22
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/router";
3
+ export declare class HitFobInlandDefinitionsRoutingModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitFobInlandDefinitionsRoutingModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitFobInlandDefinitionsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitFobInlandDefinitionsRoutingModule>;
7
+ }
@@ -0,0 +1,18 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/fob-inland-definitions.component";
3
+ import * as i2 from "./components/fob-inland-definition-form.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "@abp/ng.core";
7
+ import * as i6 from "@abp/ng.theme.shared";
8
+ import * as i7 from "@abp/ng.components/page";
9
+ import * as i8 from "@volo/abp.commercial.ng.ui";
10
+ import * as i9 from "@ng-bootstrap/ng-bootstrap";
11
+ import * as i10 from "./hit-fob-inland-definitions-routing.module";
12
+ import * as i11 from "devextreme-angular";
13
+ export declare class HitFobInlandDefinitionsModule {
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitFobInlandDefinitionsModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitFobInlandDefinitionsModule, [typeof i1.FobInlandDefinitionsComponent, typeof i2.FobInlandDefinitionFormComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.CoreModule, typeof i6.ThemeSharedModule, typeof i7.PageModule, typeof i8.CommercialUiModule, typeof i9.NgbDropdownModule, typeof i10.HitFobInlandDefinitionsRoutingModule, typeof i11.DxDataGridModule], never>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitFobInlandDefinitionsModule>;
17
+ }
18
+ export declare function loadHitFobInlandDefinitionsModuleAsChild(): Promise<typeof HitFobInlandDefinitionsModule>;
@@ -0,0 +1,22 @@
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { FreightOfferService, FreightOfferDto } from '@hitsoft/kadooglu-keops/proxy';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FreightOfferCopyComponent implements OnInit, OnChanges {
6
+ private readonly fb;
7
+ private readonly service;
8
+ visible: boolean;
9
+ source: FreightOfferDto | null;
10
+ visibleChange: EventEmitter<boolean>;
11
+ copied: EventEmitter<void>;
12
+ form: FormGroup;
13
+ saving: boolean;
14
+ constructor(fb: FormBuilder, service: FreightOfferService);
15
+ ngOnInit(): void;
16
+ ngOnChanges(changes: SimpleChanges): void;
17
+ private buildForm;
18
+ onVisibleChange(value: boolean): void;
19
+ save(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<FreightOfferCopyComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<FreightOfferCopyComponent, "lib-freight-offer-copy", never, { "visible": "visible"; "source": "source"; }, { "visibleChange": "visibleChange"; "copied": "copied"; }, never, never, false>;
22
+ }