@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 @@
1
+ export * from './models';
@@ -0,0 +1,10 @@
1
+ export interface PriceListDto {
2
+ priceListNo: number;
3
+ priceListName?: string;
4
+ factor: number;
5
+ basePriceListName?: string;
6
+ }
7
+ export interface PriceListItemDto {
8
+ itemCode?: string;
9
+ itemName?: string;
10
+ }
@@ -0,0 +1 @@
1
+ export * from './models';
@@ -0,0 +1,104 @@
1
+ import type { BusinessRegion } from '../../business-region.enum';
2
+ import type { PriceParameterStatus } from '../price-parameter-status.enum';
3
+ import type { Currency } from '../../currencies/currency.enum';
4
+ import type { CostParameterItemDto, CostParameterItemInputDto } from '../../cost-parameters/dtos/models';
5
+ export interface PriceParameterCreateDto {
6
+ typeCode: string;
7
+ region: BusinessRegion;
8
+ groupCode: string;
9
+ exchangeRateUsd: number;
10
+ exchangeRateEur: number;
11
+ fromDate?: string;
12
+ toDate?: string;
13
+ status: PriceParameterStatus;
14
+ description?: string;
15
+ customerCode?: string;
16
+ gekap: number;
17
+ gekapCurrency: Currency;
18
+ generalQuota: number;
19
+ promotionalQuota: number;
20
+ rawOilPrice: number;
21
+ rawOilCurrency: Currency;
22
+ items: CostParameterItemInputDto[];
23
+ discounts: PriceParameterDiscountInputDto[];
24
+ }
25
+ export interface PriceParameterDiscountDto {
26
+ salesEmployeeCode?: number;
27
+ salesEmployeeName?: string;
28
+ rate?: number;
29
+ }
30
+ export interface PriceParameterDiscountInputDto {
31
+ salesEmployeeCode?: number;
32
+ rate?: number;
33
+ }
34
+ export interface PriceParameterDto {
35
+ docEntry: number;
36
+ docNum?: number;
37
+ typeCode?: string;
38
+ region: BusinessRegion;
39
+ groupCode?: string;
40
+ exchangeRateUsd: number;
41
+ exchangeRateEur: number;
42
+ fromDate?: string;
43
+ toDate?: string;
44
+ docDate?: string;
45
+ status: PriceParameterStatus;
46
+ description?: string;
47
+ customerCode?: string;
48
+ gekap: number;
49
+ gekapCurrency: Currency;
50
+ generalQuota: number;
51
+ promotionalQuota: number;
52
+ rawOilPrice: number;
53
+ rawOilCurrency: Currency;
54
+ items: CostParameterItemDto[];
55
+ discounts: PriceParameterDiscountDto[];
56
+ }
57
+ export interface PriceParameterUpdateDto {
58
+ typeCode: string;
59
+ region: BusinessRegion;
60
+ groupCode: string;
61
+ exchangeRateUsd: number;
62
+ exchangeRateEur: number;
63
+ fromDate?: string;
64
+ toDate?: string;
65
+ status: PriceParameterStatus;
66
+ description?: string;
67
+ customerCode?: string;
68
+ gekap: number;
69
+ gekapCurrency: Currency;
70
+ generalQuota: number;
71
+ promotionalQuota: number;
72
+ rawOilPrice: number;
73
+ rawOilCurrency: Currency;
74
+ items: CostParameterItemInputDto[];
75
+ discounts: PriceParameterDiscountInputDto[];
76
+ }
77
+ export interface PriceUpdatePreviewDto {
78
+ priceListNo: number;
79
+ items: PriceUpdatePreviewItemDto[];
80
+ }
81
+ export interface PriceUpdatePreviewInputDto {
82
+ businessRegion: BusinessRegion;
83
+ cpGroupCode?: string;
84
+ priceListNo: number;
85
+ salesPriceExcludingPackagingTry: number;
86
+ rateUsd: number;
87
+ rateEur: number;
88
+ }
89
+ export interface PriceUpdatePreviewItemDto {
90
+ itemCode?: string;
91
+ itemName?: string;
92
+ inventoryWeight?: number;
93
+ packagingPriceTry: number;
94
+ packagingPriceUsd: number;
95
+ packagingPriceEur: number;
96
+ currentPriceTry?: number;
97
+ currentPriceUsd?: number;
98
+ currentPriceEur?: number;
99
+ newPriceTry: number;
100
+ newPriceUsd: number;
101
+ newPriceEur: number;
102
+ skipped: boolean;
103
+ skipReason?: string;
104
+ }
@@ -0,0 +1,6 @@
1
+ export declare enum PriceParameterStatus {
2
+ Active = 1,
3
+ Passive = 2,
4
+ InProgress = 3
5
+ }
6
+ export declare const priceParameterStatusOptions: import("@abp/ng.core").ABP.Option<typeof PriceParameterStatus>[];
@@ -1,3 +1,7 @@
1
+ export * from './business-region.enum';
2
+ export * from './bl-tracking/dtos';
3
+ export * from './business-partners/dtos';
4
+ export * from './carriers/dtos';
1
5
  export * from './container-definitions/dtos';
