adata-ui 2.0.89 → 2.0.91

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.
@@ -25,7 +25,14 @@ import Connections from "#adata-ui/icons/sviazi.vue";
25
25
  import {useCurrentModule} from "#adata-ui/composables/projectState";
26
26
  import IconCalc from '#adata-ui/icons/calculator.vue'
27
27
  import { buildLocalizedUrl } from '#adata-ui/utils/localizedNavigation'
28
- import { AIconFiles } from '#components'
28
+ import {
29
+ AIconAkimat,
30
+ AIconCurrencyTenge,
31
+ AIconExcelIcon,
32
+ AIconFiles, AIconSearch,
33
+ AIconUsers,
34
+ AIconWarningTriangle
35
+ } from '#components'
29
36
  import MapPinRect from '#adata-ui/icons/map/map-pin-rect.vue'
30
37
  import ChartBar from '#adata-ui/icons/chart-bar.vue'
31
38
  import Bank from '#adata-ui/icons/bank.vue'
@@ -146,29 +153,34 @@ const sideLinks = <any>{
146
153
  ],
147
154
  tenders: [
148
155
  {
149
- icon: ChartBar,
150
- label: t('header.products.tenders.items.monitoring.title'),
151
- link: urls.zakupki + PAGES.tender.monitoring,
156
+ icon: AIconUsers,
157
+ label: t('header.products.tenders.items.customers.title'),
158
+ link: urls.zakupki + PAGES.tender.customers,
152
159
  },
153
160
  {
154
- icon: Bank,
161
+ icon: AIconAkimat,
155
162
  label: t('header.products.tenders.items.akimat.title'),
156
163
  link: urls.zakupki + PAGES.tender.akimat,
157
164
  },
158
165
  {
159
- icon: IconSearch,
160
- label: 'header.products.tenders.items.tenders.title',
161
- link: urls.tender + PAGES.tender.main
166
+ icon: AIconWarningTriangle,
167
+ label: 'header.products.tenders.items.tru.title',
168
+ link: urls.zakupki + PAGES.tender.tru
162
169
  },
163
170
  {
164
- icon: IconFile,
165
- label: 'header.products.tenders.items.contracts.title',
166
- link: urls.tender + PAGES.tender.contracts
171
+ icon: AIconCurrencyTenge,
172
+ label: 'header.products.tenders.items.price.title',
173
+ link: urls.zakupki + PAGES.tender.price
174
+ },
175
+ {
176
+ icon: AIconExcelIcon,
177
+ label: 'header.products.tenders.items.constructor.title',
178
+ link: urls.zakupki + PAGES.tender.constructor
167
179
  },
168
180
  {
169
- icon: IconCheck,
170
- label: 'header.products.tenders.items.procurement.title',
171
- link: urls.tender + PAGES.tender.plans
181
+ icon: AIconSearch,
182
+ label: 'header.products.tenders.items.monitoring.title',
183
+ link: urls.tender
172
184
  }
173
185
  ],
