|
Lines 60-66
export const routes = [
Link Here
|
| 60 |
path: ":agreement_id", |
60 |
path: ":agreement_id", |
| 61 |
name: "AgreementsShow", |
61 |
name: "AgreementsShow", |
| 62 |
component: markRaw(AgreementsShow), |
62 |
component: markRaw(AgreementsShow), |
| 63 |
title: { dynamic: true, text: $__("Show agreement") }, |
63 |
title: { dynamic: true, identifier: "name", text: $__("Show agreement")}, |
| 64 |
}, |
64 |
}, |
| 65 |
{ |
65 |
{ |
| 66 |
path: "add", |
66 |
path: "add", |
|
Lines 72-78
export const routes = [
Link Here
|
| 72 |
path: "edit/:agreement_id", |
72 |
path: "edit/:agreement_id", |
| 73 |
name: "AgreementsFormAddEdit", |
73 |
name: "AgreementsFormAddEdit", |
| 74 |
component: markRaw(AgreementsFormAdd), |
74 |
component: markRaw(AgreementsFormAdd), |
| 75 |
title: { dynamic: true, text: $__("Edit agreement") }, |
75 |
title: { dynamic: true, identifier: "name", text: $__("Edit agreement")}, |
| 76 |
}, |
76 |
}, |
| 77 |
], |
77 |
], |
| 78 |
}, |
78 |
}, |
|
Lines 91-97
export const routes = [
Link Here
|
| 91 |
path: ":license_id", |
91 |
path: ":license_id", |
| 92 |
name: "LicensesShow", |
92 |
name: "LicensesShow", |
| 93 |
component: markRaw(LicensesShow), |
93 |
component: markRaw(LicensesShow), |
| 94 |
title: { dynamic: true, text: $__("Show license") }, |
94 |
title: { dynamic: true, identifier: "name", text: $__("Show license")} |
| 95 |
}, |
95 |
}, |
| 96 |
{ |
96 |
{ |
| 97 |
path: "add", |
97 |
path: "add", |
|
Lines 103-109
export const routes = [
Link Here
|
| 103 |
path: "edit/:license_id", |
103 |
path: "edit/:license_id", |
| 104 |
name: "LicensesFormAddEdit", |
104 |
name: "LicensesFormAddEdit", |
| 105 |
component: markRaw(LicensesFormAdd), |
105 |
component: markRaw(LicensesFormAdd), |
| 106 |
title: { dynamic: true, text: $__("Edit license") }, |
106 |
title: { dynamic: true, identifier: 'name', text: $__("Edit license")} |
| 107 |
}, |
107 |
}, |
| 108 |
], |
108 |
], |
| 109 |
}, |
109 |
}, |
|
Lines 141-150
export const routes = [
Link Here
|
| 141 |
component: markRaw( |
141 |
component: markRaw( |
| 142 |
EHoldingsLocalPackagesShow |
142 |
EHoldingsLocalPackagesShow |
| 143 |
), |
143 |
), |
| 144 |
title: { |
144 |
title: { dynamic: true, identifier: 'name', text: $__("Show package")} |
| 145 |
dynamic: true, |
|
|
| 146 |
text: $__("Show package"), |
| 147 |
}, |
| 148 |
}, |
145 |
}, |
| 149 |
{ |
146 |
{ |
| 150 |
path: "add", |
147 |
path: "add", |
|
Lines 163-172
export const routes = [
Link Here
|
| 163 |
component: markRaw( |
160 |
component: markRaw( |
| 164 |
EHoldingsLocalPackagesFormAdd |
161 |
EHoldingsLocalPackagesFormAdd |
| 165 |
), |
162 |
), |
| 166 |
title: { |
163 |
title: { dynamic: true, identifier: 'name', text: $__("Edit package")} |
| 167 |
dynamic: true, |
|
|
| 168 |
text: $__("Edit package"), |
| 169 |
}, |
| 170 |
}, |
164 |
}, |
| 171 |
], |
165 |
], |
| 172 |
}, |
166 |
}, |
|
Lines 189-198
export const routes = [
Link Here
|
| 189 |
component: markRaw( |
183 |
component: markRaw( |
| 190 |
EHoldingsLocalTitlesShow |
184 |
EHoldingsLocalTitlesShow |
| 191 |
), |
185 |
), |
| 192 |
title: { |
186 |
title: { dynamic: true, identifier: 'publication_title', text: $__("Show title")} |
| 193 |
dynamic: true, |
|
|
| 194 |
text: $__("Show title"), |
| 195 |
}, |
| 196 |
}, |
187 |
}, |
| 197 |
{ |
188 |
{ |
| 198 |
path: "add", |
189 |
path: "add", |
|
Lines 211-220
export const routes = [
Link Here
|
| 211 |
component: markRaw( |
202 |
component: markRaw( |
| 212 |
EHoldingsLocalTitlesFormAdd |
203 |
EHoldingsLocalTitlesFormAdd |
| 213 |
), |
204 |
), |
| 214 |
title: { |
205 |
title: { dynamic: true, identifier: 'publication_title', text: $__("Edit title")} |
| 215 |
dynamic: true, |
|
|
| 216 |
text: $__("Edit title"), |
| 217 |
}, |
| 218 |
}, |
206 |
}, |
| 219 |
{ |
207 |
{ |
| 220 |
path: "import", |
208 |
path: "import", |
|
Lines 233-242
export const routes = [
Link Here
|
| 233 |
component: markRaw( |
221 |
component: markRaw( |
| 234 |
EHoldingsLocalResourcesShow |
222 |
EHoldingsLocalResourcesShow |
| 235 |
), |
223 |
), |
| 236 |
title: { |
224 |
title: { dynamic: false, text: $__("Resource")} |
| 237 |
dynamic: true, |
|
|
| 238 |
text: $__("Resource"), |
| 239 |
}, |
| 240 |
}, |
225 |
}, |
| 241 |
], |
226 |
], |
| 242 |
}, |
227 |
}, |
|
Lines 270-279
export const routes = [
Link Here
|
| 270 |
component: markRaw( |
255 |
component: markRaw( |
| 271 |
EHoldingsEBSCOPackagesShow |
256 |
EHoldingsEBSCOPackagesShow |
| 272 |
), |
257 |
), |
| 273 |
title: { |
258 |
title: { dynamic: true, identifier: 'name', text: $__("Show package")} |
| 274 |
dynamic: true, |
|
|
| 275 |
text: $__("Show package"), |
| 276 |
}, |
| 277 |
}, |
259 |
}, |
| 278 |
], |
260 |
], |
| 279 |
}, |
261 |
}, |
|
Lines 296-305
export const routes = [
Link Here
|
| 296 |
component: markRaw( |
278 |
component: markRaw( |
| 297 |
EHoldingsEBSCOTitlesShow |
279 |
EHoldingsEBSCOTitlesShow |
| 298 |
), |
280 |
), |
| 299 |
title: { |
281 |
title: { dynamic: true, identifier: 'publication_title', text: $__("Show title")} |
| 300 |
dynamic: true, |
|
|
| 301 |
text: $__("Show title"), |
| 302 |
}, |
| 303 |
}, |
282 |
}, |
| 304 |
{ |
283 |
{ |
| 305 |
path: "/cgi-bin/koha/erm/eholdings/ebsco/resources/:resource_id", |
284 |
path: "/cgi-bin/koha/erm/eholdings/ebsco/resources/:resource_id", |
|
Lines 307-316
export const routes = [
Link Here
|
| 307 |
component: markRaw( |
286 |
component: markRaw( |
| 308 |
EHoldingsEBSCOResourcesShow |
287 |
EHoldingsEBSCOResourcesShow |
| 309 |
), |
288 |
), |
| 310 |
title: { |
289 |
title: { dynamic: false, text: $__("Resource")}, |
| 311 |
dynamic: true, |
|
|
| 312 |
text: $__("Resource"), |
| 313 |
}, |
| 314 |
is_navigation_item: false, |
290 |
is_navigation_item: false, |
| 315 |
}, |
291 |
}, |
| 316 |
], |
292 |
], |