2
6
  export * from './container-loading-counts/dtos';
3
7
  export * from './container-loading-counts/loading-target-kind.enum';
@@ -12,17 +16,29 @@ export * from './cost-items/dtos';
12
16
  export * from './cost-items/cost-item-calculation-type.enum';
13
17
  export * from './cost-items/cost-item-system-code.enum';
14
18
  export * from './cost-parameter-categories/dtos';
15
- export * from './cost-parameter-categories/cost-parameter-category-parent-code.enum';
16
19
  export * from './cost-parameters/dtos';
17
20
  export * from './cost-parameters/cost-parameter-status.enum';
18
21
  export * from './currencies';
22
+ export * from './destination-ports/dtos';
19
23
  export * from './exchange-rates/dtos';
20
24
  export * from './exchange-rates/exchange-rate-source.enum';
25
+ export * from './fob-inland-definitions/dtos';
26
+ export * from './freight-offers/dtos';
27
+ export * from './incoterms/dtos';
28
+ export * from './item-classifications/dtos';
29
+ export * from './item-package-groups/dtos';
30
+ export * from './item-package-types/dtos';
31
+ export * from './item-product-types/dtos';
21
32
  export * from './items/dtos';
33
+ export * from './lines/dtos';
22
34
  export * from './packaging-materials/dtos';
23
35
  export * from './packaging-prices/dtos';
24
36
  export * from './packaging-types/dtos';
25
37
  export * from './pallet-definitions/dtos';
38
+ export * from './pos/dtos';
39
+ export * from './price-lists/dtos';
26
40
  export * from './price-parameter-types/dtos';
41
+ export * from './price-parameters/dtos';
42
+ export * from './price-parameters/price-parameter-status.enum';
27
43
  export * from './sales-persons/dtos';
28
44
  export * from './settings';
@@ -1,3 +1,4 @@
1
1
  export interface CostSettingsDto {
2
2
  itemPackagePriceListNo: number;
3
+ itemPackageCodePrefix?: string;
3
4
  }