174
186
  analytics: [
@@ -177,11 +189,11 @@ const sideLinks = <any>{
177
189
  // label: 'header.products.analytics.items.clients.title',
178
190
  // link: myLayer.analyticsUrl + PAGES.analytics.clients
179
191
  // },
180
- {
181
- icon: IconCheck,
182
- label: 'header.products.analytics.items.procurement.title',
183
- link: urls.analyticsNew + PAGES.analytics.main
184
- },
192
+ // {
193
+ // icon: IconCheck,
194
+ // label: 'header.products.analytics.items.procurement.title',
195
+ // link: urls.analyticsNew + PAGES.analytics.main
196
+ // },
185
197
  {
186
198
  icon: IconArrowGraph,
187
199
  label: 'header.products.analytics.items.activity.title',
@@ -38,7 +38,7 @@ import {
38
38
  AIconGlobe,
39
39
  AIconId,
40
40
  AIconFiles,
41
- AIconArrowSquareDown, AIconExpandWindow
41
+ AIconArrowSquareDown, AIconExpandWindow, AIconUsers, AIconWarningTriangle, AIconSearch, AIconAkimat, AIconCurrencyTenge, AIconExcelIcon
42
42
  } from '#components'
43
43
  import MapPinRect from '#adata-ui/icons/map/map-pin-rect.vue'
44
44
  import MapPaper from '#adata-ui/icons/map-paper.vue'
@@ -140,35 +140,41 @@ export const useHeaderNavigationLinks = () => {
140
140
  to: urls.tender,
141
141
  items: [
142
142
  {
143
- title: t('header.products.tenders.items.monitoring.title'),
144
- subtitle: t('header.products.tenders.items.monitoring.subtitle'),
145
- icon: ChartBar,
146
- to: urls.zakupki + PAGES.tender.monitoring,
143
+ title: t('header.products.tenders.items.customers.title'),
144
+ subtitle: t('header.products.tenders.items.customers.subtitle'),
145
+ icon: AIconUsers,
146
+ to: urls.zakupki + PAGES.tender.customers,
147
147
  },
148
148
  {
149
149
  title: t('header.products.tenders.items.akimat.title'),
150
150
  subtitle: t('header.products.tenders.items.akimat.subtitle'),
151
- icon: Bank,
151
+ icon: AIconAkimat,
152
152
  to: urls.zakupki + PAGES.tender.akimat,
153
153
  },
154
154
  {
155
- title: t('header.products.tenders.items.tenders.title'),
156
- subtitle: t('header.products.tenders.items.tenders.subtitle'),
157
- icon: IconSearch,
158
- to: urls.tender + PAGES.tender.main
155
+ title: t('header.products.tenders.items.tru.title'),
156
+ subtitle: t('header.products.tenders.items.tru.subtitle'),
157
+ icon: AIconWarningTriangle,
158
+ to: urls.zakupki + PAGES.tender.tru,
159
159
  },
160
160
  {
161
- title: t('header.products.tenders.items.procurement.title'),
162
- subtitle: t('header.products.tenders.items.procurement.subtitle'),
163
- icon: IconCheck,
164
- to: urls.tender + PAGES.tender.plans
161
+ title: t('header.products.tenders.items.price.title'),
162
+ subtitle: t('header.products.tenders.items.price.subtitle'),
163
+ icon: AIconCurrencyTenge,
164
+ to: urls.zakupki + PAGES.tender.price,
165
165
  },
166
166
  {
167
- title: t('header.products.tenders.items.contracts.title'),
168
- subtitle: t('header.products.tenders.items.contracts.subtitle'),
169
- icon: IconFile,
170
- to: urls.tender + PAGES.tender.contracts
171
- }
167
+ title: t('header.products.tenders.items.constructor.title'),
168
+ subtitle: t('header.products.tenders.items.constructor.subtitle'),
169
+ icon: AIconExcelIcon,
170
+ to: urls.zakupki + PAGES.tender.constructor,
171
+ },
172
+ {
173
+ title: t('header.products.tenders.items.monitoring.title'),
174
+ subtitle: t('header.products.tenders.items.monitoring.subtitle'),
175
+ icon: AIconSearch,
176
+ to: urls.tender,
177
+ },
172
178
  ]
173
179
  },
174
180
  {
@@ -176,12 +182,12 @@ export const useHeaderNavigationLinks = () => {
176
182
  name: t('header.products.analytics.label'),
177
183
  icon: AIconArrowGraphUp,
178
184
  items: [
179
- {
180
- title: t('header.products.analytics.items.procurement.title'),
181
- subtitle: t('header.products.analytics.items.procurement.subtitle'),
182
- icon: IconClipboardText,
183
- to: buildLocalizedUrl(locale, urls.analyticsNew, PAGES.analytics.main)
184
- },
185
+ // {
186
+ // title: t('header.products.analytics.items.procurement.title'),
187
+ // subtitle: t('header.products.analytics.items.procurement.subtitle'),
188
+ // icon: IconClipboardText,
189
+ // to: buildLocalizedUrl(locale, urls.analyticsNew, PAGES.analytics.main)
190
+ // },
185
191
  {
186
192
  title: t('header.products.analytics.items.activity.title'),
187
193
  subtitle: t('header.products.analytics.items.activity.subtitle'),
@@ -0,0 +1,20 @@
1
+
2
+ <template>
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <g clip-path="url(#clip0_287_13679)">
5
+ <path d="M19.6002 10.0712H4.40303C3.68304 10.0712 3.37447 9.28688 3.94018 8.91402L11.5387 3.9383C11.679 3.85577 11.8388 3.81226 12.0016 3.81226C12.1644 3.81226 12.3242 3.85577 12.4645 3.9383L20.063 8.91402C20.6288 9.28688 20.3202 10.0712 19.6002 10.0712Z" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M19.7139 17.1428H4.28537C3.93033 17.1428 3.64252 17.4306 3.64252 17.7856V19.7142C3.64252 20.0692 3.93033 20.357 4.28537 20.357H19.7139C20.0689 20.357 20.3568 20.0692 20.3568 19.7142V17.7856C20.3568 17.4306 20.0689 17.1428 19.7139 17.1428Z" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M5.57111 10.0713V17.1427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M9.8551 10.0713V17.1427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M14.1442 10.0713V17.1427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M18.4282 10.0713V17.1427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
11
+ </g>
12
+ <defs>
13
+ <clipPath id="clip0_287_13679">
14
+ <rect width="18" height="18" fill="white" transform="translate(3.00134 3)"/>
15
+ </clipPath>
16
+ </defs>
17
+ </svg>
18
+ </template>
19
+ <script setup lang="ts">
20
+ </script>
@@ -0,0 +1,9 @@
1
+
2
+ <template>
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M6.85714 5.50375C6.85714 4.83104 7.40248 4.28571 8.07519 4.28571H16.1955C16.8682 4.28571 17.4135 4.83104 17.4135 5.50375C17.4135 6.17646 16.8682 6.7218 16.1955 6.7218H8.07519C7.40248 6.7218 6.85714 6.17646 6.85714 5.50375Z" fill="currentColor"/>
5
+ <path d="M6.85714 11.072C6.85714 10.3993 7.40248 9.85394 8.07519 9.85394H16.1955C16.8682 9.85394 17.4135 10.3993 17.4135 11.072C17.4135 11.7447 16.8682 12.29 16.1955 12.29H13.3534V18.4962C13.3534 19.1689 12.8081 19.7143 12.1353 19.7143C11.4626 19.7143 10.9173 19.1689 10.9173 18.4962V12.29H8.07519C7.40248 12.29 6.85714 11.7447 6.85714 11.072Z" fill="currentColor"/>
6
+ </svg>
7
+ </template>
8
+ <script setup lang="ts">
9
+ </script>
@@ -0,0 +1,14 @@
1
+
2
+
3
+ <template>
4
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
+ <path d="M11.3574 15.2141V20.357H13.9288" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M4.92883 15.2141L8.14312 20.357" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M8.14312 15.2141L4.92883 20.357" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M19.0717 16.0713C18.8951 15.5719 18.3458 15.2141 17.786 15.2141C17.1026 15.2141 16.5002 15.768 16.5002 16.4514C16.5002 16.9836 16.8624 17.4475 17.3788 17.5766L18.1052 17.7582C18.6732 17.9002 19.0717 18.4105 19.0717 18.996V19.0713C19.0717 19.7814 18.4961 20.357 17.786 20.357C17.2262 20.357 16.6768 19.9992 16.5002 19.4998" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M4.92883 12.6427V4.92841C4.92883 4.58742 5.0643 4.2604 5.30541 4.01928C5.54653 3.77816 5.87355 3.6427 6.21455 3.6427H14.5717L19.0717 8.1427V12.6427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M14.5717 3.80341V8.14269H18.9109" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
11
+ </svg>
12
+ </template>
13
+ <script setup lang="ts">
14
+ </script>
package/lang/en.ts CHANGED
@@ -119,14 +119,30 @@ const EnLocale: RuLocale = {
119
119
  tenders: {
120
120
  label: 'Procurement',
121
121
  items: {
122
- monitoring: {
123
- title: 'Procurement Monitoring',
124
- subtitle: 'Information about procurements, use search by keywords to find lots that match your interests or line of work',
122
+ customers: {
123
+ title: 'Participant Analysis',
124
+ subtitle: 'Ratings and profiles of participants: specialization, deals and prices, market share and dynamics',
125
125
  },
126
126
  akimat: {
127
127
  title: 'Akimat. Reports',
128
128
  subtitle: 'Information about procurements, use search by keywords to find lots that match your interests or line of work',
129
129
  },
130
+ tru: {
131
+ title: 'Goods, Works and Services Analysis',
132
+ subtitle: 'Procurement trends: thematic search, market by items, prices and volumes, total budget and leaders',
133
+ },
134
+ price: {
135
+ title: 'Price Analysis',
136
+ subtitle: 'Tracking prices for goods, works, and services with smart search and accurate selection for budgeting, margin calculation, and deviation detection',
137
+ },
138
+ constructor: {
139
+ title: 'Report Builder',
140
+ subtitle: 'Flexible creation and fast export of detailed reports',
141
+ },
142
+ monitoring: {
143
+ title: 'Procurement Monitoring',
144
+ subtitle: 'Information about procurements, use search by keywords to find lots that match your interests or line of work',
145
+ },
130
146
  tenders: {
131
147
  title: 'Tender search',
132
148
  subtitle: 'Information about procurements, use search by keywords to find lots that match your interests or line of work',
package/lang/kk.ts CHANGED
@@ -119,13 +119,29 @@ const KkLocale: RuLocale = {
119
119
  tenders: {
120
120
  label: 'Сатып алулар',
121
121
  items: {
122
- monitoring: {
123
- title: 'Сатып алуларды мониторингі',
124
- subtitle: 'Information about procurements, use search by keywords to find lots that match your interests or line of work',
122
+ customers: {
123
+ title: 'Қатысушыларды талдау',
124
+ subtitle: 'Қатысушылардың рейтингтері мен профильдері: мамандану, мәмілелер мен бағалар, нарықтағы үлесі мен серпіні',
125
125
  },
126
126
  akimat: {
127
127
  title: 'Әкімдік. Есептер',
128
- subtitle: 'Information about procurements, use search by keywords to find lots that match your interests or line of work',
128
+ subtitle: 'Сатып алулар туралы ақпарат, қызығушылығыңызға немесе қызмет бағытыңызға сәйкес келетін лоттарды іздеу үшін кілт сөздер бойынша іздеуді пайдаланыңыз',
129
+ },
130
+ tru: {
131
+ title: 'ТБЖ талдауы',
132
+ subtitle: 'Сатып алу үрдістері: тақырыптық іздеу, позициялар бойынша нарық, бағалар мен көлемдер, жалпы бюджет пен көшбасшылар',
133
+ },
134
+ price: {
135
+ title: 'Бағаларды талдау',
136
+ subtitle: 'Тауарлар, жұмыстар мен қызметтердің бағаларын бақылау — бюджетті, маржаны есептеу және ауытқуларды анықтау үшін ақылды іздеу және дәл іріктеу',
137
+ },
138
+ constructor: {
139
+ title: 'Есептер конструкторы',
140
+ subtitle: 'Икемді қалыптастыру және егжей-тегжейлі есептерді тез жүктеу',
141
+ },
142
+ monitoring: {
143
+ title: 'Сатып алуларды мониторингі',
144
+ subtitle: 'Сатып алулар туралы ақпарат, қызығушылығыңызға немесе қызмет бағытыңызға сәйкес келетін лоттарды іздеу үшін кілт сөздер бойынша іздеуді пайдаланыңыз',
129
145
  },
130
146
  tenders: {
131
147
  title: 'Тендерлерді іздеу',
package/lang/ru.ts CHANGED
@@ -112,14 +112,30 @@ const RuLocale = {
112
112
  tenders: {
113
113
  label: 'Закупки',
114
114
  items: {
115
- monitoring: {
116
- title: 'Мониторинг закупок',
117
- subtitle: 'Information about procurements, use search by keywords to find lots that match your interests or line of work',
115
+ customers: {
116
+ title: 'Анализ участников',
117
+ subtitle: 'Рейтинги и профили участников: специализация, сделки и цены, доля и динамика на рынке',
118
118
  },
119
119
  akimat: {
120
120
  title: 'Акимат. Отчёты',
121
121
  subtitle: 'Information about procurements, use search by keywords to find lots that match your interests or line of work',
122
122
  },
123
+ tru: {
124
+ title: 'Анализ ТРУ',
125
+ subtitle: 'Тренды закупок: тематический поиск, рынок по позициям, цены и объёмы, общий бюджет и лидеры',
126
+ },
127
+ price: {
128
+ title: 'Анализ цен',
129
+ subtitle: 'Отслеживание цен на товары, работы и услуги с умным поиском и точным подбором для расчёта бюджета, маржи и выявления отклонений',
130
+ },
131
+ constructor: {
132
+ title: 'Конструктор отчётов',
133
+ subtitle: 'Гибкое формирование и быстрая выгрузка детализированных отчётов',
134
+ },
135
+ monitoring: {
136
+ title: 'Мониторинг закупок',
137
+ subtitle: 'Information about procurements, use search by keywords to find lots that match your interests or line of work',
138
+ },
123
139
  tenders: {
124
140
  title: 'Поиск тендеров',
125
141
  subtitle:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "adata-ui",
3
3
  "type": "module",
4
- "version": "2.0.89",
4
+ "version": "2.0.91",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",
@@ -39,6 +39,11 @@ export const PAGES = {
39
39
  vacancy: '/vacancy'
40
40
  },
41
41
  tender: {
42
+ customers: '/main/analytics/customers',
43
+ analytics: '/main/eoz/analytics',
44
+ tru: '/main/analytics/tru-dynamic-procurement',
45
+ price: '/main/price-analysis',
46
+ constructor: '/main/reporting/constructor',
42
47
  monitoring: '/',
43
48
  akimat: '/main/eoz',
44
49
  main: '/',