@adtrackify/at-tracking-event-types 4.57.1 → 4.59.0
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.
- package/dist/cjs/types/api/measures/definitions/core-measure-definitions.js +11 -0
- package/dist/cjs/types/api/measures/definitions/core-measure-definitions.js.map +1 -1
- package/dist/cjs/types/api/measures/definitions/orders-measure-definitions.js +276 -366
- package/dist/cjs/types/api/measures/definitions/orders-measure-definitions.js.map +1 -1
- package/dist/cjs/types/api/measures/measure-categories.d.ts +8 -5
- package/dist/cjs/types/api/measures/measure-categories.js +8 -5
- package/dist/cjs/types/api/measures/measure-categories.js.map +1 -1
- package/dist/esm/types/api/measures/definitions/core-measure-definitions.js +11 -0
- package/dist/esm/types/api/measures/definitions/core-measure-definitions.js.map +1 -1
- package/dist/esm/types/api/measures/definitions/orders-measure-definitions.js +276 -366
- package/dist/esm/types/api/measures/definitions/orders-measure-definitions.js.map +1 -1
- package/dist/esm/types/api/measures/measure-categories.d.ts +8 -5
- package/dist/esm/types/api/measures/measure-categories.js +8 -5
- package/dist/esm/types/api/measures/measure-categories.js.map +1 -1
- package/package.json +1 -1
|
@@ -39,7 +39,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
39
39
|
decimalPlaces: 0,
|
|
40
40
|
useCompactNotation: false,
|
|
41
41
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
42
|
-
shortTitle: 'Unique
|
|
42
|
+
shortTitle: 'Unique Customers',
|
|
43
43
|
tooltip: 'The count of distinct customers who placed at least one order in the period. Each customer is counted once regardless of how many orders they placed.',
|
|
44
44
|
},
|
|
45
45
|
[MEASURE.ORDERS_UNITS]: {
|
|
@@ -122,7 +122,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
122
122
|
},
|
|
123
123
|
[MEASURE.ORDERS_NEW_CUSTOMER_UNITS_PER_ORDER]: {
|
|
124
124
|
priority: 12,
|
|
125
|
-
title: '
|
|
125
|
+
title: 'New Customer Units Per Order',
|
|
126
126
|
description: 'Average units per order for new customers.',
|
|
127
127
|
sumPrefix: '',
|
|
128
128
|
sumSuffix: '',
|
|
@@ -143,7 +143,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
143
143
|
},
|
|
144
144
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_UNITS_PER_ORDER]: {
|
|
145
145
|
priority: 22,
|
|
146
|
-
title: '
|
|
146
|
+
title: 'Returning Customer Units Per Order',
|
|
147
147
|
description: 'Average units per order for returning customers.',
|
|
148
148
|
sumPrefix: '',
|
|
149
149
|
sumSuffix: '',
|
|
@@ -178,7 +178,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
178
178
|
decimalPlaces: 2,
|
|
179
179
|
useCompactNotation: true,
|
|
180
180
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
181
|
-
shortTitle: 'Total
|
|
181
|
+
shortTitle: 'Revenue (Total)',
|
|
182
182
|
tooltip: 'The total dollar amount collected from all orders including shipping and taxes, before any refunds.',
|
|
183
183
|
},
|
|
184
184
|
[MEASURE.ORDERS_GROSS_REVENUE]: {
|
|
@@ -197,7 +197,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
197
197
|
decimalPlaces: 2,
|
|
198
198
|
useCompactNotation: true,
|
|
199
199
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
200
|
-
shortTitle: 'Gross
|
|
200
|
+
shortTitle: 'Revenue (Gross)',
|
|
201
201
|
tooltip: 'Revenue from product sales before subtracting discounts or refunds. The starting point for margin calculations.',
|
|
202
202
|
},
|
|
203
203
|
[MEASURE.ORDERS_NET_REVENUE]: {
|
|
@@ -216,14 +216,14 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
216
216
|
decimalPlaces: 2,
|
|
217
217
|
useCompactNotation: true,
|
|
218
218
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
219
|
-
shortTitle: 'Net
|
|
219
|
+
shortTitle: 'Revenue (Net)',
|
|
220
220
|
tooltip: 'Revenue after subtracting discounts and refunds from gross revenue. The primary revenue metric for profitability analysis.',
|
|
221
221
|
formulaDisplay: 'Gross Revenue − Discounts − Refunds',
|
|
222
222
|
formula: 'gross_revenue - discounts - refunds',
|
|
223
223
|
},
|
|
224
224
|
[MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_REVENUE]: {
|
|
225
225
|
priority: 11,
|
|
226
|
-
title: '
|
|
226
|
+
title: 'New Customer Total Revenue',
|
|
227
227
|
description: 'Total revenue from new customers.',
|
|
228
228
|
sumPrefix: '$',
|
|
229
229
|
sumSuffix: '',
|
|
@@ -237,12 +237,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
237
237
|
decimalPlaces: 2,
|
|
238
238
|
useCompactNotation: true,
|
|
239
239
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
240
|
-
shortTitle: 'NC Total
|
|
240
|
+
shortTitle: 'NC Revenue (Total)',
|
|
241
241
|
tooltip: 'Total revenue collected from first-time buyers including shipping and taxes. Reflects the raw dollar value of acquisition.',
|
|
242
242
|
},
|
|
243
243
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_REVENUE]: {
|
|
244
244
|
priority: 12,
|
|
245
|
-
title: '
|
|
245
|
+
title: 'New Customer Gross Revenue',
|
|
246
246
|
description: 'Gross revenue from new customers.',
|
|
247
247
|
sumPrefix: '$',
|
|
248
248
|
sumSuffix: '',
|
|
@@ -256,12 +256,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
256
256
|
decimalPlaces: 2,
|
|
257
257
|
useCompactNotation: true,
|
|
258
258
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
259
|
-
shortTitle: 'NC
|
|
259
|
+
shortTitle: 'NC Rev. (Gross)',
|
|
260
260
|
tooltip: 'Gross product revenue from new customers before discounts and refunds. Used to calculate new customer gross margin.',
|
|
261
261
|
},
|
|
262
262
|
[MEASURE.ORDERS_NEW_CUSTOMER_NET_REVENUE]: {
|
|
263
263
|
priority: 13,
|
|
264
|
-
title: '
|
|
264
|
+
title: 'New Customer Net Revenue',
|
|
265
265
|
description: 'Net revenue from new customers.',
|
|
266
266
|
sumPrefix: '$',
|
|
267
267
|
sumSuffix: '',
|
|
@@ -275,12 +275,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
275
275
|
decimalPlaces: 2,
|
|
276
276
|
useCompactNotation: true,
|
|
277
277
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
278
|
-
shortTitle: 'NC Net
|
|
278
|
+
shortTitle: 'NC Revenue (Net)',
|
|
279
279
|
tooltip: 'Net revenue from new customers after discounts and refunds. The clearest measure of first-order monetization.',
|
|
280
280
|
},
|
|
281
281
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_REVENUE]: {
|
|
282
282
|
priority: 21,
|
|
283
|
-
title: '
|
|
283
|
+
title: 'Returning Customer Total Revenue',
|
|
284
284
|
description: 'Total revenue from returning customers.',
|
|
285
285
|
sumPrefix: '$',
|
|
286
286
|
sumSuffix: '',
|
|
@@ -294,12 +294,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
294
294
|
decimalPlaces: 2,
|
|
295
295
|
useCompactNotation: true,
|
|
296
296
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
297
|
-
shortTitle: 'RC
|
|
297
|
+
shortTitle: 'RC Rev. (Total)',
|
|
298
298
|
tooltip: 'Total revenue from repeat buyers including shipping and taxes. High values indicate strong retention and LTV.',
|
|
299
299
|
},
|
|
300
300
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_REVENUE]: {
|
|
301
301
|
priority: 22,
|
|
302
|
-
title: '
|
|
302
|
+
title: 'Returning Customer Gross Revenue',
|
|
303
303
|
description: 'Gross revenue from returning customers.',
|
|
304
304
|
sumPrefix: '$',
|
|
305
305
|
sumSuffix: '',
|
|
@@ -313,12 +313,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
313
313
|
decimalPlaces: 2,
|
|
314
314
|
useCompactNotation: true,
|
|
315
315
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
316
|
-
shortTitle: 'RC Gross
|
|
316
|
+
shortTitle: 'RC Revenue (Gross)',
|
|
317
317
|
tooltip: 'Gross product revenue from returning customers before discounts and refunds.',
|
|
318
318
|
},
|
|
319
319
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_NET_REVENUE]: {
|
|
320
320
|
priority: 23,
|
|
321
|
-
title: '
|
|
321
|
+
title: 'Returning Customer Net Revenue',
|
|
322
322
|
description: 'Net revenue from returning customers.',
|
|
323
323
|
sumPrefix: '$',
|
|
324
324
|
sumSuffix: '',
|
|
@@ -332,12 +332,13 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
332
332
|
decimalPlaces: 2,
|
|
333
333
|
useCompactNotation: true,
|
|
334
334
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
335
|
-
shortTitle: 'RC Net
|
|
335
|
+
shortTitle: 'RC Revenue (Net)',
|
|
336
336
|
tooltip: 'Net revenue from returning customers after discounts and refunds. Key input for repeat-purchase profitability.',
|
|
337
337
|
},
|
|
338
338
|
[MEASURE.ORDERS_TOTAL_AOV]: {
|
|
339
339
|
priority: 1,
|
|
340
340
|
title: 'Total AOV',
|
|
341
|
+
shortTitle: 'AOV (Total)',
|
|
341
342
|
description: 'Average order value based on total revenue.',
|
|
342
343
|
sumPrefix: '$',
|
|
343
344
|
sumSuffix: '',
|
|
@@ -358,6 +359,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
358
359
|
[MEASURE.ORDERS_GROSS_AOV]: {
|
|
359
360
|
priority: 2,
|
|
360
361
|
title: 'Gross AOV',
|
|
362
|
+
shortTitle: 'AOV (Gross)',
|
|
361
363
|
description: 'Average order value based on gross revenue.',
|
|
362
364
|
sumPrefix: '$',
|
|
363
365
|
sumSuffix: '',
|
|
@@ -378,6 +380,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
378
380
|
[MEASURE.ORDERS_NET_AOV]: {
|
|
379
381
|
priority: 3,
|
|
380
382
|
title: 'Net AOV',
|
|
383
|
+
shortTitle: 'AOV (Net)',
|
|
381
384
|
description: 'Average order value based on net revenue.',
|
|
382
385
|
sumPrefix: '$',
|
|
383
386
|
sumSuffix: '',
|
|
@@ -397,7 +400,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
397
400
|
},
|
|
398
401
|
[MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_AOV]: {
|
|
399
402
|
priority: 11,
|
|
400
|
-
title: '
|
|
403
|
+
title: 'New Customer Total AOV',
|
|
401
404
|
description: 'Average order value for new customers (total revenue).',
|
|
402
405
|
sumPrefix: '$',
|
|
403
406
|
sumSuffix: '',
|
|
@@ -411,14 +414,14 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
411
414
|
decimalPlaces: 2,
|
|
412
415
|
useCompactNotation: false,
|
|
413
416
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
414
|
-
shortTitle: 'NC Total
|
|
417
|
+
shortTitle: 'NC AOV (Total)',
|
|
415
418
|
tooltip: 'Average total transaction value for first-time buyers. Compare to RC Total AOV to see if new customers spend more or less.',
|
|
416
419
|
formulaDisplay: 'NC Total Revenue ÷ NC Order Count',
|
|
417
420
|
formula: 'nc_total_revenue / nc_order_count',
|
|
418
421
|
},
|
|
419
422
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_AOV]: {
|
|
420
423
|
priority: 12,
|
|
421
|
-
title: '
|
|
424
|
+
title: 'New Customer Gross AOV',
|
|
422
425
|
description: 'Average order value for new customers (gross revenue).',
|
|
423
426
|
sumPrefix: '$',
|
|
424
427
|
sumSuffix: '',
|
|
@@ -432,14 +435,14 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
432
435
|
decimalPlaces: 2,
|
|
433
436
|
useCompactNotation: false,
|
|
434
437
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
435
|
-
shortTitle: 'NC Gross
|
|
438
|
+
shortTitle: 'NC AOV (Gross)',
|
|
436
439
|
tooltip: 'Average gross revenue per order for new customers before discounts and refunds.',
|
|
437
440
|
formulaDisplay: 'NC Gross Revenue ÷ NC Order Count',
|
|
438
441
|
formula: 'nc_gross_revenue / nc_order_count',
|
|
439
442
|
},
|
|
440
443
|
[MEASURE.ORDERS_NEW_CUSTOMER_NET_AOV]: {
|
|
441
444
|
priority: 13,
|
|
442
|
-
title: '
|
|
445
|
+
title: 'New Customer Net AOV',
|
|
443
446
|
description: 'Average order value for new customers (net revenue).',
|
|
444
447
|
sumPrefix: '$',
|
|
445
448
|
sumSuffix: '',
|
|
@@ -453,14 +456,14 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
453
456
|
decimalPlaces: 2,
|
|
454
457
|
useCompactNotation: false,
|
|
455
458
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
456
|
-
shortTitle: 'NC Net
|
|
459
|
+
shortTitle: 'NC AOV (Net)',
|
|
457
460
|
tooltip: 'Average net revenue per order for new customers after discounts and refunds. Key input for new customer payback calculations.',
|
|
458
461
|
formulaDisplay: 'NC Net Revenue ÷ NC Order Count',
|
|
459
462
|
formula: 'nc_net_revenue / nc_order_count',
|
|
460
463
|
},
|
|
461
464
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_AOV]: {
|
|
462
465
|
priority: 21,
|
|
463
|
-
title: '
|
|
466
|
+
title: 'Returning Customer Total AOV',
|
|
464
467
|
description: 'Average order value for returning customers (total revenue).',
|
|
465
468
|
sumPrefix: '$',
|
|
466
469
|
sumSuffix: '',
|
|
@@ -474,14 +477,14 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
474
477
|
decimalPlaces: 2,
|
|
475
478
|
useCompactNotation: false,
|
|
476
479
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
477
|
-
shortTitle: 'RC Total
|
|
480
|
+
shortTitle: 'RC AOV (Total)',
|
|
478
481
|
tooltip: 'Average total transaction value for returning buyers. Typically higher than new customer AOV as loyal customers buy more.',
|
|
479
482
|
formulaDisplay: 'RC Total Revenue ÷ RC Order Count',
|
|
480
483
|
formula: 'rc_total_revenue / rc_order_count',
|
|
481
484
|
},
|
|
482
485
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_AOV]: {
|
|
483
486
|
priority: 22,
|
|
484
|
-
title: '
|
|
487
|
+
title: 'Returning Customer Gross AOV',
|
|
485
488
|
description: 'Average order value for returning customers (gross revenue).',
|
|
486
489
|
sumPrefix: '$',
|
|
487
490
|
sumSuffix: '',
|
|
@@ -495,14 +498,14 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
495
498
|
decimalPlaces: 2,
|
|
496
499
|
useCompactNotation: false,
|
|
497
500
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
498
|
-
shortTitle: 'RC Gross
|
|
501
|
+
shortTitle: 'RC AOV (Gross)',
|
|
499
502
|
tooltip: 'Average gross revenue per order for returning customers before discounts and refunds.',
|
|
500
503
|
formulaDisplay: 'RC Gross Revenue ÷ RC Order Count',
|
|
501
504
|
formula: 'rc_gross_revenue / rc_order_count',
|
|
502
505
|
},
|
|
503
506
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_NET_AOV]: {
|
|
504
507
|
priority: 23,
|
|
505
|
-
title: '
|
|
508
|
+
title: 'Returning Customer Net AOV',
|
|
506
509
|
description: 'Average order value for returning customers (net revenue).',
|
|
507
510
|
sumPrefix: '$',
|
|
508
511
|
sumSuffix: '',
|
|
@@ -516,7 +519,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
516
519
|
decimalPlaces: 2,
|
|
517
520
|
useCompactNotation: false,
|
|
518
521
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
519
|
-
shortTitle: 'RC Net
|
|
522
|
+
shortTitle: 'RC AOV (Net)',
|
|
520
523
|
tooltip: 'Average net revenue per order for returning customers after discounts and refunds.',
|
|
521
524
|
formulaDisplay: 'RC Net Revenue ÷ RC Order Count',
|
|
522
525
|
formula: 'rc_net_revenue / rc_order_count',
|
|
@@ -524,6 +527,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
524
527
|
[MEASURE.ORDERS_COGS]: {
|
|
525
528
|
priority: 1,
|
|
526
529
|
title: 'COGS',
|
|
530
|
+
shortTitle: 'COGS',
|
|
527
531
|
description: 'Cost of goods sold.',
|
|
528
532
|
sumPrefix: '$',
|
|
529
533
|
sumSuffix: '',
|
|
@@ -541,7 +545,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
541
545
|
},
|
|
542
546
|
[MEASURE.ORDERS_NEW_CUSTOMER_COGS]: {
|
|
543
547
|
priority: 11,
|
|
544
|
-
title: '
|
|
548
|
+
title: 'New Customer COGS',
|
|
545
549
|
shortTitle: 'NC COGS',
|
|
546
550
|
description: 'COGS for new customer orders.',
|
|
547
551
|
sumPrefix: '$',
|
|
@@ -560,7 +564,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
560
564
|
},
|
|
561
565
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_COGS]: {
|
|
562
566
|
priority: 21,
|
|
563
|
-
title: '
|
|
567
|
+
title: 'Returning Customer COGS',
|
|
564
568
|
shortTitle: 'RC COGS',
|
|
565
569
|
description: 'COGS for returning customer orders.',
|
|
566
570
|
sumPrefix: '$',
|
|
@@ -580,6 +584,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
580
584
|
[MEASURE.ORDERS_COGS_PER_ORDER]: {
|
|
581
585
|
priority: 3,
|
|
582
586
|
title: 'COGS Per Order',
|
|
587
|
+
shortTitle: 'COGS/Order',
|
|
583
588
|
description: 'Average COGS per order.',
|
|
584
589
|
sumPrefix: '$',
|
|
585
590
|
sumSuffix: '',
|
|
@@ -599,7 +604,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
599
604
|
},
|
|
600
605
|
[MEASURE.ORDERS_NEW_CUSTOMER_COGS_PER_ORDER]: {
|
|
601
606
|
priority: 13,
|
|
602
|
-
title: '
|
|
607
|
+
title: 'New Customer COGS Per Order',
|
|
603
608
|
description: 'Average COGS per order for new customers.',
|
|
604
609
|
sumPrefix: '$',
|
|
605
610
|
sumSuffix: '',
|
|
@@ -620,7 +625,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
620
625
|
},
|
|
621
626
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_COGS_PER_ORDER]: {
|
|
622
627
|
priority: 23,
|
|
623
|
-
title: '
|
|
628
|
+
title: 'Returning Customer COGS Per Order',
|
|
624
629
|
description: 'Average COGS per order for returning customers.',
|
|
625
630
|
sumPrefix: '$',
|
|
626
631
|
sumSuffix: '',
|
|
@@ -660,6 +665,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
660
665
|
[MEASURE.ORDERS_REFUND_COUNT]: {
|
|
661
666
|
priority: 2,
|
|
662
667
|
title: 'Refund Count',
|
|
668
|
+
shortTitle: 'Refund Count',
|
|
663
669
|
description: 'Number of refunded orders.',
|
|
664
670
|
sumPrefix: '',
|
|
665
671
|
sumSuffix: '',
|
|
@@ -678,6 +684,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
678
684
|
[MEASURE.ORDERS_REFUND_PERCENT]: {
|
|
679
685
|
priority: 3,
|
|
680
686
|
title: 'Refund %',
|
|
687
|
+
shortTitle: 'Refund %',
|
|
681
688
|
description: 'Percentage of orders refunded.',
|
|
682
689
|
sumPrefix: '',
|
|
683
690
|
sumSuffix: '%',
|
|
@@ -756,7 +763,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
756
763
|
},
|
|
757
764
|
[MEASURE.ORDERS_NEW_CUSTOMER_REFUND_PERCENT]: {
|
|
758
765
|
priority: 7,
|
|
759
|
-
title: '
|
|
766
|
+
title: 'New Customer Refund %',
|
|
760
767
|
shortTitle: 'NC Refund %',
|
|
761
768
|
description: 'Percentage of new customer orders refunded.',
|
|
762
769
|
sumPrefix: '',
|
|
@@ -836,7 +843,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
836
843
|
},
|
|
837
844
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_REFUND_PERCENT]: {
|
|
838
845
|
priority: 11,
|
|
839
|
-
title: '
|
|
846
|
+
title: 'Returning Customer Refund %',
|
|
840
847
|
shortTitle: 'RC Refund %',
|
|
841
848
|
description: 'Percentage of returning customer orders refunded.',
|
|
842
849
|
sumPrefix: '',
|
|
@@ -937,7 +944,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
937
944
|
},
|
|
938
945
|
[MEASURE.ORDERS_NEW_CUSTOMER_DISCOUNTS]: {
|
|
939
946
|
priority: 15,
|
|
940
|
-
title: '
|
|
947
|
+
title: 'New Customer Discount Amount',
|
|
941
948
|
shortTitle: 'NC Discounts',
|
|
942
949
|
description: 'Total discount amount for new customers.',
|
|
943
950
|
sumPrefix: '$',
|
|
@@ -956,7 +963,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
956
963
|
},
|
|
957
964
|
[MEASURE.ORDERS_NEW_CUSTOMER_DISCOUNT_PERCENT]: {
|
|
958
965
|
priority: 16,
|
|
959
|
-
title: '
|
|
966
|
+
title: 'New Customer Discount %',
|
|
960
967
|
shortTitle: 'NC Discount %',
|
|
961
968
|
description: 'Discounts as percentage of new customer gross revenue.',
|
|
962
969
|
sumPrefix: '',
|
|
@@ -977,7 +984,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
977
984
|
},
|
|
978
985
|
[MEASURE.ORDERS_NEW_CUSTOMER_DISCOUNT_PER_ORDER]: {
|
|
979
986
|
priority: 17,
|
|
980
|
-
title: '
|
|
987
|
+
title: 'New Customer Discount Per Order',
|
|
981
988
|
shortTitle: 'NC Discount/Order',
|
|
982
989
|
description: 'Average discount per new customer order.',
|
|
983
990
|
sumPrefix: '$',
|
|
@@ -998,7 +1005,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
998
1005
|
},
|
|
999
1006
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_DISCOUNTS]: {
|
|
1000
1007
|
priority: 18,
|
|
1001
|
-
title: '
|
|
1008
|
+
title: 'Returning Customer Discount Amount',
|
|
1002
1009
|
shortTitle: 'RC Discounts',
|
|
1003
1010
|
description: 'Total discount amount for returning customers.',
|
|
1004
1011
|
sumPrefix: '$',
|
|
@@ -1017,7 +1024,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1017
1024
|
},
|
|
1018
1025
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_DISCOUNT_PERCENT]: {
|
|
1019
1026
|
priority: 19,
|
|
1020
|
-
title: '
|
|
1027
|
+
title: 'Returning Customer Discount %',
|
|
1021
1028
|
shortTitle: 'RC Discount %',
|
|
1022
1029
|
description: 'Discounts as percentage of returning customer gross revenue.',
|
|
1023
1030
|
sumPrefix: '',
|
|
@@ -1038,7 +1045,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1038
1045
|
},
|
|
1039
1046
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_DISCOUNT_PER_ORDER]: {
|
|
1040
1047
|
priority: 20,
|
|
1041
|
-
title: '
|
|
1048
|
+
title: 'Returning Customer Discount Per Order',
|
|
1042
1049
|
shortTitle: 'RC Discount/Order',
|
|
1043
1050
|
description: 'Average discount per returning customer order.',
|
|
1044
1051
|
sumPrefix: '$',
|
|
@@ -1119,7 +1126,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1119
1126
|
},
|
|
1120
1127
|
[MEASURE.ORDERS_NEW_CUSTOMER_SHIPPING]: {
|
|
1121
1128
|
priority: 34,
|
|
1122
|
-
title: '
|
|
1129
|
+
title: 'New Customer Shipping Revenue',
|
|
1123
1130
|
shortTitle: 'NC Shipping',
|
|
1124
1131
|
description: 'Total shipping revenue from new customers.',
|
|
1125
1132
|
sumPrefix: '$',
|
|
@@ -1138,7 +1145,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1138
1145
|
},
|
|
1139
1146
|
[MEASURE.ORDERS_NEW_CUSTOMER_SHIPPING_PERCENT]: {
|
|
1140
1147
|
priority: 35,
|
|
1141
|
-
title: '
|
|
1148
|
+
title: 'New Customer Shipping %',
|
|
1142
1149
|
shortTitle: 'NC Ship. %',
|
|
1143
1150
|
description: 'Shipping as percentage of new customer total revenue.',
|
|
1144
1151
|
sumPrefix: '',
|
|
@@ -1159,7 +1166,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1159
1166
|
},
|
|
1160
1167
|
[MEASURE.ORDERS_NEW_CUSTOMER_SHIPPING_PER_ORDER]: {
|
|
1161
1168
|
priority: 36,
|
|
1162
|
-
title: '
|
|
1169
|
+
title: 'New Customer Shipping Per Order',
|
|
1163
1170
|
shortTitle: 'NC Shipping/Order',
|
|
1164
1171
|
description: 'Average shipping per new customer order.',
|
|
1165
1172
|
sumPrefix: '$',
|
|
@@ -1180,7 +1187,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1180
1187
|
},
|
|
1181
1188
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_SHIPPING]: {
|
|
1182
1189
|
priority: 37,
|
|
1183
|
-
title: '
|
|
1190
|
+
title: 'Returning Customer Shipping Revenue',
|
|
1184
1191
|
shortTitle: 'RC Shipping',
|
|
1185
1192
|
description: 'Total shipping revenue from returning customers.',
|
|
1186
1193
|
sumPrefix: '$',
|
|
@@ -1199,7 +1206,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1199
1206
|
},
|
|
1200
1207
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_SHIPPING_PERCENT]: {
|
|
1201
1208
|
priority: 38,
|
|
1202
|
-
title: '
|
|
1209
|
+
title: 'Returning Customer Shipping %',
|
|
1203
1210
|
shortTitle: 'RC Ship. %',
|
|
1204
1211
|
description: 'Shipping as percentage of returning customer total revenue.',
|
|
1205
1212
|
sumPrefix: '',
|
|
@@ -1220,7 +1227,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1220
1227
|
},
|
|
1221
1228
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_SHIPPING_PER_ORDER]: {
|
|
1222
1229
|
priority: 39,
|
|
1223
|
-
title: '
|
|
1230
|
+
title: 'Returning Customer Shipping Per Order',
|
|
1224
1231
|
shortTitle: 'RC Shipping/Order',
|
|
1225
1232
|
description: 'Average shipping per returning customer order.',
|
|
1226
1233
|
sumPrefix: '$',
|
|
@@ -1300,7 +1307,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1300
1307
|
},
|
|
1301
1308
|
[MEASURE.ORDERS_NEW_CUSTOMER_TAX]: {
|
|
1302
1309
|
priority: 44,
|
|
1303
|
-
title: '
|
|
1310
|
+
title: 'New Customer Tax Collected',
|
|
1304
1311
|
shortTitle: 'NC Tax',
|
|
1305
1312
|
description: 'Total tax collected from new customers.',
|
|
1306
1313
|
sumPrefix: '$',
|
|
@@ -1319,7 +1326,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1319
1326
|
},
|
|
1320
1327
|
[MEASURE.ORDERS_NEW_CUSTOMER_TAX_PERCENT]: {
|
|
1321
1328
|
priority: 45,
|
|
1322
|
-
title: '
|
|
1329
|
+
title: 'New Customer Tax %',
|
|
1323
1330
|
shortTitle: 'NC Tax %',
|
|
1324
1331
|
description: 'Tax as percentage of new customer total revenue.',
|
|
1325
1332
|
sumPrefix: '',
|
|
@@ -1340,7 +1347,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1340
1347
|
},
|
|
1341
1348
|
[MEASURE.ORDERS_NEW_CUSTOMER_TAX_PER_ORDER]: {
|
|
1342
1349
|
priority: 46,
|
|
1343
|
-
title: '
|
|
1350
|
+
title: 'New Customer Tax Per Order',
|
|
1344
1351
|
shortTitle: 'NC Tax/Order',
|
|
1345
1352
|
description: 'Average tax per new customer order.',
|
|
1346
1353
|
sumPrefix: '$',
|
|
@@ -1361,7 +1368,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1361
1368
|
},
|
|
1362
1369
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_TAX]: {
|
|
1363
1370
|
priority: 47,
|
|
1364
|
-
title: '
|
|
1371
|
+
title: 'Returning Customer Tax Collected',
|
|
1365
1372
|
shortTitle: 'RC Tax',
|
|
1366
1373
|
description: 'Total tax collected from returning customers.',
|
|
1367
1374
|
sumPrefix: '$',
|
|
@@ -1380,7 +1387,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1380
1387
|
},
|
|
1381
1388
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_TAX_PERCENT]: {
|
|
1382
1389
|
priority: 48,
|
|
1383
|
-
title: '
|
|
1390
|
+
title: 'Returning Customer Tax %',
|
|
1384
1391
|
shortTitle: 'RC Tax %',
|
|
1385
1392
|
description: 'Tax as percentage of returning customer total revenue.',
|
|
1386
1393
|
sumPrefix: '',
|
|
@@ -1401,7 +1408,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1401
1408
|
},
|
|
1402
1409
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_TAX_PER_ORDER]: {
|
|
1403
1410
|
priority: 49,
|
|
1404
|
-
title: '
|
|
1411
|
+
title: 'Returning Customer Tax Per Order',
|
|
1405
1412
|
shortTitle: 'RC Tax/Order',
|
|
1406
1413
|
description: 'Average tax per returning customer order.',
|
|
1407
1414
|
sumPrefix: '$',
|
|
@@ -1464,7 +1471,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1464
1471
|
},
|
|
1465
1472
|
[MEASURE.ORDERS_CM1_PER_ORDER]: {
|
|
1466
1473
|
priority: 5,
|
|
1467
|
-
title: 'CM1 Per Order
|
|
1474
|
+
title: 'CM1 Per Order',
|
|
1468
1475
|
shortTitle: 'CM1/Order',
|
|
1469
1476
|
description: 'Average CM1 per order. Net Revenue minus Effective COGS divided by order count.',
|
|
1470
1477
|
sumPrefix: '$',
|
|
@@ -1473,8 +1480,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1473
1480
|
avgSuffix: '',
|
|
1474
1481
|
icon: MEASURE_ICON.CHANNEL,
|
|
1475
1482
|
measure: MEASURE.ORDERS_CM1_PER_ORDER,
|
|
1476
|
-
category: MEASURE_CATEGORY.
|
|
1477
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1483
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
1478
1484
|
valueType: MeasureValueType.CURRENCY,
|
|
1479
1485
|
decimalPlaces: 2,
|
|
1480
1486
|
useCompactNotation: false,
|
|
@@ -1485,7 +1491,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1485
1491
|
},
|
|
1486
1492
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM1_PER_ORDER]: {
|
|
1487
1493
|
priority: 15,
|
|
1488
|
-
title: '
|
|
1494
|
+
title: 'New Customer CM1 Per Order',
|
|
1489
1495
|
shortTitle: 'NC CM1/Order',
|
|
1490
1496
|
description: 'Average CM1 per new customer order.',
|
|
1491
1497
|
sumPrefix: '$',
|
|
@@ -1494,8 +1500,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1494
1500
|
avgSuffix: '',
|
|
1495
1501
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1496
1502
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM1_PER_ORDER,
|
|
1497
|
-
category: MEASURE_CATEGORY.
|
|
1498
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1503
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
1499
1504
|
valueType: MeasureValueType.CURRENCY,
|
|
1500
1505
|
decimalPlaces: 2,
|
|
1501
1506
|
useCompactNotation: false,
|
|
@@ -1506,7 +1511,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1506
1511
|
},
|
|
1507
1512
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_PER_ORDER]: {
|
|
1508
1513
|
priority: 25,
|
|
1509
|
-
title: '
|
|
1514
|
+
title: 'Returning Customer CM1 Per Order',
|
|
1510
1515
|
shortTitle: 'RC CM1/Order',
|
|
1511
1516
|
description: 'Average CM1 per returning customer order.',
|
|
1512
1517
|
sumPrefix: '$',
|
|
@@ -1515,8 +1520,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1515
1520
|
avgSuffix: '',
|
|
1516
1521
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1517
1522
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_PER_ORDER,
|
|
1518
|
-
category: MEASURE_CATEGORY.
|
|
1519
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1523
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
1520
1524
|
valueType: MeasureValueType.CURRENCY,
|
|
1521
1525
|
decimalPlaces: 2,
|
|
1522
1526
|
useCompactNotation: false,
|
|
@@ -1536,8 +1540,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1536
1540
|
avgSuffix: '',
|
|
1537
1541
|
icon: MEASURE_ICON.CHANNEL,
|
|
1538
1542
|
measure: MEASURE.ORDERS_CM2_PER_ORDER,
|
|
1539
|
-
category: MEASURE_CATEGORY.
|
|
1540
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1543
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
1541
1544
|
valueType: MeasureValueType.CURRENCY,
|
|
1542
1545
|
decimalPlaces: 2,
|
|
1543
1546
|
useCompactNotation: false,
|
|
@@ -1557,8 +1560,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1557
1560
|
avgSuffix: '',
|
|
1558
1561
|
icon: MEASURE_ICON.CHANNEL,
|
|
1559
1562
|
measure: MEASURE.ORDERS_CM3_PER_ORDER,
|
|
1560
|
-
category: MEASURE_CATEGORY.
|
|
1561
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1563
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
1562
1564
|
valueType: MeasureValueType.CURRENCY,
|
|
1563
1565
|
decimalPlaces: 2,
|
|
1564
1566
|
useCompactNotation: false,
|
|
@@ -1579,8 +1581,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1579
1581
|
avgSuffix: '',
|
|
1580
1582
|
icon: MEASURE_ICON.CHANNEL,
|
|
1581
1583
|
measure: MEASURE.ORDERS_CM4_PER_ORDER,
|
|
1582
|
-
category: MEASURE_CATEGORY.
|
|
1583
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1584
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
1584
1585
|
valueType: MeasureValueType.CURRENCY,
|
|
1585
1586
|
decimalPlaces: 2,
|
|
1586
1587
|
useCompactNotation: false,
|
|
@@ -1591,7 +1592,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1591
1592
|
},
|
|
1592
1593
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM2_PER_ORDER]: {
|
|
1593
1594
|
priority: 16,
|
|
1594
|
-
title: '
|
|
1595
|
+
title: 'New Customer CM2 Per Order',
|
|
1595
1596
|
shortTitle: 'NC CM2/Order',
|
|
1596
1597
|
description: 'Average CM2 per new customer order.',
|
|
1597
1598
|
sumPrefix: '$',
|
|
@@ -1600,8 +1601,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1600
1601
|
avgSuffix: '',
|
|
1601
1602
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1602
1603
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM2_PER_ORDER,
|
|
1603
|
-
category: MEASURE_CATEGORY.
|
|
1604
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1604
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
1605
1605
|
valueType: MeasureValueType.CURRENCY,
|
|
1606
1606
|
decimalPlaces: 2,
|
|
1607
1607
|
useCompactNotation: false,
|
|
@@ -1612,7 +1612,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1612
1612
|
},
|
|
1613
1613
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM3_PER_ORDER]: {
|
|
1614
1614
|
priority: 17,
|
|
1615
|
-
title: '
|
|
1615
|
+
title: 'New Customer CM3 Per Order',
|
|
1616
1616
|
shortTitle: 'NC CM3/Order',
|
|
1617
1617
|
description: 'Average CM3 per new customer order.',
|
|
1618
1618
|
sumPrefix: '$',
|
|
@@ -1621,8 +1621,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1621
1621
|
avgSuffix: '',
|
|
1622
1622
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1623
1623
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM3_PER_ORDER,
|
|
1624
|
-
category: MEASURE_CATEGORY.
|
|
1625
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1624
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
1626
1625
|
valueType: MeasureValueType.CURRENCY,
|
|
1627
1626
|
decimalPlaces: 2,
|
|
1628
1627
|
useCompactNotation: false,
|
|
@@ -1633,7 +1632,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1633
1632
|
},
|
|
1634
1633
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM4_PER_ORDER]: {
|
|
1635
1634
|
priority: 18,
|
|
1636
|
-
title: '
|
|
1635
|
+
title: 'New Customer CM4 Per Order',
|
|
1637
1636
|
shortTitle: 'NC CM4/Order',
|
|
1638
1637
|
description: 'Average CM4 (operating profit) per new customer order.',
|
|
1639
1638
|
sumPrefix: '$',
|
|
@@ -1642,8 +1641,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1642
1641
|
avgSuffix: '',
|
|
1643
1642
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1644
1643
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM4_PER_ORDER,
|
|
1645
|
-
category: MEASURE_CATEGORY.
|
|
1646
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1644
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
1647
1645
|
valueType: MeasureValueType.CURRENCY,
|
|
1648
1646
|
decimalPlaces: 2,
|
|
1649
1647
|
useCompactNotation: false,
|
|
@@ -1654,7 +1652,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1654
1652
|
},
|
|
1655
1653
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_PER_ORDER]: {
|
|
1656
1654
|
priority: 26,
|
|
1657
|
-
title: '
|
|
1655
|
+
title: 'Returning Customer CM2 Per Order',
|
|
1658
1656
|
shortTitle: 'RC CM2/Order',
|
|
1659
1657
|
description: 'Average CM2 per returning customer order.',
|
|
1660
1658
|
sumPrefix: '$',
|
|
@@ -1663,8 +1661,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1663
1661
|
avgSuffix: '',
|
|
1664
1662
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1665
1663
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_PER_ORDER,
|
|
1666
|
-
category: MEASURE_CATEGORY.
|
|
1667
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1664
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
1668
1665
|
valueType: MeasureValueType.CURRENCY,
|
|
1669
1666
|
decimalPlaces: 2,
|
|
1670
1667
|
useCompactNotation: false,
|
|
@@ -1675,7 +1672,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1675
1672
|
},
|
|
1676
1673
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_PER_ORDER]: {
|
|
1677
1674
|
priority: 27,
|
|
1678
|
-
title: '
|
|
1675
|
+
title: 'Returning Customer CM3 Per Order',
|
|
1679
1676
|
shortTitle: 'RC CM3/Order',
|
|
1680
1677
|
description: 'Average CM3 per returning customer order.',
|
|
1681
1678
|
sumPrefix: '$',
|
|
@@ -1684,8 +1681,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1684
1681
|
avgSuffix: '',
|
|
1685
1682
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1686
1683
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_PER_ORDER,
|
|
1687
|
-
category: MEASURE_CATEGORY.
|
|
1688
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1684
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
1689
1685
|
valueType: MeasureValueType.CURRENCY,
|
|
1690
1686
|
decimalPlaces: 2,
|
|
1691
1687
|
useCompactNotation: false,
|
|
@@ -1696,7 +1692,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1696
1692
|
},
|
|
1697
1693
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM4_PER_ORDER]: {
|
|
1698
1694
|
priority: 28,
|
|
1699
|
-
title: '
|
|
1695
|
+
title: 'Returning Customer CM4 Per Order',
|
|
1700
1696
|
shortTitle: 'RC CM4/Order',
|
|
1701
1697
|
description: 'Average CM4 (operating profit) per returning customer order.',
|
|
1702
1698
|
sumPrefix: '$',
|
|
@@ -1705,8 +1701,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1705
1701
|
avgSuffix: '',
|
|
1706
1702
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1707
1703
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM4_PER_ORDER,
|
|
1708
|
-
category: MEASURE_CATEGORY.
|
|
1709
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1704
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
1710
1705
|
valueType: MeasureValueType.CURRENCY,
|
|
1711
1706
|
decimalPlaces: 2,
|
|
1712
1707
|
useCompactNotation: false,
|
|
@@ -1739,6 +1734,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1739
1734
|
[MEASURE.ORDERS_NEW_CUSTOMERS]: {
|
|
1740
1735
|
priority: 2,
|
|
1741
1736
|
title: 'New Customers',
|
|
1737
|
+
shortTitle: 'New Customers',
|
|
1742
1738
|
description: 'Count of unique new customers.',
|
|
1743
1739
|
sumPrefix: '',
|
|
1744
1740
|
sumSuffix: '',
|
|
@@ -1770,12 +1766,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1770
1766
|
decimalPlaces: 0,
|
|
1771
1767
|
useCompactNotation: false,
|
|
1772
1768
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1773
|
-
shortTitle: '
|
|
1769
|
+
shortTitle: 'Returning Customers',
|
|
1774
1770
|
tooltip: 'The number of distinct customers who have ordered before and purchased again in the period. Core retention metric.',
|
|
1775
1771
|
},
|
|
1776
1772
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_RATE]: {
|
|
1777
1773
|
priority: 33,
|
|
1778
|
-
title: '
|
|
1774
|
+
title: 'New Customer Gross Revenue Rate',
|
|
1779
1775
|
description: 'New customer gross revenue as percentage of total gross revenue.',
|
|
1780
1776
|
sumPrefix: '',
|
|
1781
1777
|
sumSuffix: '%',
|
|
@@ -1796,7 +1792,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1796
1792
|
},
|
|
1797
1793
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_RATE]: {
|
|
1798
1794
|
priority: 34,
|
|
1799
|
-
title: '
|
|
1795
|
+
title: 'Returning Customer Gross Revenue Rate',
|
|
1800
1796
|
description: 'Returning customer gross revenue as percentage of total gross revenue.',
|
|
1801
1797
|
sumPrefix: '',
|
|
1802
1798
|
sumSuffix: '%',
|
|
@@ -1898,6 +1894,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1898
1894
|
[MEASURE.ORDERS_DISCOUNT_COUNT]: {
|
|
1899
1895
|
priority: 12,
|
|
1900
1896
|
title: 'Discount Count',
|
|
1897
|
+
shortTitle: 'Discount Count',
|
|
1901
1898
|
description: 'Count of orders with discounts.',
|
|
1902
1899
|
sumPrefix: '',
|
|
1903
1900
|
sumSuffix: '',
|
|
@@ -1936,7 +1933,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1936
1933
|
},
|
|
1937
1934
|
[MEASURE.ORDERS_NEW_CUSTOMER_DISCOUNT_GROSS_RATE]: {
|
|
1938
1935
|
priority: 16,
|
|
1939
|
-
title: '
|
|
1936
|
+
title: 'New Customer Discount Gross Rate',
|
|
1940
1937
|
description: 'New customer discount as percentage of gross revenue.',
|
|
1941
1938
|
sumPrefix: '',
|
|
1942
1939
|
sumSuffix: '%',
|
|
@@ -1950,14 +1947,14 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1950
1947
|
decimalPlaces: 2,
|
|
1951
1948
|
useCompactNotation: false,
|
|
1952
1949
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1953
|
-
shortTitle: 'NC Disc. Gross',
|
|
1950
|
+
shortTitle: 'NC Disc. (Gross)',
|
|
1954
1951
|
tooltip: 'New customer discounts as a share of new customer gross revenue. High rates suggest heavy promotion to drive acquisition.',
|
|
1955
1952
|
formulaDisplay: 'NC Discounts ÷ NC Gross Revenue × 100',
|
|
1956
1953
|
formula: 'nc_discounts / nc_gross_revenue * 100',
|
|
1957
1954
|
},
|
|
1958
1955
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_DISCOUNT_GROSS_RATE]: {
|
|
1959
1956
|
priority: 17,
|
|
1960
|
-
title: '
|
|
1957
|
+
title: 'Returning Customer Discount Gross Rate',
|
|
1961
1958
|
description: 'Returning customer discount as percentage of gross revenue.',
|
|
1962
1959
|
sumPrefix: '',
|
|
1963
1960
|
sumSuffix: '%',
|
|
@@ -1971,14 +1968,14 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1971
1968
|
decimalPlaces: 2,
|
|
1972
1969
|
useCompactNotation: false,
|
|
1973
1970
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1974
|
-
shortTitle: 'RC Disc. Gross',
|
|
1971
|
+
shortTitle: 'RC Disc. (Gross)',
|
|
1975
1972
|
tooltip: 'Returning customer discounts as a share of returning customer gross revenue. High rates may indicate loyalty discounts cutting into repeat margins.',
|
|
1976
1973
|
formulaDisplay: 'RC Discounts ÷ RC Gross Revenue × 100',
|
|
1977
1974
|
formula: 'rc_discounts / rc_gross_revenue * 100',
|
|
1978
1975
|
},
|
|
1979
1976
|
[MEASURE.ORDERS_NEW_CUSTOMER_DISCOUNT_ORDER_RATE]: {
|
|
1980
1977
|
priority: 18,
|
|
1981
|
-
title: '
|
|
1978
|
+
title: 'New Customer Discount Order Rate',
|
|
1982
1979
|
description: 'Percentage of new customer orders with discount.',
|
|
1983
1980
|
sumPrefix: '',
|
|
1984
1981
|
sumSuffix: '%',
|
|
@@ -1999,7 +1996,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1999
1996
|
},
|
|
2000
1997
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_DISCOUNT_ORDER_RATE]: {
|
|
2001
1998
|
priority: 19,
|
|
2002
|
-
title: '
|
|
1999
|
+
title: 'Returning Customer Discount Order Rate',
|
|
2003
2000
|
description: 'Percentage of returning customer orders with discount.',
|
|
2004
2001
|
sumPrefix: '',
|
|
2005
2002
|
sumSuffix: '%',
|
|
@@ -2041,7 +2038,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2041
2038
|
},
|
|
2042
2039
|
[MEASURE.ORDERS_NEW_CUSTOMER_REFUND_PLUS_DISCOUNT]: {
|
|
2043
2040
|
priority: 22,
|
|
2044
|
-
title: '
|
|
2041
|
+
title: 'New Customer Refund + Discount',
|
|
2045
2042
|
description: 'New customer refund and discount combined.',
|
|
2046
2043
|
sumPrefix: '$',
|
|
2047
2044
|
sumSuffix: '',
|
|
@@ -2062,7 +2059,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2062
2059
|
},
|
|
2063
2060
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_REFUND_PLUS_DISCOUNT]: {
|
|
2064
2061
|
priority: 23,
|
|
2065
|
-
title: '
|
|
2062
|
+
title: 'Returning Customer Refund + Discount',
|
|
2066
2063
|
description: 'Returning customer refund and discount combined.',
|
|
2067
2064
|
sumPrefix: '$',
|
|
2068
2065
|
sumSuffix: '',
|
|
@@ -2098,6 +2095,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2098
2095
|
useCompactNotation: true,
|
|
2099
2096
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
2100
2097
|
tooltip: 'The order subtotal before shipping and taxes are added. Reflects the product value customers commit to at checkout.',
|
|
2098
|
+
hideFromUI: true,
|
|
2101
2099
|
},
|
|
2102
2100
|
[MEASURE.ORDERS_NET_PLUS_SHIPPING]: {
|
|
2103
2101
|
priority: 5,
|
|
@@ -2119,6 +2117,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2119
2117
|
tooltip: 'Net revenue plus shipping collected. Useful for businesses where shipping is a meaningful revenue contributor.',
|
|
2120
2118
|
formulaDisplay: 'Net Revenue + Shipping',
|
|
2121
2119
|
formula: 'net_revenue + shipping',
|
|
2120
|
+
hideFromUI: true,
|
|
2122
2121
|
},
|
|
2123
2122
|
[MEASURE.ORDERS_CANCELLED_COUNT]: {
|
|
2124
2123
|
priority: 51,
|
|
@@ -2160,7 +2159,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2160
2159
|
},
|
|
2161
2160
|
[MEASURE.ORDERS_NEW_CUSTOMER_CANCELLED_COUNT]: {
|
|
2162
2161
|
priority: 53,
|
|
2163
|
-
title: '
|
|
2162
|
+
title: 'New Customer Cancelled Orders',
|
|
2164
2163
|
description: 'Count of cancelled orders from new customers.',
|
|
2165
2164
|
sumPrefix: '',
|
|
2166
2165
|
sumSuffix: '',
|
|
@@ -2179,7 +2178,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2179
2178
|
},
|
|
2180
2179
|
[MEASURE.ORDERS_NEW_CUSTOMER_CANCELLED_AMOUNT]: {
|
|
2181
2180
|
priority: 54,
|
|
2182
|
-
title: '
|
|
2181
|
+
title: 'New Customer Cancelled Amount',
|
|
2183
2182
|
description: 'Cancelled order amount from new customers.',
|
|
2184
2183
|
sumPrefix: '$',
|
|
2185
2184
|
sumSuffix: '',
|
|
@@ -2217,7 +2216,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2217
2216
|
},
|
|
2218
2217
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CANCELLED_AMOUNT]: {
|
|
2219
2218
|
priority: 56,
|
|
2220
|
-
title: '
|
|
2219
|
+
title: 'Returning Customer Cancelled Amount',
|
|
2221
2220
|
description: 'Cancelled order amount from returning customers.',
|
|
2222
2221
|
sumPrefix: '$',
|
|
2223
2222
|
sumSuffix: '',
|
|
@@ -2244,8 +2243,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2244
2243
|
avgSuffix: '',
|
|
2245
2244
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2246
2245
|
measure: MEASURE.ORDERS_GROSS_PROFIT,
|
|
2247
|
-
category: MEASURE_CATEGORY.
|
|
2248
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2246
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2249
2247
|
valueType: MeasureValueType.CURRENCY,
|
|
2250
2248
|
decimalPlaces: 2,
|
|
2251
2249
|
useCompactNotation: true,
|
|
@@ -2257,7 +2255,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2257
2255
|
},
|
|
2258
2256
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT]: {
|
|
2259
2257
|
priority: 2,
|
|
2260
|
-
title: '
|
|
2258
|
+
title: 'New Customer Gross Profit',
|
|
2261
2259
|
description: 'Gross profit from new customers.',
|
|
2262
2260
|
sumPrefix: '$',
|
|
2263
2261
|
sumSuffix: '',
|
|
@@ -2265,8 +2263,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2265
2263
|
avgSuffix: '',
|
|
2266
2264
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2267
2265
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT,
|
|
2268
|
-
category: MEASURE_CATEGORY.
|
|
2269
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2266
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2270
2267
|
valueType: MeasureValueType.CURRENCY,
|
|
2271
2268
|
decimalPlaces: 2,
|
|
2272
2269
|
useCompactNotation: true,
|
|
@@ -2276,7 +2273,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2276
2273
|
},
|
|
2277
2274
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT]: {
|
|
2278
2275
|
priority: 3,
|
|
2279
|
-
title: '
|
|
2276
|
+
title: 'Returning Customer Gross Profit',
|
|
2280
2277
|
description: 'Gross profit from returning customers.',
|
|
2281
2278
|
sumPrefix: '$',
|
|
2282
2279
|
sumSuffix: '',
|
|
@@ -2284,8 +2281,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2284
2281
|
avgSuffix: '',
|
|
2285
2282
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2286
2283
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT,
|
|
2287
|
-
category: MEASURE_CATEGORY.
|
|
2288
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2284
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2289
2285
|
valueType: MeasureValueType.CURRENCY,
|
|
2290
2286
|
decimalPlaces: 2,
|
|
2291
2287
|
useCompactNotation: true,
|
|
@@ -2303,8 +2299,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2303
2299
|
avgSuffix: '%',
|
|
2304
2300
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2305
2301
|
measure: MEASURE.ORDERS_GROSS_PROFIT_GROSS_PERCENT,
|
|
2306
|
-
category: MEASURE_CATEGORY.
|
|
2307
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2302
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2308
2303
|
valueType: MeasureValueType.PERCENTAGE,
|
|
2309
2304
|
decimalPlaces: 2,
|
|
2310
2305
|
useCompactNotation: false,
|
|
@@ -2316,7 +2311,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2316
2311
|
},
|
|
2317
2312
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT_GROSS_PERCENT]: {
|
|
2318
2313
|
priority: 12,
|
|
2319
|
-
title: '
|
|
2314
|
+
title: 'New Customer Gross Profit % (of Gross)',
|
|
2320
2315
|
description: 'NC gross profit as percentage of NC gross revenue.',
|
|
2321
2316
|
sumPrefix: '',
|
|
2322
2317
|
sumSuffix: '%',
|
|
@@ -2324,8 +2319,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2324
2319
|
avgSuffix: '%',
|
|
2325
2320
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2326
2321
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT_GROSS_PERCENT,
|
|
2327
|
-
category: MEASURE_CATEGORY.
|
|
2328
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2322
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2329
2323
|
valueType: MeasureValueType.PERCENTAGE,
|
|
2330
2324
|
decimalPlaces: 2,
|
|
2331
2325
|
useCompactNotation: false,
|
|
@@ -2335,7 +2329,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2335
2329
|
},
|
|
2336
2330
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT_GROSS_PERCENT]: {
|
|
2337
2331
|
priority: 13,
|
|
2338
|
-
title: '
|
|
2332
|
+
title: 'Returning Customer Gross Profit % (of Gross)',
|
|
2339
2333
|
description: 'RC gross profit as percentage of RC gross revenue.',
|
|
2340
2334
|
sumPrefix: '',
|
|
2341
2335
|
sumSuffix: '%',
|
|
@@ -2343,8 +2337,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2343
2337
|
avgSuffix: '%',
|
|
2344
2338
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2345
2339
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT_GROSS_PERCENT,
|
|
2346
|
-
category: MEASURE_CATEGORY.
|
|
2347
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2340
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2348
2341
|
valueType: MeasureValueType.PERCENTAGE,
|
|
2349
2342
|
decimalPlaces: 2,
|
|
2350
2343
|
useCompactNotation: false,
|
|
@@ -2362,8 +2355,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2362
2355
|
avgSuffix: '',
|
|
2363
2356
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2364
2357
|
measure: MEASURE.ORDERS_GROSS_PROFIT_PER_ORDER,
|
|
2365
|
-
category: MEASURE_CATEGORY.
|
|
2366
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2358
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2367
2359
|
valueType: MeasureValueType.CURRENCY,
|
|
2368
2360
|
decimalPlaces: 2,
|
|
2369
2361
|
useCompactNotation: false,
|
|
@@ -2375,7 +2367,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2375
2367
|
},
|
|
2376
2368
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT_PER_ORDER]: {
|
|
2377
2369
|
priority: 22,
|
|
2378
|
-
title: '
|
|
2370
|
+
title: 'New Customer Gross Profit Per Order',
|
|
2379
2371
|
description: 'Average gross profit per new customer order.',
|
|
2380
2372
|
sumPrefix: '$',
|
|
2381
2373
|
sumSuffix: '',
|
|
@@ -2383,8 +2375,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2383
2375
|
avgSuffix: '',
|
|
2384
2376
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2385
2377
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT_PER_ORDER,
|
|
2386
|
-
category: MEASURE_CATEGORY.
|
|
2387
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2378
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2388
2379
|
valueType: MeasureValueType.CURRENCY,
|
|
2389
2380
|
decimalPlaces: 2,
|
|
2390
2381
|
useCompactNotation: false,
|
|
@@ -2394,7 +2385,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2394
2385
|
},
|
|
2395
2386
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT_PER_ORDER]: {
|
|
2396
2387
|
priority: 23,
|
|
2397
|
-
title: '
|
|
2388
|
+
title: 'Returning Customer Gross Profit Per Order',
|
|
2398
2389
|
description: 'Average gross profit per returning customer order.',
|
|
2399
2390
|
sumPrefix: '$',
|
|
2400
2391
|
sumSuffix: '',
|
|
@@ -2402,8 +2393,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2402
2393
|
avgSuffix: '',
|
|
2403
2394
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2404
2395
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT_PER_ORDER,
|
|
2405
|
-
category: MEASURE_CATEGORY.
|
|
2406
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2396
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2407
2397
|
valueType: MeasureValueType.CURRENCY,
|
|
2408
2398
|
decimalPlaces: 2,
|
|
2409
2399
|
useCompactNotation: false,
|
|
@@ -2434,7 +2424,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2434
2424
|
},
|
|
2435
2425
|
[MEASURE.ORDERS_NEW_CUSTOMER_COGS_GROSS_RATE]: {
|
|
2436
2426
|
priority: 35,
|
|
2437
|
-
title: '
|
|
2427
|
+
title: 'New Customer COGS / Gross Rate',
|
|
2438
2428
|
description: 'NC COGS as percentage of gross revenue.',
|
|
2439
2429
|
sumPrefix: '',
|
|
2440
2430
|
sumSuffix: '%',
|
|
@@ -2455,7 +2445,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2455
2445
|
},
|
|
2456
2446
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_COGS_GROSS_RATE]: {
|
|
2457
2447
|
priority: 38,
|
|
2458
|
-
title: '
|
|
2448
|
+
title: 'Returning Customer COGS / Gross Rate',
|
|
2459
2449
|
description: 'RC COGS as percentage of gross revenue.',
|
|
2460
2450
|
sumPrefix: '',
|
|
2461
2451
|
sumSuffix: '%',
|
|
@@ -2497,7 +2487,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2497
2487
|
},
|
|
2498
2488
|
[MEASURE.ORDERS_NEW_CUSTOMER_COGS_NET_RATE]: {
|
|
2499
2489
|
priority: 36,
|
|
2500
|
-
title: '
|
|
2490
|
+
title: 'New Customer COGS / Net Rate',
|
|
2501
2491
|
description: 'NC COGS as percentage of net revenue.',
|
|
2502
2492
|
sumPrefix: '',
|
|
2503
2493
|
sumSuffix: '%',
|
|
@@ -2518,7 +2508,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2518
2508
|
},
|
|
2519
2509
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_COGS_NET_RATE]: {
|
|
2520
2510
|
priority: 39,
|
|
2521
|
-
title: '
|
|
2511
|
+
title: 'Returning Customer COGS / Net Rate',
|
|
2522
2512
|
description: 'RC COGS as percentage of net revenue.',
|
|
2523
2513
|
sumPrefix: '',
|
|
2524
2514
|
sumSuffix: '%',
|
|
@@ -2664,7 +2654,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2664
2654
|
decimalPlaces: 0,
|
|
2665
2655
|
useCompactNotation: true,
|
|
2666
2656
|
applicableContexts: LTV_COHORT_APPLICABLE_CONTEXTS,
|
|
2667
|
-
shortTitle: 'Cohort
|
|
2657
|
+
shortTitle: 'Cohort Customers',
|
|
2668
2658
|
tooltip: 'The number of customers who made their first purchase in the cohort period. The denominator for all per-customer cohort metrics.',
|
|
2669
2659
|
},
|
|
2670
2660
|
[MEASURE.ORDERS_COHORT_RETENTION_PERCENT]: {
|
|
@@ -2711,6 +2701,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2711
2701
|
[MEASURE.ORDERS_TOP_PRODUCTS]: {
|
|
2712
2702
|
priority: 9,
|
|
2713
2703
|
title: 'Top Products',
|
|
2704
|
+
shortTitle: 'Top Products',
|
|
2714
2705
|
description: 'Top selling products by revenue.',
|
|
2715
2706
|
sumPrefix: '',
|
|
2716
2707
|
sumSuffix: '',
|
|
@@ -2728,7 +2719,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2728
2719
|
},
|
|
2729
2720
|
[MEASURE.ORDERS_CPA]: {
|
|
2730
2721
|
priority: 2,
|
|
2731
|
-
title: '
|
|
2722
|
+
title: 'CPA',
|
|
2732
2723
|
shortTitle: 'CPA',
|
|
2733
2724
|
description: 'The amount spent per order acquisition.',
|
|
2734
2725
|
sumPrefix: '$',
|
|
@@ -2737,8 +2728,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2737
2728
|
avgSuffix: '',
|
|
2738
2729
|
icon: MEASURE_ICON.CHANNEL,
|
|
2739
2730
|
measure: MEASURE.ORDERS_CPA,
|
|
2740
|
-
category: MEASURE_CATEGORY.
|
|
2741
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2731
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2742
2732
|
valueType: MeasureValueType.CURRENCY,
|
|
2743
2733
|
decimalPlaces: 2,
|
|
2744
2734
|
useCompactNotation: true,
|
|
@@ -2749,7 +2739,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2749
2739
|
},
|
|
2750
2740
|
[MEASURE.ORDERS_NEW_CUSTOMER_CPA]: {
|
|
2751
2741
|
priority: 52,
|
|
2752
|
-
title: 'New Customer
|
|
2742
|
+
title: 'New Customer CPA',
|
|
2753
2743
|
shortTitle: 'NC CPA',
|
|
2754
2744
|
description: 'The amount spent per new customer order acquisition.',
|
|
2755
2745
|
sumPrefix: '$',
|
|
@@ -2758,8 +2748,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2758
2748
|
avgSuffix: '',
|
|
2759
2749
|
icon: MEASURE_ICON.CHANNEL,
|
|
2760
2750
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CPA,
|
|
2761
|
-
category: MEASURE_CATEGORY.
|
|
2762
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2751
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2763
2752
|
valueType: MeasureValueType.CURRENCY,
|
|
2764
2753
|
decimalPlaces: 2,
|
|
2765
2754
|
useCompactNotation: true,
|
|
@@ -2770,8 +2759,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2770
2759
|
},
|
|
2771
2760
|
[MEASURE.ORDERS_TOTAL_ROAS]: {
|
|
2772
2761
|
priority: 1,
|
|
2773
|
-
title: '
|
|
2774
|
-
shortTitle: 'ROAS',
|
|
2762
|
+
title: 'ROAS (Total Sales)',
|
|
2763
|
+
shortTitle: 'ROAS (Total)',
|
|
2775
2764
|
description: 'Total Order Revenue divided by Total Ad Spend.',
|
|
2776
2765
|
sumPrefix: '',
|
|
2777
2766
|
sumSuffix: 'x',
|
|
@@ -2779,8 +2768,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2779
2768
|
avgSuffix: 'x',
|
|
2780
2769
|
icon: MEASURE_ICON.CHANNEL,
|
|
2781
2770
|
measure: MEASURE.ORDERS_TOTAL_ROAS,
|
|
2782
|
-
category: MEASURE_CATEGORY.
|
|
2783
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2771
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2784
2772
|
valueType: MeasureValueType.MULTIPLIER,
|
|
2785
2773
|
decimalPlaces: 2,
|
|
2786
2774
|
useCompactNotation: false,
|
|
@@ -2792,7 +2780,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2792
2780
|
[MEASURE.ORDERS_GROSS_ROAS]: {
|
|
2793
2781
|
priority: 3,
|
|
2794
2782
|
title: 'ROAS (Gross Sales)',
|
|
2795
|
-
shortTitle: 'ROAS Gross',
|
|
2783
|
+
shortTitle: 'ROAS (Gross)',
|
|
2796
2784
|
description: 'Gross Order Sales divided by Total Ad Spend.',
|
|
2797
2785
|
sumPrefix: '',
|
|
2798
2786
|
sumSuffix: 'x',
|
|
@@ -2800,8 +2788,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2800
2788
|
avgSuffix: 'x',
|
|
2801
2789
|
icon: MEASURE_ICON.CHANNEL,
|
|
2802
2790
|
measure: MEASURE.ORDERS_GROSS_ROAS,
|
|
2803
|
-
category: MEASURE_CATEGORY.
|
|
2804
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2791
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2805
2792
|
valueType: MeasureValueType.MULTIPLIER,
|
|
2806
2793
|
decimalPlaces: 2,
|
|
2807
2794
|
useCompactNotation: false,
|
|
@@ -2813,7 +2800,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2813
2800
|
[MEASURE.ORDERS_NET_ROAS]: {
|
|
2814
2801
|
priority: 4,
|
|
2815
2802
|
title: 'ROAS (Net Sales)',
|
|
2816
|
-
shortTitle: 'ROAS Net',
|
|
2803
|
+
shortTitle: 'ROAS (Net)',
|
|
2817
2804
|
description: 'Net Order Sales divided by Total Ad Spend.',
|
|
2818
2805
|
sumPrefix: '',
|
|
2819
2806
|
sumSuffix: 'x',
|
|
@@ -2821,8 +2808,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2821
2808
|
avgSuffix: 'x',
|
|
2822
2809
|
icon: MEASURE_ICON.CHANNEL,
|
|
2823
2810
|
measure: MEASURE.ORDERS_NET_ROAS,
|
|
2824
|
-
category: MEASURE_CATEGORY.
|
|
2825
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2811
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2826
2812
|
valueType: MeasureValueType.MULTIPLIER,
|
|
2827
2813
|
decimalPlaces: 2,
|
|
2828
2814
|
useCompactNotation: false,
|
|
@@ -2842,8 +2828,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2842
2828
|
avgSuffix: 'x',
|
|
2843
2829
|
icon: MEASURE_ICON.CHANNEL,
|
|
2844
2830
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_ROAS,
|
|
2845
|
-
category: MEASURE_CATEGORY.
|
|
2846
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2831
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2847
2832
|
valueType: MeasureValueType.MULTIPLIER,
|
|
2848
2833
|
decimalPlaces: 2,
|
|
2849
2834
|
useCompactNotation: false,
|
|
@@ -2854,8 +2839,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2854
2839
|
},
|
|
2855
2840
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_ROAS]: {
|
|
2856
2841
|
priority: 12,
|
|
2857
|
-
title: '
|
|
2858
|
-
shortTitle: 'NC ROAS Gross',
|
|
2842
|
+
title: 'New Customer ROAS (Gross Sales)',
|
|
2843
|
+
shortTitle: 'NC ROAS (Gross)',
|
|
2859
2844
|
description: 'New Customer Gross Order Sales divided by Ad Spend.',
|
|
2860
2845
|
sumPrefix: '',
|
|
2861
2846
|
sumSuffix: 'x',
|
|
@@ -2863,8 +2848,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2863
2848
|
avgSuffix: 'x',
|
|
2864
2849
|
icon: MEASURE_ICON.CHANNEL,
|
|
2865
2850
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_ROAS,
|
|
2866
|
-
category: MEASURE_CATEGORY.
|
|
2867
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2851
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2868
2852
|
valueType: MeasureValueType.MULTIPLIER,
|
|
2869
2853
|
decimalPlaces: 2,
|
|
2870
2854
|
useCompactNotation: false,
|
|
@@ -2875,8 +2859,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2875
2859
|
},
|
|
2876
2860
|
[MEASURE.ORDERS_NEW_CUSTOMER_NET_ROAS]: {
|
|
2877
2861
|
priority: 13,
|
|
2878
|
-
title: '
|
|
2879
|
-
shortTitle: 'NC ROAS Net',
|
|
2862
|
+
title: 'New Customer ROAS (Net Sales)',
|
|
2863
|
+
shortTitle: 'NC ROAS (Net)',
|
|
2880
2864
|
description: 'New Customer Net Order Sales divided by Ad Spend.',
|
|
2881
2865
|
sumPrefix: '',
|
|
2882
2866
|
sumSuffix: 'x',
|
|
@@ -2884,8 +2868,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2884
2868
|
avgSuffix: 'x',
|
|
2885
2869
|
icon: MEASURE_ICON.CHANNEL,
|
|
2886
2870
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_NET_ROAS,
|
|
2887
|
-
category: MEASURE_CATEGORY.
|
|
2888
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2871
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2889
2872
|
valueType: MeasureValueType.MULTIPLIER,
|
|
2890
2873
|
decimalPlaces: 2,
|
|
2891
2874
|
useCompactNotation: false,
|
|
@@ -2905,8 +2888,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2905
2888
|
avgSuffix: '',
|
|
2906
2889
|
icon: MEASURE_ICON.CHANNEL,
|
|
2907
2890
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CPA,
|
|
2908
|
-
category: MEASURE_CATEGORY.
|
|
2909
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2891
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2910
2892
|
valueType: MeasureValueType.CURRENCY,
|
|
2911
2893
|
decimalPlaces: 2,
|
|
2912
2894
|
useCompactNotation: true,
|
|
@@ -2926,8 +2908,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2926
2908
|
avgSuffix: 'x',
|
|
2927
2909
|
icon: MEASURE_ICON.CHANNEL,
|
|
2928
2910
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_ROAS,
|
|
2929
|
-
category: MEASURE_CATEGORY.
|
|
2930
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2911
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2931
2912
|
valueType: MeasureValueType.MULTIPLIER,
|
|
2932
2913
|
decimalPlaces: 2,
|
|
2933
2914
|
useCompactNotation: false,
|
|
@@ -2938,8 +2919,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2938
2919
|
},
|
|
2939
2920
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_ROAS]: {
|
|
2940
2921
|
priority: 22,
|
|
2941
|
-
title: '
|
|
2942
|
-
shortTitle: 'RC ROAS Gross',
|
|
2922
|
+
title: 'Returning Customer ROAS (Gross Sales)',
|
|
2923
|
+
shortTitle: 'RC ROAS (Gross)',
|
|
2943
2924
|
description: 'Returning Customer Gross Order Sales divided by Ad Spend.',
|
|
2944
2925
|
sumPrefix: '',
|
|
2945
2926
|
sumSuffix: 'x',
|
|
@@ -2947,8 +2928,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2947
2928
|
avgSuffix: 'x',
|
|
2948
2929
|
icon: MEASURE_ICON.CHANNEL,
|
|
2949
2930
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_ROAS,
|
|
2950
|
-
category: MEASURE_CATEGORY.
|
|
2951
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2931
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2952
2932
|
valueType: MeasureValueType.MULTIPLIER,
|
|
2953
2933
|
decimalPlaces: 2,
|
|
2954
2934
|
useCompactNotation: false,
|
|
@@ -2959,8 +2939,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2959
2939
|
},
|
|
2960
2940
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_NET_ROAS]: {
|
|
2961
2941
|
priority: 23,
|
|
2962
|
-
title: '
|
|
2963
|
-
shortTitle: 'RC ROAS Net',
|
|
2942
|
+
title: 'Returning Customer ROAS (Net Sales)',
|
|
2943
|
+
shortTitle: 'RC ROAS (Net)',
|
|
2964
2944
|
description: 'Returning Customer Net Order Sales divided by Ad Spend.',
|
|
2965
2945
|
sumPrefix: '',
|
|
2966
2946
|
sumSuffix: 'x',
|
|
@@ -2968,8 +2948,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2968
2948
|
avgSuffix: 'x',
|
|
2969
2949
|
icon: MEASURE_ICON.CHANNEL,
|
|
2970
2950
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_NET_ROAS,
|
|
2971
|
-
category: MEASURE_CATEGORY.
|
|
2972
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2951
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2973
2952
|
valueType: MeasureValueType.MULTIPLIER,
|
|
2974
2953
|
decimalPlaces: 2,
|
|
2975
2954
|
useCompactNotation: false,
|
|
@@ -2989,8 +2968,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2989
2968
|
avgSuffix: 'x',
|
|
2990
2969
|
icon: MEASURE_ICON.CHANNEL,
|
|
2991
2970
|
measure: MEASURE.ORDERS_CM1_ROAS,
|
|
2992
|
-
category: MEASURE_CATEGORY.
|
|
2993
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2971
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
2994
2972
|
valueType: MeasureValueType.MULTIPLIER,
|
|
2995
2973
|
decimalPlaces: 2,
|
|
2996
2974
|
useCompactNotation: false,
|
|
@@ -3011,8 +2989,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3011
2989
|
avgSuffix: 'x',
|
|
3012
2990
|
icon: MEASURE_ICON.CHANNEL,
|
|
3013
2991
|
measure: MEASURE.ORDERS_CM2_ROAS,
|
|
3014
|
-
category: MEASURE_CATEGORY.
|
|
3015
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
2992
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3016
2993
|
valueType: MeasureValueType.MULTIPLIER,
|
|
3017
2994
|
decimalPlaces: 2,
|
|
3018
2995
|
useCompactNotation: false,
|
|
@@ -3033,8 +3010,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3033
3010
|
avgSuffix: 'x',
|
|
3034
3011
|
icon: MEASURE_ICON.CHANNEL,
|
|
3035
3012
|
measure: MEASURE.ORDERS_CM3_ROAS,
|
|
3036
|
-
category: MEASURE_CATEGORY.
|
|
3037
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3013
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3038
3014
|
valueType: MeasureValueType.MULTIPLIER,
|
|
3039
3015
|
decimalPlaces: 2,
|
|
3040
3016
|
useCompactNotation: false,
|
|
@@ -3045,7 +3021,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3045
3021
|
},
|
|
3046
3022
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM1_ROAS]: {
|
|
3047
3023
|
priority: 54,
|
|
3048
|
-
title: '
|
|
3024
|
+
title: 'New Customer CM1 ROAS',
|
|
3049
3025
|
shortTitle: 'NC CM1 ROAS',
|
|
3050
3026
|
description: 'New Customer CM1 (Gross Margin) divided by Ad Spend.',
|
|
3051
3027
|
sumPrefix: '',
|
|
@@ -3054,8 +3030,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3054
3030
|
avgSuffix: 'x',
|
|
3055
3031
|
icon: MEASURE_ICON.CHANNEL,
|
|
3056
3032
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM1_ROAS,
|
|
3057
|
-
category: MEASURE_CATEGORY.
|
|
3058
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3033
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3059
3034
|
valueType: MeasureValueType.MULTIPLIER,
|
|
3060
3035
|
decimalPlaces: 2,
|
|
3061
3036
|
useCompactNotation: false,
|
|
@@ -3066,7 +3041,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3066
3041
|
},
|
|
3067
3042
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM2_ROAS]: {
|
|
3068
3043
|
priority: 55,
|
|
3069
|
-
title: '
|
|
3044
|
+
title: 'New Customer CM2 ROAS',
|
|
3070
3045
|
shortTitle: 'NC CM2 ROAS',
|
|
3071
3046
|
description: 'New Customer CM2 divided by Ad Spend.',
|
|
3072
3047
|
sumPrefix: '',
|
|
@@ -3075,8 +3050,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3075
3050
|
avgSuffix: 'x',
|
|
3076
3051
|
icon: MEASURE_ICON.CHANNEL,
|
|
3077
3052
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM2_ROAS,
|
|
3078
|
-
category: MEASURE_CATEGORY.
|
|
3079
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3053
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3080
3054
|
valueType: MeasureValueType.MULTIPLIER,
|
|
3081
3055
|
decimalPlaces: 2,
|
|
3082
3056
|
useCompactNotation: false,
|
|
@@ -3087,7 +3061,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3087
3061
|
},
|
|
3088
3062
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM3_ROAS]: {
|
|
3089
3063
|
priority: 56,
|
|
3090
|
-
title: '
|
|
3064
|
+
title: 'New Customer CM3 ROAS',
|
|
3091
3065
|
shortTitle: 'NC CM3 ROAS',
|
|
3092
3066
|
description: 'New Customer CM3 divided by Ad Spend.',
|
|
3093
3067
|
sumPrefix: '',
|
|
@@ -3096,8 +3070,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3096
3070
|
avgSuffix: 'x',
|
|
3097
3071
|
icon: MEASURE_ICON.CHANNEL,
|
|
3098
3072
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM3_ROAS,
|
|
3099
|
-
category: MEASURE_CATEGORY.
|
|
3100
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3073
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3101
3074
|
valueType: MeasureValueType.MULTIPLIER,
|
|
3102
3075
|
decimalPlaces: 2,
|
|
3103
3076
|
useCompactNotation: false,
|
|
@@ -3108,7 +3081,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3108
3081
|
},
|
|
3109
3082
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_ROAS]: {
|
|
3110
3083
|
priority: 57,
|
|
3111
|
-
title: '
|
|
3084
|
+
title: 'Returning Customer CM1 ROAS',
|
|
3112
3085
|
shortTitle: 'RC CM1 ROAS',
|
|
3113
3086
|
description: 'Returning Customer CM1 (Gross Margin) divided by Ad Spend.',
|
|
3114
3087
|
sumPrefix: '',
|
|
@@ -3117,8 +3090,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3117
3090
|
avgSuffix: 'x',
|
|
3118
3091
|
icon: MEASURE_ICON.CHANNEL,
|
|
3119
3092
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_ROAS,
|
|
3120
|
-
category: MEASURE_CATEGORY.
|
|
3121
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3093
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3122
3094
|
valueType: MeasureValueType.MULTIPLIER,
|
|
3123
3095
|
decimalPlaces: 2,
|
|
3124
3096
|
useCompactNotation: false,
|
|
@@ -3129,7 +3101,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3129
3101
|
},
|
|
3130
3102
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_ROAS]: {
|
|
3131
3103
|
priority: 58,
|
|
3132
|
-
title: '
|
|
3104
|
+
title: 'Returning Customer CM2 ROAS',
|
|
3133
3105
|
shortTitle: 'RC CM2 ROAS',
|
|
3134
3106
|
description: 'Returning Customer CM2 divided by Ad Spend.',
|
|
3135
3107
|
sumPrefix: '',
|
|
@@ -3138,8 +3110,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3138
3110
|
avgSuffix: 'x',
|
|
3139
3111
|
icon: MEASURE_ICON.CHANNEL,
|
|
3140
3112
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_ROAS,
|
|
3141
|
-
category: MEASURE_CATEGORY.
|
|
3142
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3113
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3143
3114
|
valueType: MeasureValueType.MULTIPLIER,
|
|
3144
3115
|
decimalPlaces: 2,
|
|
3145
3116
|
useCompactNotation: false,
|
|
@@ -3150,7 +3121,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3150
3121
|
},
|
|
3151
3122
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_ROAS]: {
|
|
3152
3123
|
priority: 59,
|
|
3153
|
-
title: '
|
|
3124
|
+
title: 'Returning Customer CM3 ROAS',
|
|
3154
3125
|
shortTitle: 'RC CM3 ROAS',
|
|
3155
3126
|
description: 'Returning Customer CM3 divided by Ad Spend.',
|
|
3156
3127
|
sumPrefix: '',
|
|
@@ -3159,8 +3130,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3159
3130
|
avgSuffix: 'x',
|
|
3160
3131
|
icon: MEASURE_ICON.CHANNEL,
|
|
3161
3132
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_ROAS,
|
|
3162
|
-
category: MEASURE_CATEGORY.
|
|
3163
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3133
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3164
3134
|
valueType: MeasureValueType.MULTIPLIER,
|
|
3165
3135
|
decimalPlaces: 2,
|
|
3166
3136
|
useCompactNotation: false,
|
|
@@ -3180,8 +3150,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3180
3150
|
avgSuffix: '%',
|
|
3181
3151
|
icon: MEASURE_ICON.CHANNEL,
|
|
3182
3152
|
measure: MEASURE.ORDERS_TOTAL_MER,
|
|
3183
|
-
category: MEASURE_CATEGORY.
|
|
3184
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3153
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3185
3154
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3186
3155
|
decimalPlaces: 2,
|
|
3187
3156
|
useCompactNotation: false,
|
|
@@ -3193,7 +3162,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3193
3162
|
[MEASURE.ORDERS_GROSS_MER]: {
|
|
3194
3163
|
priority: 32,
|
|
3195
3164
|
title: 'MER (Gross Sales)',
|
|
3196
|
-
shortTitle: 'MER Gross',
|
|
3165
|
+
shortTitle: 'MER (Gross)',
|
|
3197
3166
|
description: 'Marketing Efficiency Ratio using Gross Order Sales.',
|
|
3198
3167
|
sumPrefix: '',
|
|
3199
3168
|
sumSuffix: '%',
|
|
@@ -3201,8 +3170,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3201
3170
|
avgSuffix: '%',
|
|
3202
3171
|
icon: MEASURE_ICON.CHANNEL,
|
|
3203
3172
|
measure: MEASURE.ORDERS_GROSS_MER,
|
|
3204
|
-
category: MEASURE_CATEGORY.
|
|
3205
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3173
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3206
3174
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3207
3175
|
decimalPlaces: 2,
|
|
3208
3176
|
useCompactNotation: false,
|
|
@@ -3214,7 +3182,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3214
3182
|
[MEASURE.ORDERS_NET_MER]: {
|
|
3215
3183
|
priority: 33,
|
|
3216
3184
|
title: 'MER (Net Sales)',
|
|
3217
|
-
shortTitle: 'MER Net',
|
|
3185
|
+
shortTitle: 'MER (Net)',
|
|
3218
3186
|
description: 'Marketing Efficiency Ratio using Net Order Sales.',
|
|
3219
3187
|
sumPrefix: '',
|
|
3220
3188
|
sumSuffix: '%',
|
|
@@ -3222,8 +3190,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3222
3190
|
avgSuffix: '%',
|
|
3223
3191
|
icon: MEASURE_ICON.CHANNEL,
|
|
3224
3192
|
measure: MEASURE.ORDERS_NET_MER,
|
|
3225
|
-
category: MEASURE_CATEGORY.
|
|
3226
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3193
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3227
3194
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3228
3195
|
decimalPlaces: 2,
|
|
3229
3196
|
useCompactNotation: false,
|
|
@@ -3234,7 +3201,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3234
3201
|
},
|
|
3235
3202
|
[MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_MER]: {
|
|
3236
3203
|
priority: 36,
|
|
3237
|
-
title: '
|
|
3204
|
+
title: 'New Customer Marketing Efficiency Ratio',
|
|
3238
3205
|
shortTitle: 'NC MER',
|
|
3239
3206
|
description: 'Marketing Efficiency Ratio using New Customer Order Revenue.',
|
|
3240
3207
|
sumPrefix: '',
|
|
@@ -3243,8 +3210,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3243
3210
|
avgSuffix: '%',
|
|
3244
3211
|
icon: MEASURE_ICON.CHANNEL,
|
|
3245
3212
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_MER,
|
|
3246
|
-
category: MEASURE_CATEGORY.
|
|
3247
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3213
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3248
3214
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3249
3215
|
decimalPlaces: 2,
|
|
3250
3216
|
useCompactNotation: false,
|
|
@@ -3256,7 +3222,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3256
3222
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_MER]: {
|
|
3257
3223
|
priority: 37,
|
|
3258
3224
|
title: 'NC MER (Gross Sales)',
|
|
3259
|
-
shortTitle: 'NC MER Gross',
|
|
3225
|
+
shortTitle: 'NC MER (Gross)',
|
|
3260
3226
|
description: 'Marketing Efficiency Ratio using New Customer Gross Order Sales.',
|
|
3261
3227
|
sumPrefix: '',
|
|
3262
3228
|
sumSuffix: '%',
|
|
@@ -3264,8 +3230,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3264
3230
|
avgSuffix: '%',
|
|
3265
3231
|
icon: MEASURE_ICON.CHANNEL,
|
|
3266
3232
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_MER,
|
|
3267
|
-
category: MEASURE_CATEGORY.
|
|
3268
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3233
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3269
3234
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3270
3235
|
decimalPlaces: 2,
|
|
3271
3236
|
useCompactNotation: false,
|
|
@@ -3276,8 +3241,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3276
3241
|
},
|
|
3277
3242
|
[MEASURE.ORDERS_NEW_CUSTOMER_NET_MER]: {
|
|
3278
3243
|
priority: 38,
|
|
3279
|
-
title: '
|
|
3280
|
-
shortTitle: 'NC MER Net',
|
|
3244
|
+
title: 'New Customer MER (Net Sales)',
|
|
3245
|
+
shortTitle: 'NC MER (Net)',
|
|
3281
3246
|
description: 'Marketing Efficiency Ratio using New Customer Net Order Sales.',
|
|
3282
3247
|
sumPrefix: '',
|
|
3283
3248
|
sumSuffix: '%',
|
|
@@ -3285,8 +3250,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3285
3250
|
avgSuffix: '%',
|
|
3286
3251
|
icon: MEASURE_ICON.CHANNEL,
|
|
3287
3252
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_NET_MER,
|
|
3288
|
-
category: MEASURE_CATEGORY.
|
|
3289
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3253
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3290
3254
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3291
3255
|
decimalPlaces: 2,
|
|
3292
3256
|
useCompactNotation: false,
|
|
@@ -3297,7 +3261,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3297
3261
|
},
|
|
3298
3262
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_MER]: {
|
|
3299
3263
|
priority: 41,
|
|
3300
|
-
title: '
|
|
3264
|
+
title: 'Returning Customer Marketing Efficiency Ratio',
|
|
3301
3265
|
shortTitle: 'RC MER',
|
|
3302
3266
|
description: 'Marketing Efficiency Ratio using Returning Customer Order Revenue.',
|
|
3303
3267
|
sumPrefix: '',
|
|
@@ -3306,8 +3270,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3306
3270
|
avgSuffix: '%',
|
|
3307
3271
|
icon: MEASURE_ICON.CHANNEL,
|
|
3308
3272
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_MER,
|
|
3309
|
-
category: MEASURE_CATEGORY.
|
|
3310
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3273
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3311
3274
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3312
3275
|
decimalPlaces: 2,
|
|
3313
3276
|
useCompactNotation: false,
|
|
@@ -3318,8 +3281,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3318
3281
|
},
|
|
3319
3282
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_MER]: {
|
|
3320
3283
|
priority: 42,
|
|
3321
|
-
title: '
|
|
3322
|
-
shortTitle: 'RC MER Gross',
|
|
3284
|
+
title: 'Returning Customer MER (Gross Sales)',
|
|
3285
|
+
shortTitle: 'RC MER (Gross)',
|
|
3323
3286
|
description: 'Marketing Efficiency Ratio using Returning Customer Gross Order Sales.',
|
|
3324
3287
|
sumPrefix: '',
|
|
3325
3288
|
sumSuffix: '%',
|
|
@@ -3327,8 +3290,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3327
3290
|
avgSuffix: '%',
|
|
3328
3291
|
icon: MEASURE_ICON.CHANNEL,
|
|
3329
3292
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_MER,
|
|
3330
|
-
category: MEASURE_CATEGORY.
|
|
3331
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3293
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3332
3294
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3333
3295
|
decimalPlaces: 2,
|
|
3334
3296
|
useCompactNotation: false,
|
|
@@ -3339,8 +3301,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3339
3301
|
},
|
|
3340
3302
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_NET_MER]: {
|
|
3341
3303
|
priority: 43,
|
|
3342
|
-
title: '
|
|
3343
|
-
shortTitle: 'RC MER Net',
|
|
3304
|
+
title: 'Returning Customer MER (Net Sales)',
|
|
3305
|
+
shortTitle: 'RC MER (Net)',
|
|
3344
3306
|
description: 'Marketing Efficiency Ratio using Returning Customer Net Order Sales.',
|
|
3345
3307
|
sumPrefix: '',
|
|
3346
3308
|
sumSuffix: '%',
|
|
@@ -3348,8 +3310,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3348
3310
|
avgSuffix: '%',
|
|
3349
3311
|
icon: MEASURE_ICON.CHANNEL,
|
|
3350
3312
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_NET_MER,
|
|
3351
|
-
category: MEASURE_CATEGORY.
|
|
3352
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3313
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3353
3314
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3354
3315
|
decimalPlaces: 2,
|
|
3355
3316
|
useCompactNotation: false,
|
|
@@ -3369,8 +3330,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3369
3330
|
avgSuffix: '%',
|
|
3370
3331
|
icon: MEASURE_ICON.CHANNEL,
|
|
3371
3332
|
measure: MEASURE.ORDERS_CM1_MER,
|
|
3372
|
-
category: MEASURE_CATEGORY.
|
|
3373
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3333
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3374
3334
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3375
3335
|
decimalPlaces: 2,
|
|
3376
3336
|
useCompactNotation: false,
|
|
@@ -3391,8 +3351,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3391
3351
|
avgSuffix: '%',
|
|
3392
3352
|
icon: MEASURE_ICON.CHANNEL,
|
|
3393
3353
|
measure: MEASURE.ORDERS_CM2_MER,
|
|
3394
|
-
category: MEASURE_CATEGORY.
|
|
3395
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3354
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3396
3355
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3397
3356
|
decimalPlaces: 2,
|
|
3398
3357
|
useCompactNotation: false,
|
|
@@ -3413,8 +3372,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3413
3372
|
avgSuffix: '%',
|
|
3414
3373
|
icon: MEASURE_ICON.CHANNEL,
|
|
3415
3374
|
measure: MEASURE.ORDERS_CM3_MER,
|
|
3416
|
-
category: MEASURE_CATEGORY.
|
|
3417
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3375
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3418
3376
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3419
3377
|
decimalPlaces: 2,
|
|
3420
3378
|
useCompactNotation: false,
|
|
@@ -3425,7 +3383,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3425
3383
|
},
|
|
3426
3384
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM1_MER]: {
|
|
3427
3385
|
priority: 64,
|
|
3428
|
-
title: '
|
|
3386
|
+
title: 'New Customer CM1 MER',
|
|
3429
3387
|
shortTitle: 'NC CM1 MER',
|
|
3430
3388
|
description: 'Marketing Efficiency Ratio using New Customer CM1.',
|
|
3431
3389
|
sumPrefix: '',
|
|
@@ -3434,8 +3392,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3434
3392
|
avgSuffix: '%',
|
|
3435
3393
|
icon: MEASURE_ICON.CHANNEL,
|
|
3436
3394
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM1_MER,
|
|
3437
|
-
category: MEASURE_CATEGORY.
|
|
3438
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3395
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3439
3396
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3440
3397
|
decimalPlaces: 2,
|
|
3441
3398
|
useCompactNotation: false,
|
|
@@ -3446,7 +3403,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3446
3403
|
},
|
|
3447
3404
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM2_MER]: {
|
|
3448
3405
|
priority: 65,
|
|
3449
|
-
title: '
|
|
3406
|
+
title: 'New Customer CM2 MER',
|
|
3450
3407
|
shortTitle: 'NC CM2 MER',
|
|
3451
3408
|
description: 'Marketing Efficiency Ratio using New Customer CM2.',
|
|
3452
3409
|
sumPrefix: '',
|
|
@@ -3455,8 +3412,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3455
3412
|
avgSuffix: '%',
|
|
3456
3413
|
icon: MEASURE_ICON.CHANNEL,
|
|
3457
3414
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM2_MER,
|
|
3458
|
-
category: MEASURE_CATEGORY.
|
|
3459
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3415
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3460
3416
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3461
3417
|
decimalPlaces: 2,
|
|
3462
3418
|
useCompactNotation: false,
|
|
@@ -3467,7 +3423,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3467
3423
|
},
|
|
3468
3424
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM3_MER]: {
|
|
3469
3425
|
priority: 66,
|
|
3470
|
-
title: '
|
|
3426
|
+
title: 'New Customer CM3 MER',
|
|
3471
3427
|
shortTitle: 'NC CM3 MER',
|
|
3472
3428
|
description: 'Marketing Efficiency Ratio using New Customer CM3.',
|
|
3473
3429
|
sumPrefix: '',
|
|
@@ -3476,8 +3432,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3476
3432
|
avgSuffix: '%',
|
|
3477
3433
|
icon: MEASURE_ICON.CHANNEL,
|
|
3478
3434
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM3_MER,
|
|
3479
|
-
category: MEASURE_CATEGORY.
|
|
3480
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3435
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3481
3436
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3482
3437
|
decimalPlaces: 2,
|
|
3483
3438
|
useCompactNotation: false,
|
|
@@ -3488,7 +3443,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3488
3443
|
},
|
|
3489
3444
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_MER]: {
|
|
3490
3445
|
priority: 67,
|
|
3491
|
-
title: '
|
|
3446
|
+
title: 'Returning Customer CM1 MER',
|
|
3492
3447
|
shortTitle: 'RC CM1 MER',
|
|
3493
3448
|
description: 'Marketing Efficiency Ratio using Returning Customer CM1.',
|
|
3494
3449
|
sumPrefix: '',
|
|
@@ -3497,8 +3452,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3497
3452
|
avgSuffix: '%',
|
|
3498
3453
|
icon: MEASURE_ICON.CHANNEL,
|
|
3499
3454
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_MER,
|
|
3500
|
-
category: MEASURE_CATEGORY.
|
|
3501
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3455
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3502
3456
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3503
3457
|
decimalPlaces: 2,
|
|
3504
3458
|
useCompactNotation: false,
|
|
@@ -3509,7 +3463,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3509
3463
|
},
|
|
3510
3464
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_MER]: {
|
|
3511
3465
|
priority: 68,
|
|
3512
|
-
title: '
|
|
3466
|
+
title: 'Returning Customer CM2 MER',
|
|
3513
3467
|
shortTitle: 'RC CM2 MER',
|
|
3514
3468
|
description: 'Marketing Efficiency Ratio using Returning Customer CM2.',
|
|
3515
3469
|
sumPrefix: '',
|
|
@@ -3518,8 +3472,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3518
3472
|
avgSuffix: '%',
|
|
3519
3473
|
icon: MEASURE_ICON.CHANNEL,
|
|
3520
3474
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_MER,
|
|
3521
|
-
category: MEASURE_CATEGORY.
|
|
3522
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3475
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3523
3476
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3524
3477
|
decimalPlaces: 2,
|
|
3525
3478
|
useCompactNotation: false,
|
|
@@ -3530,7 +3483,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3530
3483
|
},
|
|
3531
3484
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_MER]: {
|
|
3532
3485
|
priority: 69,
|
|
3533
|
-
title: '
|
|
3486
|
+
title: 'Returning Customer CM3 MER',
|
|
3534
3487
|
shortTitle: 'RC CM3 MER',
|
|
3535
3488
|
description: 'Marketing Efficiency Ratio using Returning Customer CM3.',
|
|
3536
3489
|
sumPrefix: '',
|
|
@@ -3539,8 +3492,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3539
3492
|
avgSuffix: '%',
|
|
3540
3493
|
icon: MEASURE_ICON.CHANNEL,
|
|
3541
3494
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_MER,
|
|
3542
|
-
category: MEASURE_CATEGORY.
|
|
3543
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3495
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3544
3496
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3545
3497
|
decimalPlaces: 2,
|
|
3546
3498
|
useCompactNotation: false,
|
|
@@ -3560,8 +3512,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3560
3512
|
avgSuffix: '',
|
|
3561
3513
|
icon: MEASURE_ICON.CHANNEL,
|
|
3562
3514
|
measure: MEASURE.ORDERS_TOTAL_RAAD,
|
|
3563
|
-
category: MEASURE_CATEGORY.
|
|
3564
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3515
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3565
3516
|
valueType: MeasureValueType.CURRENCY,
|
|
3566
3517
|
decimalPlaces: 2,
|
|
3567
3518
|
useCompactNotation: true,
|
|
@@ -3573,7 +3524,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3573
3524
|
[MEASURE.ORDERS_GROSS_RAAD]: {
|
|
3574
3525
|
priority: 72,
|
|
3575
3526
|
title: 'RAAD (Gross Sales)',
|
|
3576
|
-
shortTitle: 'RAAD Gross',
|
|
3527
|
+
shortTitle: 'RAAD (Gross)',
|
|
3577
3528
|
description: 'Gross Order Sales minus Ad Spend.',
|
|
3578
3529
|
sumPrefix: '$',
|
|
3579
3530
|
sumSuffix: '',
|
|
@@ -3581,8 +3532,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3581
3532
|
avgSuffix: '',
|
|
3582
3533
|
icon: MEASURE_ICON.CHANNEL,
|
|
3583
3534
|
measure: MEASURE.ORDERS_GROSS_RAAD,
|
|
3584
|
-
category: MEASURE_CATEGORY.
|
|
3585
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3535
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3586
3536
|
valueType: MeasureValueType.CURRENCY,
|
|
3587
3537
|
decimalPlaces: 2,
|
|
3588
3538
|
useCompactNotation: true,
|
|
@@ -3594,7 +3544,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3594
3544
|
[MEASURE.ORDERS_NET_RAAD]: {
|
|
3595
3545
|
priority: 73,
|
|
3596
3546
|
title: 'RAAD (Net Sales)',
|
|
3597
|
-
shortTitle: 'RAAD Net',
|
|
3547
|
+
shortTitle: 'RAAD (Net)',
|
|
3598
3548
|
description: 'Net Order Sales minus Ad Spend.',
|
|
3599
3549
|
sumPrefix: '$',
|
|
3600
3550
|
sumSuffix: '',
|
|
@@ -3602,8 +3552,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3602
3552
|
avgSuffix: '',
|
|
3603
3553
|
icon: MEASURE_ICON.CHANNEL,
|
|
3604
3554
|
measure: MEASURE.ORDERS_NET_RAAD,
|
|
3605
|
-
category: MEASURE_CATEGORY.
|
|
3606
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3555
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3607
3556
|
valueType: MeasureValueType.CURRENCY,
|
|
3608
3557
|
decimalPlaces: 2,
|
|
3609
3558
|
useCompactNotation: true,
|
|
@@ -3623,8 +3572,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3623
3572
|
avgSuffix: '%',
|
|
3624
3573
|
icon: MEASURE_ICON.CHANNEL,
|
|
3625
3574
|
measure: MEASURE.ORDERS_TOTAL_RAAD_PERCENT,
|
|
3626
|
-
category: MEASURE_CATEGORY.
|
|
3627
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3575
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3628
3576
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3629
3577
|
decimalPlaces: 2,
|
|
3630
3578
|
useCompactNotation: false,
|
|
@@ -3644,8 +3592,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3644
3592
|
avgSuffix: '%',
|
|
3645
3593
|
icon: MEASURE_ICON.CHANNEL,
|
|
3646
3594
|
measure: MEASURE.ORDERS_GROSS_RAAD_PERCENT,
|
|
3647
|
-
category: MEASURE_CATEGORY.
|
|
3648
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3595
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3649
3596
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3650
3597
|
decimalPlaces: 2,
|
|
3651
3598
|
useCompactNotation: false,
|
|
@@ -3657,7 +3604,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3657
3604
|
[MEASURE.ORDERS_NET_RAAD_PERCENT]: {
|
|
3658
3605
|
priority: 76,
|
|
3659
3606
|
title: 'RAAD % of Net Sales',
|
|
3660
|
-
shortTitle: 'RAAD % Net',
|
|
3607
|
+
shortTitle: 'RAAD % (Net)',
|
|
3661
3608
|
description: 'Revenue After Ad Spend as percentage of Net Sales.',
|
|
3662
3609
|
sumPrefix: '',
|
|
3663
3610
|
sumSuffix: '%',
|
|
@@ -3665,8 +3612,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3665
3612
|
avgSuffix: '%',
|
|
3666
3613
|
icon: MEASURE_ICON.CHANNEL,
|
|
3667
3614
|
measure: MEASURE.ORDERS_NET_RAAD_PERCENT,
|
|
3668
|
-
category: MEASURE_CATEGORY.
|
|
3669
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3615
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3670
3616
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3671
3617
|
decimalPlaces: 2,
|
|
3672
3618
|
useCompactNotation: false,
|
|
@@ -3677,7 +3623,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3677
3623
|
},
|
|
3678
3624
|
[MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_RAAD]: {
|
|
3679
3625
|
priority: 77,
|
|
3680
|
-
title: '
|
|
3626
|
+
title: 'New Customer Revenue After Ad Spend',
|
|
3681
3627
|
shortTitle: 'NC RAAD',
|
|
3682
3628
|
description: 'New Customer Order Revenue minus Ad Spend.',
|
|
3683
3629
|
sumPrefix: '$',
|
|
@@ -3686,8 +3632,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3686
3632
|
avgSuffix: '',
|
|
3687
3633
|
icon: MEASURE_ICON.CHANNEL,
|
|
3688
3634
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_RAAD,
|
|
3689
|
-
category: MEASURE_CATEGORY.
|
|
3690
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3635
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3691
3636
|
valueType: MeasureValueType.CURRENCY,
|
|
3692
3637
|
decimalPlaces: 2,
|
|
3693
3638
|
useCompactNotation: true,
|
|
@@ -3698,7 +3643,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3698
3643
|
},
|
|
3699
3644
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_RAAD]: {
|
|
3700
3645
|
priority: 78,
|
|
3701
|
-
title: '
|
|
3646
|
+
title: 'New Customer RAAD (Gross Sales)',
|
|
3702
3647
|
shortTitle: 'NC RAAD Gross',
|
|
3703
3648
|
description: 'New Customer Gross Order Sales minus Ad Spend.',
|
|
3704
3649
|
sumPrefix: '$',
|
|
@@ -3707,8 +3652,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3707
3652
|
avgSuffix: '',
|
|
3708
3653
|
icon: MEASURE_ICON.CHANNEL,
|
|
3709
3654
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_RAAD,
|
|
3710
|
-
category: MEASURE_CATEGORY.
|
|
3711
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3655
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3712
3656
|
valueType: MeasureValueType.CURRENCY,
|
|
3713
3657
|
decimalPlaces: 2,
|
|
3714
3658
|
useCompactNotation: true,
|
|
@@ -3719,8 +3663,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3719
3663
|
},
|
|
3720
3664
|
[MEASURE.ORDERS_NEW_CUSTOMER_NET_RAAD]: {
|
|
3721
3665
|
priority: 79,
|
|
3722
|
-
title: '
|
|
3723
|
-
shortTitle: 'NC RAAD Net',
|
|
3666
|
+
title: 'New Customer RAAD (Net Sales)',
|
|
3667
|
+
shortTitle: 'NC RAAD (Net)',
|
|
3724
3668
|
description: 'New Customer Net Order Sales minus Ad Spend.',
|
|
3725
3669
|
sumPrefix: '$',
|
|
3726
3670
|
sumSuffix: '',
|
|
@@ -3728,8 +3672,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3728
3672
|
avgSuffix: '',
|
|
3729
3673
|
icon: MEASURE_ICON.CHANNEL,
|
|
3730
3674
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_NET_RAAD,
|
|
3731
|
-
category: MEASURE_CATEGORY.
|
|
3732
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3675
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3733
3676
|
valueType: MeasureValueType.CURRENCY,
|
|
3734
3677
|
decimalPlaces: 2,
|
|
3735
3678
|
useCompactNotation: true,
|
|
@@ -3740,7 +3683,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3740
3683
|
},
|
|
3741
3684
|
[MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_RAAD_PERCENT]: {
|
|
3742
3685
|
priority: 80,
|
|
3743
|
-
title: '
|
|
3686
|
+
title: 'New Customer RAAD % of Total Revenue',
|
|
3744
3687
|
shortTitle: 'NC RAAD %',
|
|
3745
3688
|
description: 'NC Revenue After Ad Spend as percentage of NC Total Revenue.',
|
|
3746
3689
|
sumPrefix: '',
|
|
@@ -3749,8 +3692,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3749
3692
|
avgSuffix: '%',
|
|
3750
3693
|
icon: MEASURE_ICON.CHANNEL,
|
|
3751
3694
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_RAAD_PERCENT,
|
|
3752
|
-
category: MEASURE_CATEGORY.
|
|
3753
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3695
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3754
3696
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3755
3697
|
decimalPlaces: 2,
|
|
3756
3698
|
useCompactNotation: false,
|
|
@@ -3761,8 +3703,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3761
3703
|
},
|
|
3762
3704
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_RAAD_PERCENT]: {
|
|
3763
3705
|
priority: 81,
|
|
3764
|
-
title: '
|
|
3765
|
-
shortTitle: 'NC RAAD % Gross',
|
|
3706
|
+
title: 'New Customer RAAD % of Gross Sales',
|
|
3707
|
+
shortTitle: 'NC RAAD % (Gross)',
|
|
3766
3708
|
description: 'NC Revenue After Ad Spend as percentage of NC Gross Sales.',
|
|
3767
3709
|
sumPrefix: '',
|
|
3768
3710
|
sumSuffix: '%',
|
|
@@ -3770,8 +3712,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3770
3712
|
avgSuffix: '%',
|
|
3771
3713
|
icon: MEASURE_ICON.CHANNEL,
|
|
3772
3714
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_RAAD_PERCENT,
|
|
3773
|
-
category: MEASURE_CATEGORY.
|
|
3774
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3715
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3775
3716
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3776
3717
|
decimalPlaces: 2,
|
|
3777
3718
|
useCompactNotation: false,
|
|
@@ -3782,8 +3723,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3782
3723
|
},
|
|
3783
3724
|
[MEASURE.ORDERS_NEW_CUSTOMER_NET_RAAD_PERCENT]: {
|
|
3784
3725
|
priority: 82,
|
|
3785
|
-
title: '
|
|
3786
|
-
shortTitle: 'NC RAAD % Net',
|
|
3726
|
+
title: 'New Customer RAAD % of Net Sales',
|
|
3727
|
+
shortTitle: 'NC RAAD % (Net)',
|
|
3787
3728
|
description: 'NC Revenue After Ad Spend as percentage of NC Net Sales.',
|
|
3788
3729
|
sumPrefix: '',
|
|
3789
3730
|
sumSuffix: '%',
|
|
@@ -3791,8 +3732,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3791
3732
|
avgSuffix: '%',
|
|
3792
3733
|
icon: MEASURE_ICON.CHANNEL,
|
|
3793
3734
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_NET_RAAD_PERCENT,
|
|
3794
|
-
category: MEASURE_CATEGORY.
|
|
3795
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3735
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3796
3736
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3797
3737
|
decimalPlaces: 2,
|
|
3798
3738
|
useCompactNotation: false,
|
|
@@ -3803,7 +3743,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3803
3743
|
},
|
|
3804
3744
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_RAAD]: {
|
|
3805
3745
|
priority: 83,
|
|
3806
|
-
title: '
|
|
3746
|
+
title: 'Returning Customer Revenue After Ad Spend',
|
|
3807
3747
|
shortTitle: 'RC RAAD',
|
|
3808
3748
|
description: 'Returning Customer Order Revenue minus Ad Spend.',
|
|
3809
3749
|
sumPrefix: '$',
|
|
@@ -3812,8 +3752,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3812
3752
|
avgSuffix: '',
|
|
3813
3753
|
icon: MEASURE_ICON.CHANNEL,
|
|
3814
3754
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_RAAD,
|
|
3815
|
-
category: MEASURE_CATEGORY.
|
|
3816
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3755
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3817
3756
|
valueType: MeasureValueType.CURRENCY,
|
|
3818
3757
|
decimalPlaces: 2,
|
|
3819
3758
|
useCompactNotation: true,
|
|
@@ -3824,8 +3763,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3824
3763
|
},
|
|
3825
3764
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_RAAD]: {
|
|
3826
3765
|
priority: 84,
|
|
3827
|
-
title: '
|
|
3828
|
-
shortTitle: 'RC RAAD Gross',
|
|
3766
|
+
title: 'Returning Customer RAAD (Gross Sales)',
|
|
3767
|
+
shortTitle: 'RC RAAD (Gross)',
|
|
3829
3768
|
description: 'Returning Customer Gross Order Sales minus Ad Spend.',
|
|
3830
3769
|
sumPrefix: '$',
|
|
3831
3770
|
sumSuffix: '',
|
|
@@ -3833,8 +3772,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3833
3772
|
avgSuffix: '',
|
|
3834
3773
|
icon: MEASURE_ICON.CHANNEL,
|
|
3835
3774
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_RAAD,
|
|
3836
|
-
category: MEASURE_CATEGORY.
|
|
3837
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3775
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3838
3776
|
valueType: MeasureValueType.CURRENCY,
|
|
3839
3777
|
decimalPlaces: 2,
|
|
3840
3778
|
useCompactNotation: true,
|
|
@@ -3845,8 +3783,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3845
3783
|
},
|
|
3846
3784
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_NET_RAAD]: {
|
|
3847
3785
|
priority: 85,
|
|
3848
|
-
title: '
|
|
3849
|
-
shortTitle: 'RC RAAD Net',
|
|
3786
|
+
title: 'Returning Customer RAAD (Net Sales)',
|
|
3787
|
+
shortTitle: 'RC RAAD (Net)',
|
|
3850
3788
|
description: 'Returning Customer Net Order Sales minus Ad Spend.',
|
|
3851
3789
|
sumPrefix: '$',
|
|
3852
3790
|
sumSuffix: '',
|
|
@@ -3854,8 +3792,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3854
3792
|
avgSuffix: '',
|
|
3855
3793
|
icon: MEASURE_ICON.CHANNEL,
|
|
3856
3794
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_NET_RAAD,
|
|
3857
|
-
category: MEASURE_CATEGORY.
|
|
3858
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3795
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3859
3796
|
valueType: MeasureValueType.CURRENCY,
|
|
3860
3797
|
decimalPlaces: 2,
|
|
3861
3798
|
useCompactNotation: true,
|
|
@@ -3866,7 +3803,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3866
3803
|
},
|
|
3867
3804
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_RAAD_PERCENT]: {
|
|
3868
3805
|
priority: 86,
|
|
3869
|
-
title: '
|
|
3806
|
+
title: 'Returning Customer RAAD % of Total Revenue',
|
|
3870
3807
|
shortTitle: 'RC RAAD %',
|
|
3871
3808
|
description: 'RC Revenue After Ad Spend as percentage of RC Total Revenue.',
|
|
3872
3809
|
sumPrefix: '',
|
|
@@ -3875,8 +3812,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3875
3812
|
avgSuffix: '%',
|
|
3876
3813
|
icon: MEASURE_ICON.CHANNEL,
|
|
3877
3814
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_RAAD_PERCENT,
|
|
3878
|
-
category: MEASURE_CATEGORY.
|
|
3879
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3815
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3880
3816
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3881
3817
|
decimalPlaces: 2,
|
|
3882
3818
|
useCompactNotation: false,
|
|
@@ -3887,7 +3823,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3887
3823
|
},
|
|
3888
3824
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_RAAD_PERCENT]: {
|
|
3889
3825
|
priority: 87,
|
|
3890
|
-
title: '
|
|
3826
|
+
title: 'Returning Customer RAAD % of Gross Sales',
|
|
3891
3827
|
shortTitle: 'RC RAAD % Gross',
|
|
3892
3828
|
description: 'RC Revenue After Ad Spend as percentage of RC Gross Sales.',
|
|
3893
3829
|
sumPrefix: '',
|
|
@@ -3896,8 +3832,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3896
3832
|
avgSuffix: '%',
|
|
3897
3833
|
icon: MEASURE_ICON.CHANNEL,
|
|
3898
3834
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_RAAD_PERCENT,
|
|
3899
|
-
category: MEASURE_CATEGORY.
|
|
3900
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3835
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3901
3836
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3902
3837
|
decimalPlaces: 2,
|
|
3903
3838
|
useCompactNotation: false,
|
|
@@ -3908,8 +3843,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3908
3843
|
},
|
|
3909
3844
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_NET_RAAD_PERCENT]: {
|
|
3910
3845
|
priority: 88,
|
|
3911
|
-
title: '
|
|
3912
|
-
shortTitle: 'RC RAAD % Net',
|
|
3846
|
+
title: 'Returning Customer RAAD % of Net Sales',
|
|
3847
|
+
shortTitle: 'RC RAAD % (Net)',
|
|
3913
3848
|
description: 'RC Revenue After Ad Spend as percentage of RC Net Sales.',
|
|
3914
3849
|
sumPrefix: '',
|
|
3915
3850
|
sumSuffix: '%',
|
|
@@ -3917,8 +3852,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3917
3852
|
avgSuffix: '%',
|
|
3918
3853
|
icon: MEASURE_ICON.CHANNEL,
|
|
3919
3854
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_NET_RAAD_PERCENT,
|
|
3920
|
-
category: MEASURE_CATEGORY.
|
|
3921
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
|
|
3855
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3922
3856
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3923
3857
|
decimalPlaces: 2,
|
|
3924
3858
|
useCompactNotation: false,
|
|
@@ -3939,8 +3873,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3939
3873
|
avgSuffix: '',
|
|
3940
3874
|
icon: MEASURE_ICON.CHANNEL,
|
|
3941
3875
|
measure: MEASURE.ORDERS_CM2,
|
|
3942
|
-
category: MEASURE_CATEGORY.
|
|
3943
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3876
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3944
3877
|
valueType: MeasureValueType.CURRENCY,
|
|
3945
3878
|
decimalPlaces: 2,
|
|
3946
3879
|
useCompactNotation: true,
|
|
@@ -3961,8 +3894,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3961
3894
|
avgSuffix: '%',
|
|
3962
3895
|
icon: MEASURE_ICON.CHANNEL,
|
|
3963
3896
|
measure: MEASURE.ORDERS_CM2_PERCENT,
|
|
3964
|
-
category: MEASURE_CATEGORY.
|
|
3965
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3897
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3966
3898
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3967
3899
|
decimalPlaces: 2,
|
|
3968
3900
|
useCompactNotation: false,
|
|
@@ -3973,7 +3905,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3973
3905
|
},
|
|
3974
3906
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM2]: {
|
|
3975
3907
|
priority: 12,
|
|
3976
|
-
title: '
|
|
3908
|
+
title: 'New Customer Contribution Margin 2',
|
|
3977
3909
|
shortTitle: 'NC CM2',
|
|
3978
3910
|
description: 'New customer CM1 minus shipping, gateway, and variable costs.',
|
|
3979
3911
|
sumPrefix: '$',
|
|
@@ -3982,8 +3914,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3982
3914
|
avgSuffix: '',
|
|
3983
3915
|
icon: MEASURE_ICON.SHOPIFY,
|
|
3984
3916
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM2,
|
|
3985
|
-
category: MEASURE_CATEGORY.
|
|
3986
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3917
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
3987
3918
|
valueType: MeasureValueType.CURRENCY,
|
|
3988
3919
|
decimalPlaces: 2,
|
|
3989
3920
|
useCompactNotation: true,
|
|
@@ -3994,7 +3925,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3994
3925
|
},
|
|
3995
3926
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM2_PERCENT]: {
|
|
3996
3927
|
priority: 36,
|
|
3997
|
-
title: '
|
|
3928
|
+
title: 'New Customer CM2 Margin',
|
|
3998
3929
|
shortTitle: 'NC CM2 %',
|
|
3999
3930
|
description: 'NC CM2 as a percentage of NC Net Revenue.',
|
|
4000
3931
|
sumPrefix: '',
|
|
@@ -4003,8 +3934,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4003
3934
|
avgSuffix: '%',
|
|
4004
3935
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4005
3936
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM2_PERCENT,
|
|
4006
|
-
category: MEASURE_CATEGORY.
|
|
4007
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3937
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4008
3938
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4009
3939
|
decimalPlaces: 2,
|
|
4010
3940
|
useCompactNotation: false,
|
|
@@ -4015,7 +3945,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4015
3945
|
},
|
|
4016
3946
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM2]: {
|
|
4017
3947
|
priority: 22,
|
|
4018
|
-
title: '
|
|
3948
|
+
title: 'Returning Customer Contribution Margin 2',
|
|
4019
3949
|
shortTitle: 'RC CM2',
|
|
4020
3950
|
description: 'Returning customer CM1 minus shipping, gateway, and variable costs.',
|
|
4021
3951
|
sumPrefix: '$',
|
|
@@ -4024,8 +3954,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4024
3954
|
avgSuffix: '',
|
|
4025
3955
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4026
3956
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM2,
|
|
4027
|
-
category: MEASURE_CATEGORY.
|
|
4028
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3957
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4029
3958
|
valueType: MeasureValueType.CURRENCY,
|
|
4030
3959
|
decimalPlaces: 2,
|
|
4031
3960
|
useCompactNotation: true,
|
|
@@ -4036,7 +3965,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4036
3965
|
},
|
|
4037
3966
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_PERCENT]: {
|
|
4038
3967
|
priority: 40,
|
|
4039
|
-
title: '
|
|
3968
|
+
title: 'Returning Customer CM2 Margin',
|
|
4040
3969
|
shortTitle: 'RC CM2 %',
|
|
4041
3970
|
description: 'RC CM2 as a percentage of RC Net Revenue.',
|
|
4042
3971
|
sumPrefix: '',
|
|
@@ -4045,8 +3974,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4045
3974
|
avgSuffix: '%',
|
|
4046
3975
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4047
3976
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_PERCENT,
|
|
4048
|
-
category: MEASURE_CATEGORY.
|
|
4049
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3977
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4050
3978
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4051
3979
|
decimalPlaces: 2,
|
|
4052
3980
|
useCompactNotation: false,
|
|
@@ -4067,8 +3995,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4067
3995
|
avgSuffix: '',
|
|
4068
3996
|
icon: MEASURE_ICON.CHANNEL,
|
|
4069
3997
|
measure: MEASURE.ORDERS_CM3,
|
|
4070
|
-
category: MEASURE_CATEGORY.
|
|
4071
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3998
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4072
3999
|
valueType: MeasureValueType.CURRENCY,
|
|
4073
4000
|
decimalPlaces: 2,
|
|
4074
4001
|
useCompactNotation: true,
|
|
@@ -4089,8 +4016,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4089
4016
|
avgSuffix: '%',
|
|
4090
4017
|
icon: MEASURE_ICON.CHANNEL,
|
|
4091
4018
|
measure: MEASURE.ORDERS_CM3_PERCENT,
|
|
4092
|
-
category: MEASURE_CATEGORY.
|
|
4093
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4019
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4094
4020
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4095
4021
|
decimalPlaces: 2,
|
|
4096
4022
|
useCompactNotation: false,
|
|
@@ -4101,7 +4027,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4101
4027
|
},
|
|
4102
4028
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM3]: {
|
|
4103
4029
|
priority: 13,
|
|
4104
|
-
title: '
|
|
4030
|
+
title: 'New Customer Contribution Margin 3',
|
|
4105
4031
|
shortTitle: 'NC CM3',
|
|
4106
4032
|
description: 'New customer CM2 minus ad spend.',
|
|
4107
4033
|
sumPrefix: '$',
|
|
@@ -4110,8 +4036,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4110
4036
|
avgSuffix: '',
|
|
4111
4037
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4112
4038
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM3,
|
|
4113
|
-
category: MEASURE_CATEGORY.
|
|
4114
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4039
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4115
4040
|
valueType: MeasureValueType.CURRENCY,
|
|
4116
4041
|
decimalPlaces: 2,
|
|
4117
4042
|
useCompactNotation: true,
|
|
@@ -4122,7 +4047,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4122
4047
|
},
|
|
4123
4048
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM3_PERCENT]: {
|
|
4124
4049
|
priority: 37,
|
|
4125
|
-
title: '
|
|
4050
|
+
title: 'New Customer CM3 Margin',
|
|
4126
4051
|
shortTitle: 'NC CM3 %',
|
|
4127
4052
|
description: 'NC CM3 as a percentage of NC Net Revenue.',
|
|
4128
4053
|
sumPrefix: '',
|
|
@@ -4131,8 +4056,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4131
4056
|
avgSuffix: '%',
|
|
4132
4057
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4133
4058
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM3_PERCENT,
|
|
4134
|
-
category: MEASURE_CATEGORY.
|
|
4135
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4059
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4136
4060
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4137
4061
|
decimalPlaces: 2,
|
|
4138
4062
|
useCompactNotation: false,
|
|
@@ -4143,7 +4067,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4143
4067
|
},
|
|
4144
4068
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM3]: {
|
|
4145
4069
|
priority: 23,
|
|
4146
|
-
title: '
|
|
4070
|
+
title: 'Returning Customer Contribution Margin 3',
|
|
4147
4071
|
shortTitle: 'RC CM3',
|
|
4148
4072
|
description: 'Returning customer CM2 minus ad spend.',
|
|
4149
4073
|
sumPrefix: '$',
|
|
@@ -4152,8 +4076,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4152
4076
|
avgSuffix: '',
|
|
4153
4077
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4154
4078
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM3,
|
|
4155
|
-
category: MEASURE_CATEGORY.
|
|
4156
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4079
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4157
4080
|
valueType: MeasureValueType.CURRENCY,
|
|
4158
4081
|
decimalPlaces: 2,
|
|
4159
4082
|
useCompactNotation: true,
|
|
@@ -4164,7 +4087,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4164
4087
|
},
|
|
4165
4088
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_PERCENT]: {
|
|
4166
4089
|
priority: 41,
|
|
4167
|
-
title: '
|
|
4090
|
+
title: 'Returning Customer CM3 Margin',
|
|
4168
4091
|
shortTitle: 'RC CM3 %',
|
|
4169
4092
|
description: 'RC CM3 as a percentage of RC Net Revenue.',
|
|
4170
4093
|
sumPrefix: '',
|
|
@@ -4173,8 +4096,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4173
4096
|
avgSuffix: '%',
|
|
4174
4097
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4175
4098
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_PERCENT,
|
|
4176
|
-
category: MEASURE_CATEGORY.
|
|
4177
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4099
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4178
4100
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4179
4101
|
decimalPlaces: 2,
|
|
4180
4102
|
useCompactNotation: false,
|
|
@@ -4195,8 +4117,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4195
4117
|
avgSuffix: '',
|
|
4196
4118
|
icon: MEASURE_ICON.CHANNEL,
|
|
4197
4119
|
measure: MEASURE.ORDERS_CM4,
|
|
4198
|
-
category: MEASURE_CATEGORY.
|
|
4199
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4120
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4200
4121
|
valueType: MeasureValueType.CURRENCY,
|
|
4201
4122
|
decimalPlaces: 2,
|
|
4202
4123
|
useCompactNotation: true,
|
|
@@ -4217,8 +4138,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4217
4138
|
avgSuffix: '%',
|
|
4218
4139
|
icon: MEASURE_ICON.CHANNEL,
|
|
4219
4140
|
measure: MEASURE.ORDERS_CM4_PERCENT,
|
|
4220
|
-
category: MEASURE_CATEGORY.
|
|
4221
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4141
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4222
4142
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4223
4143
|
decimalPlaces: 2,
|
|
4224
4144
|
useCompactNotation: false,
|
|
@@ -4229,7 +4149,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4229
4149
|
},
|
|
4230
4150
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM4]: {
|
|
4231
4151
|
priority: 14,
|
|
4232
|
-
title: '
|
|
4152
|
+
title: 'New Customer CM4 (Operating Profit)',
|
|
4233
4153
|
shortTitle: 'NC CM4',
|
|
4234
4154
|
description: 'New customer CM3 minus Fixed Costs. Operating profit from new customer acquisitions.',
|
|
4235
4155
|
sumPrefix: '$',
|
|
@@ -4238,8 +4158,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4238
4158
|
avgSuffix: '',
|
|
4239
4159
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4240
4160
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM4,
|
|
4241
|
-
category: MEASURE_CATEGORY.
|
|
4242
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4161
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4243
4162
|
valueType: MeasureValueType.CURRENCY,
|
|
4244
4163
|
decimalPlaces: 2,
|
|
4245
4164
|
useCompactNotation: true,
|
|
@@ -4250,7 +4169,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4250
4169
|
},
|
|
4251
4170
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM4_PERCENT]: {
|
|
4252
4171
|
priority: 38,
|
|
4253
|
-
title: '
|
|
4172
|
+
title: 'New Customer CM4 % (Operating Margin)',
|
|
4254
4173
|
shortTitle: 'NC CM4 %',
|
|
4255
4174
|
description: 'NC CM4 as a percentage of NC Net Revenue. Operating margin from new customers.',
|
|
4256
4175
|
sumPrefix: '',
|
|
@@ -4259,8 +4178,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4259
4178
|
avgSuffix: '%',
|
|
4260
4179
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4261
4180
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM4_PERCENT,
|
|
4262
|
-
category: MEASURE_CATEGORY.
|
|
4263
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4181
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4264
4182
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4265
4183
|
decimalPlaces: 2,
|
|
4266
4184
|
useCompactNotation: false,
|
|
@@ -4271,7 +4189,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4271
4189
|
},
|
|
4272
4190
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM4]: {
|
|
4273
4191
|
priority: 24,
|
|
4274
|
-
title: '
|
|
4192
|
+
title: 'Returning Customer CM4 (Operating Profit)',
|
|
4275
4193
|
shortTitle: 'RC CM4',
|
|
4276
4194
|
description: 'Returning customer CM3 minus Fixed Costs. Operating profit from repeat purchases.',
|
|
4277
4195
|
sumPrefix: '$',
|
|
@@ -4280,8 +4198,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4280
4198
|
avgSuffix: '',
|
|
4281
4199
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4282
4200
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM4,
|
|
4283
|
-
category: MEASURE_CATEGORY.
|
|
4284
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4201
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4285
4202
|
valueType: MeasureValueType.CURRENCY,
|
|
4286
4203
|
decimalPlaces: 2,
|
|
4287
4204
|
useCompactNotation: true,
|
|
@@ -4292,7 +4209,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4292
4209
|
},
|
|
4293
4210
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM4_PERCENT]: {
|
|
4294
4211
|
priority: 42,
|
|
4295
|
-
title: '
|
|
4212
|
+
title: 'Returning Customer CM4 % (Operating Margin)',
|
|
4296
4213
|
shortTitle: 'RC CM4 %',
|
|
4297
4214
|
description: 'RC CM4 as a percentage of RC Net Revenue. Operating margin from returning customers.',
|
|
4298
4215
|
sumPrefix: '',
|
|
@@ -4301,8 +4218,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4301
4218
|
avgSuffix: '%',
|
|
4302
4219
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4303
4220
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM4_PERCENT,
|
|
4304
|
-
category: MEASURE_CATEGORY.
|
|
4305
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4221
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4306
4222
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4307
4223
|
decimalPlaces: 2,
|
|
4308
4224
|
useCompactNotation: false,
|
|
@@ -4322,8 +4238,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4322
4238
|
avgSuffix: '',
|
|
4323
4239
|
icon: MEASURE_ICON.CHANNEL,
|
|
4324
4240
|
measure: MEASURE.ORDERS_CM1,
|
|
4325
|
-
category: MEASURE_CATEGORY.
|
|
4326
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4241
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4327
4242
|
valueType: MeasureValueType.CURRENCY,
|
|
4328
4243
|
decimalPlaces: 2,
|
|
4329
4244
|
useCompactNotation: true,
|
|
@@ -4343,8 +4258,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4343
4258
|
avgSuffix: '%',
|
|
4344
4259
|
icon: MEASURE_ICON.CHANNEL,
|
|
4345
4260
|
measure: MEASURE.ORDERS_CM1_PERCENT,
|
|
4346
|
-
category: MEASURE_CATEGORY.
|
|
4347
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4261
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4348
4262
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4349
4263
|
decimalPlaces: 2,
|
|
4350
4264
|
useCompactNotation: false,
|
|
@@ -4355,7 +4269,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4355
4269
|
},
|
|
4356
4270
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM1]: {
|
|
4357
4271
|
priority: 11,
|
|
4358
|
-
title: '
|
|
4272
|
+
title: 'New Customer CM1 (Gross Margin)',
|
|
4359
4273
|
shortTitle: 'NC CM1',
|
|
4360
4274
|
description: 'New customer Net Revenue minus Effective COGS. Includes impact of returns/discounts.',
|
|
4361
4275
|
sumPrefix: '$',
|
|
@@ -4364,8 +4278,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4364
4278
|
avgSuffix: '',
|
|
4365
4279
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4366
4280
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM1,
|
|
4367
|
-
category: MEASURE_CATEGORY.
|
|
4368
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4281
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4369
4282
|
valueType: MeasureValueType.CURRENCY,
|
|
4370
4283
|
decimalPlaces: 2,
|
|
4371
4284
|
useCompactNotation: true,
|
|
@@ -4376,7 +4289,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4376
4289
|
},
|
|
4377
4290
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM1_PERCENT]: {
|
|
4378
4291
|
priority: 35,
|
|
4379
|
-
title: '
|
|
4292
|
+
title: 'New Customer CM1 % (Gross Margin %)',
|
|
4380
4293
|
shortTitle: 'NC CM1 %',
|
|
4381
4294
|
description: 'NC CM1 as a percentage of NC Net Revenue. Includes impact of returns/discounts.',
|
|
4382
4295
|
sumPrefix: '',
|
|
@@ -4385,8 +4298,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4385
4298
|
avgSuffix: '%',
|
|
4386
4299
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4387
4300
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM1_PERCENT,
|
|
4388
|
-
category: MEASURE_CATEGORY.
|
|
4389
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4301
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4390
4302
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4391
4303
|
decimalPlaces: 2,
|
|
4392
4304
|
useCompactNotation: false,
|
|
@@ -4397,7 +4309,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4397
4309
|
},
|
|
4398
4310
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM1]: {
|
|
4399
4311
|
priority: 21,
|
|
4400
|
-
title: '
|
|
4312
|
+
title: 'Returning Customer CM1 (Gross Margin)',
|
|
4401
4313
|
shortTitle: 'RC CM1',
|
|
4402
4314
|
description: 'Returning customer Net Revenue minus Effective COGS. Includes impact of returns/discounts.',
|
|
4403
4315
|
sumPrefix: '$',
|
|
@@ -4406,8 +4318,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4406
4318
|
avgSuffix: '',
|
|
4407
4319
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4408
4320
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM1,
|
|
4409
|
-
category: MEASURE_CATEGORY.
|
|
4410
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4321
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4411
4322
|
valueType: MeasureValueType.CURRENCY,
|
|
4412
4323
|
decimalPlaces: 2,
|
|
4413
4324
|
useCompactNotation: true,
|
|
@@ -4418,7 +4329,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4418
4329
|
},
|
|
4419
4330
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_PERCENT]: {
|
|
4420
4331
|
priority: 39,
|
|
4421
|
-
title: '
|
|
4332
|
+
title: 'Returning Customer CM1 % (Gross Margin %)',
|
|
4422
4333
|
shortTitle: 'RC CM1 %',
|
|
4423
4334
|
description: 'RC CM1 as a percentage of RC Net Revenue. Includes impact of returns/discounts.',
|
|
4424
4335
|
sumPrefix: '',
|
|
@@ -4427,8 +4338,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4427
4338
|
avgSuffix: '%',
|
|
4428
4339
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4429
4340
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_PERCENT,
|
|
4430
|
-
category: MEASURE_CATEGORY.
|
|
4431
|
-
subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4341
|
+
category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
|
|
4432
4342
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4433
4343
|
decimalPlaces: 2,
|
|
4434
4344
|
useCompactNotation: false,
|