@@ -1,9 +0,0 @@
1
- import { CostParameterCategoryParentCode } from '@hitsoft/kadooglu-keops/proxy';
2
- export const parentCodeLabels = {
3
- [CostParameterCategoryParentCode.Code1]: 'Keops::CostParameterCategories:ParentCode:Code1',
4
- [CostParameterCategoryParentCode.Code2]: 'Keops::CostParameterCategories:ParentCode:Code2',
5
- [CostParameterCategoryParentCode.Code3]: 'Keops::CostParameterCategories:ParentCode:Code3',
6
- [CostParameterCategoryParentCode.Code4]: 'Keops::CostParameterCategories:ParentCode:Code4',
7
- [CostParameterCategoryParentCode.Code5]: 'Keops::CostParameterCategories:ParentCode:Code5',
8
- };
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29zdC1wYXJhbWV0ZXItY2F0ZWdvcnktbDEwbi1oZWxwZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9rYWRvb2dsdS1rZW9wcy9zcmMvbGliL2ZlYXR1cmVzL2Nvc3QtcGFyYW1ldGVyLWNhdGVnb3JpZXMvY29zdC1wYXJhbWV0ZXItY2F0ZWdvcnktbDEwbi1oZWxwZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLCtCQUErQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFFaEYsTUFBTSxDQUFDLE1BQU0sZ0JBQWdCLEdBQW9EO0lBQy9FLENBQUMsK0JBQStCLENBQUMsS0FBSyxDQUFDLEVBQUUsaURBQWlEO0lBQzFGLENBQUMsK0JBQStCLENBQUMsS0FBSyxDQUFDLEVBQUUsaURBQWlEO0lBQzFGLENBQUMsK0JBQStCLENBQUMsS0FBSyxDQUFDLEVBQUUsaURBQWlEO0lBQzFGLENBQUMsK0JBQStCLENBQUMsS0FBSyxDQUFDLEVBQUUsaURBQWlEO0lBQzFGLENBQUMsK0JBQStCLENBQUMsS0FBSyxDQUFDLEVBQUUsaURBQWlEO0NBQzNGLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlIH0gZnJvbSAnQGhpdHNvZnQva2Fkb29nbHUta2VvcHMvcHJveHknO1xyXG5cclxuZXhwb3J0IGNvbnN0IHBhcmVudENvZGVMYWJlbHM6IFJlY29yZDxDb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlLCBzdHJpbmc+ID0ge1xyXG4gIFtDb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlLkNvZGUxXTogJ0tlb3BzOjpDb3N0UGFyYW1ldGVyQ2F0ZWdvcmllczpQYXJlbnRDb2RlOkNvZGUxJyxcclxuICBbQ29zdFBhcmFtZXRlckNhdGVnb3J5UGFyZW50Q29kZS5Db2RlMl06ICdLZW9wczo6Q29zdFBhcmFtZXRlckNhdGVnb3JpZXM6UGFyZW50Q29kZTpDb2RlMicsXHJcbiAgW0Nvc3RQYXJhbWV0ZXJDYXRlZ29yeVBhcmVudENvZGUuQ29kZTNdOiAnS2VvcHM6OkNvc3RQYXJhbWV0ZXJDYXRlZ29yaWVzOlBhcmVudENvZGU6Q29kZTMnLFxyXG4gIFtDb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlLkNvZGU0XTogJ0tlb3BzOjpDb3N0UGFyYW1ldGVyQ2F0ZWdvcmllczpQYXJlbnRDb2RlOkNvZGU0JyxcclxuICBbQ29zdFBhcmFtZXRlckNhdGVnb3J5UGFyZW50Q29kZS5Db2RlNV06ICdLZW9wczo6Q29zdFBhcmFtZXRlckNhdGVnb3JpZXM6UGFyZW50Q29kZTpDb2RlNScsXHJcbn07XHJcbiJdfQ==
@@ -1,11 +0,0 @@
1
- import { mapEnumToOptions } from '@abp/ng.core';
2
- export var CostParameterCategoryParentCode;
3
- (function (CostParameterCategoryParentCode) {
4
- CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code1"] = 1] = "Code1";
5
- CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code2"] = 2] = "Code2";
6
- CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code3"] = 3] = "Code3";
7
- CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code4"] = 4] = "Code4";
8
- CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code5"] = 5] = "Code5";
9
- })(CostParameterCategoryParentCode || (CostParameterCategoryParentCode = {}));
10
- export const costParameterCategoryParentCodeOptions = mapEnumToOptions(CostParameterCategoryParentCode);
11
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29zdC1wYXJhbWV0ZXItY2F0ZWdvcnktcGFyZW50LWNvZGUuZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2thZG9vZ2x1LWtlb3BzL3Byb3h5L3NyYy9jb3N0LXBhcmFtZXRlci1jYXRlZ29yaWVzL2Nvc3QtcGFyYW1ldGVyLWNhdGVnb3J5LXBhcmVudC1jb2RlLmVudW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sY0FBYyxDQUFDO0FBRWhELE1BQU0sQ0FBTixJQUFZLCtCQU1YO0FBTkQsV0FBWSwrQkFBK0I7SUFDekMsdUZBQVMsQ0FBQTtJQUNULHVGQUFTLENBQUE7SUFDVCx1RkFBUyxDQUFBO0lBQ1QsdUZBQVMsQ0FBQTtJQUNULHVGQUFTLENBQUE7QUFDWCxDQUFDLEVBTlcsK0JBQStCLEtBQS9CLCtCQUErQixRQU0xQztBQUVELE1BQU0sQ0FBQyxNQUFNLHNDQUFzQyxHQUFHLGdCQUFnQixDQUFDLCtCQUErQixDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBtYXBFbnVtVG9PcHRpb25zIH0gZnJvbSAnQGFicC9uZy5jb3JlJztcclxuXHJcbmV4cG9ydCBlbnVtIENvc3RQYXJhbWV0ZXJDYXRlZ29yeVBhcmVudENvZGUge1xyXG4gIENvZGUxID0gMSxcclxuICBDb2RlMiA9IDIsXHJcbiAgQ29kZTMgPSAzLFxyXG4gIENvZGU0ID0gNCxcclxuICBDb2RlNSA9IDUsXHJcbn1cclxuXHJcbmV4cG9ydCBjb25zdCBjb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlT3B0aW9ucyA9IG1hcEVudW1Ub09wdGlvbnMoQ29zdFBhcmFtZXRlckNhdGVnb3J5UGFyZW50Q29kZSk7XHJcbiJdfQ==
@@ -1,2 +0,0 @@
1
- import { CostParameterCategoryParentCode } from '@hitsoft/kadooglu-keops/proxy';
2
- export declare const parentCodeLabels: Record<CostParameterCategoryParentCode, string>;
@@ -1,8 +0,0 @@
1
- export declare enum CostParameterCategoryParentCode {
2
- Code1 = 1,
3
- Code2 = 2,
4
- Code3 = 3,
5
- Code4 = 4,
6
- Code5 = 5
7
- }
8
- export declare const costParameterCategoryParentCodeOptions: import("@abp/ng.core").ABP.Option<typeof CostParameterCategoryParentCode>[];