-
Notifications
You must be signed in to change notification settings - Fork 0
/
scm.html
883 lines (718 loc) · 61.7 KB
/
scm.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-W3TJ27QQ4T"></script>
<script src="/products/ecommerce.js"></script>
<script>
// [start] GA Tag
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-W3TJ27QQ4T');
// [end] GA Tag
function getURLParam(param) {
return new URL(window.location.href).searchParams.get(param);
}
if (getURLParam('dev') === null) {
ECommerce.clickEvent();
}
</script>
<title>Plan Supply Chain Management in Dropshipping SCOR SCM Calculator</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "SCOR® SCM Calculator",
"operatingSystem": "Any",
"applicationCategory": "BusinessApplication",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "5.0",
"ratingCount": "1"
},
"offers": {
"@type": "Offer",
"price": "0.00",
"priceCurrency": "USD"
}
}
</script>
<meta name="title" content="Plan Supply Chain Management in Dropshipping SCOR SCM Calculator">
<meta name="description" content="SCOR-driven and BPMN business process centric Supply Chain Management (SCM) calculator to plan ordering, shipping, and returning product streams between suppliers and customers.">
<meta property="og:type" content="website">
<meta property="og:title" content="Plan Supply Chain Management in Dropshipping SCOR SCM Calculator">
<meta property="og:description" content="SCOR-driven and BPMN business process centric Supply Chain Management (SCM) calculator to plan ordering, shipping, and returning product streams between suppliers and customers.">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="Plan Supply Chain Management in Dropshipping SCOR SCM Calculator">
<meta property="twitter:description" content="SCOR-driven and BPMN business process centric Supply Chain Management (SCM) calculator to plan ordering, shipping, and returning product streams between suppliers and customers.">
<meta name="keywords" content="scor supply chain management scm plan dropshipping calculator business process order shipping returning supplier customer">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="/css/bootstrap.min.css" />
<link href="https://fonts.googleapis.com/css?family=Kanit" rel="stylesheet" />
<link rel="stylesheet" href="/css/main.css" />
<link rel="icon" type="image/png" href="/images/scm/logo.PNG" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8990058470889069" crossorigin="anonymous"></script>
<!-- Custom styles -->
<style>
.highlight-yellow:not(.djs-connection) .djs-visual> :nth-child(1) {
fill: #fff3cd !important;
}
.highlight-blue:not(.djs-connection) .djs-visual> :nth-child(1) {
fill: #cce5ff !important;
}
.highlight-green:not(.djs-connection) .djs-visual> :nth-child(1) {
fill: #d4edda !important;
}
.highlight-red:not(.djs-connection) .djs-visual> :nth-child(1) {
fill: #f8d7da !important;
}
.example-img {
border: 1px solid transparent;
border-color: #ffc107;
border-radius: .25rem;
}
.wholesale-img {
height: 128px;
border-color: #cce5ff;
width: 100%;
}
.chart-img {
border-color: #f8d7da;
}
.lg-map {
width: 100%;
height: 360px;
}
body {
background: rgb(221, 249, 255);
background: radial-gradient(circle, rgba(221, 249, 255, 0.4) 0%, rgba(241, 191, 255, 0.4) 100%);
}
</style>
</head>
<body>
<nav class="navbar sticky-top navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="javascript:void(0);" style="font-weight: bold;">SCOR® SCM Calculator</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<div class="ml-2" id="google_translate_element"></div>
</li>
</ul>
</div>
</nav>
<div style="transform: scale(1);" class="text-center mt-4 mb-4"><svg width="300" height="165.39333710070915" viewBox="0 0 300 165.39333710070915" class="css-1j8o68f"><defs id="SvgjsDefs5427"><linearGradient id="SvgjsLinearGradient5432"><stop id="SvgjsStop5433" stop-color="#7f00ff" offset="0"></stop><stop id="SvgjsStop5434" stop-color="#e100ff" offset="1"></stop></linearGradient></defs><g id="SvgjsG5428" featurekey="e7LhAk-0" transform="matrix(1.6582840697088617,0,0,1.6582840697088617,67.08049624155846,-21.333819432864622)" fill="url(#SvgjsLinearGradient5432)"><path xmlns="http://www.w3.org/2000/svg" d="M57.803,59.938c0.772-0.113,1.332-0.831,1.232-1.648s-0.832-1.332-1.648-1.232c-0.772,0.113-1.332,0.831-1.233,1.648 C56.254,59.523,56.985,60.038,57.803,59.938z M76.964,51.082H59.905c1.272-5.803,4.932-10.31,8.57-10.31 C72.669,40.772,75.758,45.987,76.964,51.082z M55.547,51.082h-5.424l-1.37,28.324c-0.219,4.657,3.397,8.438,8.054,8.438h21.915 c4.656,0,8.272-3.78,8.053-8.438l-1.369-28.324H79.27c-1.479-7.232-5.589-12.546-10.848-12.546c-5.26,0-9.369,4.985-10.958,11.943 l0.359,4.297l3.971,2.519l1.979,13.439l-8.644,1.249l-1.933-13.425l2.925-3.356L55.547,51.082z"></path><g xmlns="http://www.w3.org/2000/svg"><defs><path id="b" d="M45.504,80.45l1.526-32.328l8.794,0.008c0,0,1.548-12.393,12.927-12.393 c11.38,0,12.151,12.715,12.151,12.715l7.071,0.576l0.682,21.117h10.778l-1.105-38.852L79.562,12.918L58.98,7.586L34.105,8.619 L19.206,10.19c0,0-15.786,10.622-17.165,11.771C0.663,23.108-4.6,35.837-4.956,36.809c-0.354,0.972,1.149,20.181,1.149,20.181 L2.05,70.897l11.423,6.936l15.49,3.822L45.504,80.45z"></path></defs><clipPath id="a"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#b" overflow="visible"></use></clipPath><g clip-path="url(#a)"><g><path fill-rule="evenodd" clip-rule="evenodd" d="M93.297,35.625c-0.177,0-0.556,0-0.556,0l-9.089-0.003l-0.126-4.045 c0-1.984-1.608-3.592-3.592-3.592h-8.223v7.634H71.71v33.51h20.946l2.499-30.554c0,0,0.042-0.185,0.064-0.474 C95.33,36.759,94.646,35.625,93.297,35.625z M73.357,39.666h9.698l-0.539,7.422h-9.159V39.666z M73.357,48.767h9.118l-0.569,8.2 h-8.549V48.767z M73.284,59.497h3.029l-3.029,3.027V59.497z M90.861,67.288h-15.47l4.01-4.01c0.37-0.37,0.37-0.97,0-1.339 c-0.369-0.37-0.969-0.37-1.339,0l-4.778,4.777v-1.645c0.126-0.046,0.245-0.113,0.347-0.215l5.157-5.156 c0.061-0.061,0.095-0.134,0.136-0.204h12.535L90.861,67.288z M91.583,56.861h-8.104l0.591-8.219h8.226L91.583,56.861z M92.506,46.904h-8.271l0.466-7.292h8.479L92.506,46.904z M28.292,27.983h-8.257c-1.983,0-3.592,1.608-3.592,3.592l-0.125,4.045 l-9.052,0.003c0,0-0.378,0-0.555,0c-1.349,0-2.033,1.135-1.924,2.475c0.024,0.289,0.065,0.474,0.065,0.474l2.499,30.554h20.946 v-33.51h-0.005V27.983z M26.53,39.666v7.422H20.1l3.884-3.884c0.37-0.37,0.37-0.969,0-1.339c-0.37-0.371-0.97-0.371-1.339,0 l-5.157,5.156c-0.02,0.02-0.027,0.046-0.044,0.066h-0.073L17.3,46.104l3.092-3.139c0.37-0.371,0.37-0.97,0-1.34 c-0.37-0.37-0.97-0.37-1.339,0l-1.935,1.964l-0.285-3.923H26.53z M26.53,48.767v8.2h-8.548l-0.569-8.2H26.53z M6.708,39.612 h8.479l0.466,7.292H7.382L6.708,39.612z M7.593,48.643h8.226l0.591,8.219H8.304L7.593,48.643z M26.604,67.288h-3.712l3.712-3.712 V67.288z M26.604,61.131c-0.172,0.037-0.338,0.104-0.472,0.238l-5.157,5.157c-0.209,0.209-0.287,0.489-0.259,0.762H9.027 l-0.598-7.791h15.384l-3.451,3.45c-0.37,0.371-0.37,0.971,0,1.341c0.37,0.369,0.969,0.369,1.339,0l4.791-4.791h0.112V61.131z M30.22,75.886h39.946l0.007-15.882H30.235L30.22,75.886z M60.254,62.239h7.652v11.687h-7.652V62.239z M32.466,70.614 c0.135-0.045,0.264-0.112,0.372-0.22l5.157-5.157c0.37-0.369,0.37-0.969,0-1.339c-0.37-0.37-0.97-0.37-1.34,0l-4.188,4.189 v-5.849h25.915v11.687H33.497l4.498-4.497c0.37-0.37,0.37-0.97,0-1.339c-0.37-0.37-0.97-0.37-1.34,0l-4.188,4.188V70.614z M69.857,57.355l-0.044-38.886h0.008l-0.023-2.012c0-1.984-1.608-3.592-3.593-3.592H33.834c-1.985,0-3.593,1.608-3.593,3.592 l-0.023,2.012h0.016l-0.061,38.886H69.857z M57.1,37.03l4.964-4.962c0.37-0.37,0.37-0.97,0-1.34s-0.97-0.37-1.34,0L57.1,34.353 v-1.514l4.964-4.963c0.37-0.37,0.37-0.97,0-1.339c-0.37-0.37-0.97-0.37-1.34,0L57.1,30.162v-7.719h10.501v14.96H57.1V37.03z M57.1,39.631h10.501v15.607H57.1V39.631z M44.82,22.443h10.501v9.759c-0.019,0.108-0.019,0.215,0,0.323v3.868 c-0.019,0.108-0.019,0.215,0,0.323v0.88H44.82V22.443z M44.82,53.263l4.91-4.909c0.37-0.37,0.37-0.97,0-1.34s-0.97-0.37-1.339,0 l-3.571,3.571v-1.337c0.17-0.038,0.335-0.105,0.468-0.237l3.125-3.172c0.37-0.37,0.37-0.97,0-1.34c-0.37-0.37-0.969-0.37-1.339,0 l-2.253,2.286v-7.349h10.501v15.802H44.82V53.263z M32.361,22.443h10.5v0.252c-0.29-0.046-0.595,0.025-0.817,0.249l-5.157,5.158 c-0.37,0.37-0.37,0.969,0,1.339c0.37,0.37,0.97,0.37,1.34,0l4.635-4.635v1.638c-0.123,0.046-0.239,0.114-0.338,0.212 l-5.157,5.157c-0.37,0.371-0.37,0.97,0,1.34c0.369,0.37,0.97,0.37,1.339,0l4.156-4.156v8.447h-10.5V22.443z M32.361,39.314h10.5 v15.924h-10.5V39.314z"></path></g></g></g></g><g id="SvgjsG5429" featurekey="Qg0WB5-0" transform="matrix(1.2810380912188413,0,0,1.2810380912188413,-0.9607843714564791,139.47793557464828)" fill="#444f5a"><path d="M3.48 15.21 q0.17 0.14 0.435 0.375 t0.605 0.465 q0.51 0.34 1.01 0.53 t1.05 0.19 q0.51 0 0.855 -0.115 t0.545 -0.305 t0.285 -0.44 t0.085 -0.53 q0 -0.31 -0.235 -0.555 t-0.575 -0.435 t-0.71 -0.325 t-0.64 -0.225 q-1.2 -0.42 -2.1 -0.905 t-1.5 -1.08 t-0.9 -1.31 t-0.3 -1.595 q0 -0.93 0.375 -1.69 t1.07 -1.3 t1.675 -0.835 t2.19 -0.295 q0.91 0 1.745 0.205 t1.645 0.655 q0.34 0.2 0.645 0.415 t0.535 0.415 t0.365 0.38 t0.135 0.31 t-0.065 0.24 t-0.195 0.25 l-1.53 1.63 q-0.17 0.17 -0.34 0.17 q-0.14 0 -0.255 -0.08 t-0.255 -0.2 l-0.09 -0.08 q-0.2 -0.17 -0.445 -0.35 t-0.525 -0.325 t-0.59 -0.24 t-0.63 -0.095 q-0.33 0 -0.62 0.055 t-0.51 0.175 t-0.35 0.315 t-0.13 0.475 t0.14 0.485 t0.42 0.38 t0.695 0.33 t0.965 0.335 q1.06 0.35 1.955 0.735 t1.545 0.91 t1.015 1.255 t0.365 1.77 q0 1.1 -0.45 1.995 t-1.235 1.525 t-1.845 0.975 t-2.28 0.345 q-1.15 0 -2.26 -0.41 t-2.07 -1.1 q-0.4 -0.29 -0.675 -0.57 t-0.435 -0.45 l-0.03 -0.03 q-0.01 -0.02 -0.02 -0.025 t-0.02 -0.015 q-0.01 -0.02 -0.02 -0.025 t-0.02 -0.015 q-0.23 -0.25 -0.23 -0.4 q0 -0.17 0.23 -0.38 l1.73 -1.65 q0.21 -0.15 0.34 -0.15 q0.09 0 0.19 0.06 t0.24 0.18 z M26.060000000000002 6.23 q0.17 0.1 0.25 0.26 t-0.03 0.38 l-1.69 2.4 q-0.11 0.17 -0.235 0.195 t-0.305 -0.085 q-0.49 -0.37 -1.08 -0.57 t-1.25 -0.2 q-0.82 0 -1.51 0.31 t-1.19 0.85 t-0.78 1.26 t-0.28 1.54 t0.28 1.535 t0.78 1.25 t1.19 0.845 t1.51 0.31 q0.66 0 1.26 -0.205 t1.09 -0.575 q0.18 -0.11 0.3 -0.09 t0.24 0.18 l1.71 2.46 q0.11 0.22 0.03 0.37 t-0.25 0.25 q-0.94 0.63 -2.025 0.975 t-2.285 0.345 q-1.06 0 -2.035 -0.27 t-1.825 -0.77 t-1.545 -1.195 t-1.195 -1.54 t-0.77 -1.82 t-0.27 -2.035 t0.27 -2.035 t0.77 -1.83 t1.195 -1.555 t1.545 -1.195 t1.825 -0.77 t2.035 -0.275 q1.2 0 2.265 0.335 t2.005 0.965 z M31.19 12.58 q0 0.83 0.28 1.55 t0.785 1.255 t1.195 0.84 t1.52 0.305 t1.525 -0.305 t1.2 -0.84 t0.785 -1.255 t0.28 -1.55 q0 -0.82 -0.28 -1.545 t-0.785 -1.265 t-1.2 -0.85 t-1.525 -0.31 t-1.52 0.31 t-1.195 0.85 t-0.785 1.265 t-0.28 1.545 z M27.330000000000002 12.59 q0 -1.06 0.27 -2.035 t0.77 -1.83 t1.195 -1.555 t1.545 -1.195 t1.825 -0.77 t2.035 -0.275 q1.05 0 2.03 0.275 t1.83 0.77 t1.55 1.195 t1.195 1.555 t0.77 1.83 t0.275 2.035 t-0.275 2.035 t-0.77 1.82 t-1.195 1.54 t-1.55 1.195 t-1.83 0.77 t-2.03 0.27 q-1.06 0 -2.035 -0.27 t-1.825 -0.77 t-1.545 -1.195 t-1.195 -1.54 t-0.77 -1.82 t-0.27 -2.035 z M45.09 5.609999999999999 q0 -0.21 0.11 -0.335 t0.33 -0.125 l6.46 0 q1.03 0 1.93 0.385 t1.57 1.045 t1.055 1.545 t0.385 1.885 q0 0.68 -0.185 1.295 t-0.515 1.15 t-0.785 0.97 t-0.995 0.745 l2.57 4.84 q0.07 0.14 0.18 0.33 t0.11 0.33 q0 0.16 -0.105 0.245 t-0.285 0.085 l-3.43 0 q-0.17 0 -0.305 -0.1 t-0.175 -0.27 l-2.43 -4.57 l-1.62 0 l0 4.51 q0 0.43 -0.46 0.43 l-2.97 0 q-0.2 0 -0.32 -0.105 t-0.12 -0.325 l0 -13.96 z M52.92 10.05 q0 -0.3 -0.11 -0.6 t-0.31 -0.55 t-0.48 -0.42 t-0.62 -0.22 q-0.28 -0.02 -0.525 -0.035 t-0.535 -0.015 l-1.38 0 l0 3.67 l1.84 0 q0.18 0 0.32 -0.01 t0.31 -0.03 q0.35 -0.04 0.63 -0.205 t0.47 -0.41 t0.29 -0.55 t0.1 -0.625 z M67.28 15.21 q0.17 0.14 0.435 0.375 t0.605 0.465 q0.51 0.34 1.01 0.53 t1.05 0.19 q0.51 0 0.855 -0.115 t0.545 -0.305 t0.285 -0.44 t0.085 -0.53 q0 -0.31 -0.235 -0.555 t-0.575 -0.435 t-0.71 -0.325 t-0.64 -0.225 q-1.2 -0.42 -2.1 -0.905 t-1.5 -1.08 t-0.9 -1.31 t-0.3 -1.595 q0 -0.93 0.375 -1.69 t1.07 -1.3 t1.675 -0.835 t2.19 -0.295 q0.91 0 1.745 0.205 t1.645 0.655 q0.34 0.2 0.645 0.415 t0.535 0.415 t0.365 0.38 t0.135 0.31 t-0.065 0.24 t-0.195 0.25 l-1.53 1.63 q-0.17 0.17 -0.34 0.17 q-0.14 0 -0.255 -0.08 t-0.255 -0.2 l-0.09 -0.08 q-0.2 -0.17 -0.445 -0.35 t-0.525 -0.325 t-0.59 -0.24 t-0.63 -0.095 q-0.33 0 -0.62 0.055 t-0.51 0.175 t-0.35 0.315 t-0.13 0.475 t0.14 0.485 t0.42 0.38 t0.695 0.33 t0.965 0.335 q1.06 0.35 1.955 0.735 t1.545 0.91 t1.015 1.255 t0.365 1.77 q0 1.1 -0.45 1.995 t-1.235 1.525 t-1.845 0.975 t-2.28 0.345 q-1.15 0 -2.26 -0.41 t-2.07 -1.1 q-0.4 -0.29 -0.675 -0.57 t-0.435 -0.45 l-0.03 -0.03 q-0.01 -0.02 -0.02 -0.025 t-0.02 -0.015 q-0.01 -0.02 -0.02 -0.025 t-0.02 -0.015 q-0.23 -0.25 -0.23 -0.4 q0 -0.17 0.23 -0.38 l1.73 -1.65 q0.21 -0.15 0.34 -0.15 q0.09 0 0.19 0.06 t0.24 0.18 z M89.86 6.23 q0.17 0.1 0.25 0.26 t-0.03 0.38 l-1.69 2.4 q-0.11 0.17 -0.235 0.195 t-0.305 -0.085 q-0.49 -0.37 -1.08 -0.57 t-1.25 -0.2 q-0.82 0 -1.51 0.31 t-1.19 0.85 t-0.78 1.26 t-0.28 1.54 t0.28 1.535 t0.78 1.25 t1.19 0.845 t1.51 0.31 q0.66 0 1.26 -0.205 t1.09 -0.575 q0.18 -0.11 0.3 -0.09 t0.24 0.18 l1.71 2.46 q0.11 0.22 0.03 0.37 t-0.25 0.25 q-0.94 0.63 -2.025 0.975 t-2.285 0.345 q-1.06 0 -2.035 -0.27 t-1.825 -0.77 t-1.545 -1.195 t-1.195 -1.54 t-0.77 -1.82 t-0.27 -2.035 t0.27 -2.035 t0.77 -1.83 t1.195 -1.555 t1.545 -1.195 t1.825 -0.77 t2.035 -0.275 q1.2 0 2.265 0.335 t2.005 0.965 z M93.45 5.59 q0.02 -0.18 0.14 -0.31 t0.34 -0.13 l3.46 0 q0.37 0 0.48 0.38 l2.72 9.08 l2.74 -9.08 q0.14 -0.38 0.51 -0.38 l3.42 0 q0.18 0 0.325 0.125 t0.165 0.315 q0.35 3.52 0.715 6.985 t0.715 6.985 l0 0.05 q0 0.39 -0.44 0.39 l-2.83 0 q-0.46 0 -0.48 -0.44 l-0.87 -7.73 l-2.25 7.78 q-0.02 0.1 -0.145 0.24 t-0.245 0.14 l-2.63 0 q-0.12 0 -0.255 -0.135 t-0.145 -0.245 l-2.25 -7.76 l-0.87 7.71 q-0.02 0.44 -0.49 0.44 l-2.83 0 q-0.43 0 -0.43 -0.44 z M129.43 6.23 q0.17 0.1 0.25 0.26 t-0.03 0.38 l-1.69 2.4 q-0.11 0.17 -0.235 0.195 t-0.305 -0.085 q-0.49 -0.37 -1.08 -0.57 t-1.25 -0.2 q-0.82 0 -1.51 0.31 t-1.19 0.85 t-0.78 1.26 t-0.28 1.54 t0.28 1.535 t0.78 1.25 t1.19 0.845 t1.51 0.31 q0.66 0 1.26 -0.205 t1.09 -0.575 q0.18 -0.11 0.3 -0.09 t0.24 0.18 l1.71 2.46 q0.11 0.22 0.03 0.37 t-0.25 0.25 q-0.94 0.63 -2.025 0.975 t-2.285 0.345 q-1.06 0 -2.035 -0.27 t-1.825 -0.77 t-1.545 -1.195 t-1.195 -1.54 t-0.77 -1.82 t-0.27 -2.035 t0.27 -2.035 t0.77 -1.83 t1.195 -1.555 t1.545 -1.195 t1.825 -0.77 t2.035 -0.275 q1.2 0 2.265 0.335 t2.005 0.965 z M144.85 19.26 q0 0.17 -0.06 0.325 t-0.2 0.245 q-0.11 0.11 -0.26 0.14 t-0.26 0.03 l-1.97 0 q-0.21 0 -0.34 -0.055 t-0.21 -0.155 t-0.135 -0.245 t-0.115 -0.315 l-0.29 -0.75 q-0.27 0.27 -0.59 0.575 t-0.705 0.565 t-0.835 0.435 t-0.96 0.175 q-0.91 0 -1.745 -0.23 t-1.56 -0.655 t-1.315 -1.02 t-1.015 -1.325 t-0.655 -1.575 t-0.23 -1.765 q0 -1.39 0.51 -2.585 t1.39 -2.08 t2.07 -1.39 t2.55 -0.505 q0.62 0 1.14 0.185 t0.945 0.485 t0.77 0.68 t0.615 0.77 l0.39 -1.21 q0.1 -0.25 0.165 -0.405 t0.14 -0.23 t0.185 -0.1 t0.31 -0.025 l1.49 0 q0.11 0 0.26 0.03 t0.26 0.14 q0.14 0.11 0.2 0.25 t0.06 0.32 l0 11.27 z M134.99999999999997 13.66 q0 0.66 0.205 1.235 t0.585 0.995 t0.915 0.665 t1.185 0.245 q0.67 0 1.245 -0.245 t1 -0.665 t0.665 -0.995 t0.24 -1.235 q0 -0.64 -0.24 -1.22 t-0.665 -1.02 t-1 -0.695 t-1.245 -0.255 q-0.65 0 -1.185 0.255 t-0.915 0.695 t-0.585 1.02 t-0.205 1.22 z M147.24999999999997 4.289999999999999 q0 -0.32 0.16 -0.54 t0.55 -0.22 l2.45 0 q0.1 0 0.21 0.055 t0.205 0.155 t0.16 0.24 t0.065 0.31 l0 14.94 q0 0.38 -0.215 0.575 t-0.555 0.195 l-2.32 0 q-0.39 0 -0.55 -0.195 t-0.16 -0.575 l0 -14.94 z M161.57999999999998 16.09 q0.14 -0.1 0.265 -0.125 t0.195 -0.025 q0.17 0 0.31 0.07 t0.29 0.3 l1.12 1.69 q0.05 0.08 0.095 0.18 t0.045 0.16 q0 0.23 -0.145 0.375 t-0.315 0.255 q-0.82 0.57 -1.795 0.915 t-2.065 0.345 q-0.9 0 -1.735 -0.23 t-1.555 -0.655 t-1.32 -1.02 t-1.02 -1.325 t-0.655 -1.575 t-0.235 -1.765 t0.235 -1.77 t0.655 -1.575 t1.02 -1.32 t1.32 -1.015 t1.555 -0.65 t1.735 -0.23 q1.09 0 2.015 0.29 t1.735 0.86 l-0.03 -0.03 q0.22 0.13 0.35 0.305 t0.13 0.435 q0 0.18 -0.12 0.37 l-0.89 1.51 q-0.28 0.49 -0.68 0.49 q-0.09 0 -0.22 -0.045 t-0.29 -0.155 q-0.44 -0.29 -0.945 -0.475 t-1.075 -0.185 q-0.63 0 -1.16 0.255 t-0.905 0.695 t-0.585 1.02 t-0.21 1.22 q0 0.66 0.21 1.235 t0.585 0.995 t0.905 0.665 t1.16 0.245 q0.57 0 1.07 -0.2 t0.95 -0.51 z M177.58999999999997 19.83 q-0.13 0.11 -0.275 0.14 t-0.275 0.03 l-1.51 0 q-0.18 0 -0.31 -0.065 t-0.22 -0.175 t-0.15 -0.25 t-0.1 -0.29 l-0.31 -1.28 q-0.15 0.31 -0.435 0.705 t-0.725 0.74 t-1.05 0.58 t-1.4 0.235 q-1.14 0 -2.07 -0.44 t-1.585 -1.2 t-1.015 -1.775 t-0.36 -2.165 l0 -6.55 q0 -0.38 0.165 -0.575 t0.525 -0.195 l2.31 0 q0.43 0 0.59 0.145 t0.16 0.565 l0 6.51 q0 0.43 0.195 0.815 t0.515 0.68 t0.725 0.465 t0.825 0.17 q0.36 0 0.745 -0.17 t0.71 -0.455 t0.535 -0.67 t0.21 -0.815 l0 -6.5 q0 -0.17 0.065 -0.34 t0.195 -0.26 q0.13 -0.08 0.245 -0.11 t0.265 -0.03 l2.26 0 q0.43 0 0.62 0.21 t0.19 0.56 l0 11.19 q0 0.19 -0.085 0.35 t-0.235 0.25 z M180.24999999999994 4.289999999999999 q0 -0.32 0.16 -0.54 t0.55 -0.22 l2.45 0 q0.1 0 0.21 0.055 t0.205 0.155 t0.16 0.24 t0.065 0.31 l0 14.94 q0 0.38 -0.215 0.575 t-0.555 0.195 l-2.32 0 q-0.39 0 -0.55 -0.195 t-0.16 -0.575 l0 -14.94 z M199.51999999999995 19.26 q0 0.17 -0.06 0.325 t-0.2 0.245 q-0.11 0.11 -0.26 0.14 t-0.26 0.03 l-1.97 0 q-0.21 0 -0.34 -0.055 t-0.21 -0.155 t-0.135 -0.245 t-0.115 -0.315 l-0.29 -0.75 q-0.27 0.27 -0.59 0.575 t-0.705 0.565 t-0.835 0.435 t-0.96 0.175 q-0.91 0 -1.745 -0.23 t-1.56 -0.655 t-1.315 -1.02 t-1.015 -1.325 t-0.655 -1.575 t-0.23 -1.765 q0 -1.39 0.51 -2.585 t1.39 -2.08 t2.07 -1.39 t2.55 -0.505 q0.62 0 1.14 0.185 t0.945 0.485 t0.77 0.68 t0.615 0.77 l0.39 -1.21 q0.1 -0.25 0.165 -0.405 t0.14 -0.23 t0.185 -0.1 t0.31 -0.025 l1.49 0 q0.11 0 0.26 0.03 t0.26 0.14 q0.14 0.11 0.2 0.25 t0.06 0.32 l0 11.27 z M189.66999999999993 13.66 q0 0.66 0.205 1.235 t0.585 0.995 t0.915 0.665 t1.185 0.245 q0.67 0 1.245 -0.245 t1 -0.665 t0.665 -0.995 t0.24 -1.235 q0 -0.64 -0.24 -1.22 t-0.665 -1.02 t-1 -0.695 t-1.245 -0.255 q-0.65 0 -1.185 0.255 t-0.915 0.695 t-0.585 1.02 t-0.205 1.22 z M202.68999999999994 5.32 q0 -0.31 0.205 -0.465 t0.585 -0.295 l2.27 -0.79 q0.05 -0.01 0.095 -0.01 l0.085 0 q0.37 0 0.495 0.215 t0.125 0.565 l-0.01 3.15 l1.67 0 q0.32 0 0.52 0.19 t0.2 0.57 l0 1.93 q0 0.42 -0.2 0.615 t-0.52 0.195 l-1.67 0 l0.01 8.04 q0 0.38 -0.22 0.575 t-0.61 0.195 l-2.26 0 q-0.77 0 -0.77 -0.77 l-0.01 -8.04 l-0.73 0 q-0.77 0 -0.77 -0.81 l0 -1.93 q0 -0.76 0.77 -0.76 l0.73 0 z M209.80999999999995 13.66 q0 -0.92 0.235 -1.77 t0.66 -1.575 t1.02 -1.32 t1.325 -1.015 t1.575 -0.65 t1.765 -0.23 q1.36 0 2.555 0.505 t2.08 1.39 t1.4 2.08 t0.515 2.585 q0 0.92 -0.235 1.765 t-0.66 1.575 t-1.02 1.325 t-1.325 1.02 t-1.565 0.655 t-1.745 0.23 q-0.92 0 -1.765 -0.23 t-1.575 -0.655 t-1.325 -1.02 t-1.02 -1.325 t-0.66 -1.575 t-0.235 -1.765 z M213.45999999999995 13.66 q0 0.66 0.205 1.235 t0.58 0.995 t0.91 0.665 t1.205 0.245 q0.65 0 1.175 -0.245 t0.89 -0.665 t0.56 -0.995 t0.195 -1.235 q0 -0.64 -0.195 -1.22 t-0.56 -1.02 t-0.89 -0.695 t-1.175 -0.255 q-0.67 0 -1.205 0.255 t-0.91 0.695 t-0.58 1.02 t-0.205 1.22 z M224.92999999999992 8.04 q0 -0.17 0.075 -0.325 t0.185 -0.245 q0.26 -0.17 0.54 -0.17 l1.51 0 q0.19 0 0.3 0.07 t0.185 0.18 t0.13 0.25 t0.135 0.28 q0.02 0.04 0.08 0.195 t0.13 0.34 t0.135 0.35 t0.085 0.215 q0.3 -0.33 0.575 -0.695 t0.585 -0.675 t0.69 -0.51 t0.9 -0.2 q0.54 0 0.965 0.08 t0.805 0.235 t0.755 0.395 t0.815 0.56 q0.69 0.37 0.26 1.1 l-0.91 1.55 q-0.2 0.3 -0.49 0.37 t-0.63 -0.09 q-0.43 -0.42 -0.875 -0.625 t-1.015 -0.205 q-0.39 0 -0.685 0.11 t-0.535 0.31 t-0.45 0.48 t-0.42 0.62 l0 7.24 q0 0.38 -0.185 0.575 t-0.615 0.195 l-2.25 0 q-0.78 0 -0.78 -0.77 l0 -11.19 z"></path></g></svg></div>
<div class="row mb-4 ml-2 mr-2">
<div class="col-sm-2 mt-4">
<!-- Menu -->
<div class="list-group" id="myList" role="tablist">
<a class="list-group-item list-group-item-action active" data-toggle="list" href="#home" role="tab" onclick="showHome();" id="homeTab">Home</a>
<a class="list-group-item list-group-item-action" data-toggle="list" href="#source" role="tab" onclick="showSourceModel();" id="sourceTab">Source</a>
<a class="list-group-item list-group-item-action" data-toggle="list" href="#deliver" role="tab" onclick="showDeliverModel();" id="deliverTab">Deliver</a>
<a class="list-group-item list-group-item-action" data-toggle="list" href="#return" role="tab" onclick="showReturnModel();" id="returnTab">Return</a>
</div>
<!-- Links -->
<div class="mt-4">
<h6>Useful Links</h6>
<p>
<a class="text-muted" href="https://ecommerce-platforms.com/ecommerce-selling-advice/aliexpress-alternatives" target="_blank">The Top AliExpress Alternatives for Dropshipping (Aug 2021)</a>
</p>
<p>
<a class="text-muted" href="https://alixblog.com/en/guide-aliexpress/" target="_blank">How to shop on AliExpress: the definitive guide</a>
</p>
<p>
<a class="text-muted" href="https://www.easyship.com/blog/most-popular-international-shipping-services" target="_blank">10 Most Popular International shipping Services</a>
</p>
<p>
<a class="text-muted" href="https://www.investopedia.com/terms/s/scm.asp" target="_blank">Supply Chain Management (SCM)</a>
</p>
<p>
<a class="text-muted" href="https://www.cio.com/article/3311516/what-is-scor-a-model-for-improving-supply-chain-management.html" target="_blank">What is SCOR? A model for improving supply chain management</a>
</p>
<p>
<a class="text-muted" href="https://abcsupplychain.com/eoq-wilson-formula-calculation/" target="_blank">EOQ & Wilson Formula calculation</a>
</p>
</div>
</div>
<div class="col-sm-10 mt-4">
<div class="tab-content">
<!-- Home tab -->
<div class="tab-pane active text-center" id="home" role="tabpanel">
<h1>Plan Supply Chain Management in Dropshipping SCOR SCM Calculator</h1>
<h5>SCOR-driven and BPMN business process centric Supply Chain Management (SCM) calculator to plan ordering, shipping, and returning product streams between suppliers and customers.</h5>
<p class="text-muted ml-4 mr-4">The Supply Chain Management (SCM) planning calculator is designed in accordance with the Supply Chain Operations Reference (SCOR®) model, which is applied in a form of the Business Process Model and Notation (BPMN) process reference
model used for effective communication among supply chain parties.</p>
<button class="btn btn-outline-info mt-1 btn-lg" onclick="$('#sourceTab').click();">Get Started</button>
<p class="text-muted mt-4 ml-4 mr-4">In the tough modern business environment that suffers from <a href="https://www.abeam.com/vn/en/topics/insights/covid19_retail" target="_blank">COVID-19 outbreak consequences</a>, the urgent task for many wholesale trading and retail
companies is to remain competitive and increase the efficiency of their business activities. Hence, the issue of logistics development and supply chain management is more acute than ever.</p>
<div class="row mb-4">
<div class="col-sm-8 text-center">
<img src="/images/scm/desktop.PNG" class="img-thumbnail img-fluid mt-4" alt="desktop" style="height: 500px;">
<br>
<small class="text-muted">Desktop</small>
</div>
<div class="col-sm-4 text-center">
<img src="/images/scm/mobile.PNG" class="img-thumbnail img-fluid mt-4" alt="mobile" style="height: 500px;">
<br>
<small class="text-muted">Mobile</small>
</div>
</div>
<p class="text-muted mt-4 ml-4 mr-4">Nevertheless, the share of logistics costs, one of the most important indicators for assessing the efficiency of logistics systems, in the structure of GDP (Gross Domestic Product) in developed countries is 10-12%, while in developing
countries it is around 15-20%. Reducing the cost of logistics business processes is possible through the application of a <a href="http://repository.kpi.kharkov.ua/bitstream/KhPI-Press/50029/1/Orlovskyi_Measurement_2020.pdf" target="_blank">Busines Process Management approach</a>.
Important logistics business processes of a trading company, which require constant control and improvement, are goods source, deliver, and return processes.</p>
<img src="/images/scm.png" class="img-fluid mt-0" alt="SCM" style="width: 40%;">
</div>
<!-- Source tab -->
<div class="tab-pane" id="source" role="tabpanel">
<h5>Source Busines Process Planning</h5>
<h6 class="text-muted">Step 1. Check out the proposed workflow</h6>
<div class="img-thumbnail">
<div id="source-canvas"></div>
</div>
<form class="needs-validation mt-4" onsubmit="planSource(); return false;">
<h6 class="text-muted">Step 2. Choose the suitable dropshipping platform</h6>
<div class="form-row">
<div class="col-md-3 mb-3 text-center">
<a href="https://www.alibaba.com/" target="_blank"><img src="/images/scm/Alibaba-logo.png" class="img-fluid img-thumbnail wholesale-img" alt="Alibaba-logo"></a>
</div>
<div class="col-md-3 mb-3 text-center">
<a href="https://aliexpress.com/" target="_blank"><img src="/images/scm/Aliexpress-logo.png" class="img-fluid img-thumbnail wholesale-img" alt="Aliexpress-logo"></a>
</div>
<div class="col-md-3 mb-3 text-center">
<a href="https://world.taobao.com/" target="_blank"><img src="/images/scm/Taobao-logo.png" class="img-fluid img-thumbnail wholesale-img" alt="Taobao-logo"></a>
</div>
<div class="col-md-3 mb-3 text-center">
<a href="https://global.jd.com/" target="_blank"><img src="/images/scm/JD-logo.png" class="img-fluid img-thumbnail wholesale-img" alt="JD-logo"></a>
</div>
</div>
<h6 class="text-muted">... or choose the wholesale dropshipping shopping center nearby</h6>
<div class="form-row">
<div class="col-md-12 mb-3 text-center">
<iframe class="lg-map" src="https://maps.google.com/maps?q=wholesale+dropshipping+nearby&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</div>
</div>
<h6 class="text-muted">Step 3. Find the most suitable offers</h6>
<div class="form-row">
<div class="col-md-12 mb-3">
<label for="productName">Product Name</label>
<input type="text" class="form-control" id="productName" value="New Women Summer Sneakers Ladies Platform Vulcanized Shoes Walking Lace-Up Comforable Casual Sheos Tenis Feminino Zapatos Mujer" required>
</div>
</div>
<div class="form-row">
<div class="col-md-12 mb-3 text-center">
<div class="alert alert-warning" role="alert">Find a product that interests your customers on one of the online wholesale trading platforms</div>
<img src="/images/scm/product-name.PNG" class="img-fluid example-img" alt="product-name">
</div>
</div>
<h6 class="text-muted">Step 4. Analyze demand, delivery terms, and storage terms</h6>
<div class="form-row">
<div class="col-md-3 mb-3">
<label for="demandValue">Demand (D)</label>
<input type="number" min="1" step="1" class="form-control" id="demandValue" value="66" required>
</div>
<div class="col-md-3 mb-3">
<label for="daysValue">Period (Days)</label>
<input type="number" min="1" step="1" class="form-control" id="daysValue" value="365" required>
</div>
<div class="col-md-3 mb-3">
<label for="orderCostValue">Order Cost (CO)</label>
<input type="number" min="0.01" step="0.01" class="form-control" id="orderCostValue" value="37.98" required>
</div>
<div class="col-md-3 mb-3">
<label for="stockCostValue">Stock Ownership Cost (StC)</label>
<input type="number" min="0.01" step="0.01" class="form-control" id="stockCostValue" value="9.36" required>
</div>
</div>
<div class="form-row">
<div class="col-md-3 mb-3 text-center">
<div class="alert alert-warning" role="alert">Determine the demand for this product</div>
<img src="/images/scm/product-demand.PNG" class="img-fluid example-img" alt="product-demand">
<br><small class="text-muted">This can be found out by analyzing the trading platforms</small>
</div>
<div class="col-md-3 mb-3 text-center">
<div class="alert alert-warning" role="alert">Determine the period during which the demand for this product is expected</div>
<img src="/images/scm/product-period.PNG" class="img-fluid example-img" alt="product-period">
<br><small class="text-muted">This can be found out by analyzing the trading platforms</small>
</div>
<div class="col-md-3 mb-3 text-center">
<div class="alert alert-warning" role="alert">Determine the cost of the order</div>
<img src="/images/scm/product-order-cost.PNG" class="img-fluid example-img" alt="product-order-cost">
<br><small class="text-muted">This can be found out by analyzing the trading platforms</small>
</div>
<div class="col-md-3 mb-3 text-center">
<div class="alert alert-warning" role="alert">Determine the cost of storing the ordered batch of goods</div>
<a href="https://www.google.com/search?q=how+much+to+rent+a+warehouse&oq=how+much+to+rent+a+warehouse" target="_blank"><img src="/images/scm/product-store-cost.PNG" class="img-fluid example-img" alt="product-store-cost"></a>
</div>
</div>
<h6 class="text-muted">Step 5. Make a decision based on the recommendations received</h6>
<button class="btn btn-outline-primary btn-block" type="submit">Plan Source</button>
</form>
<div class="alert alert-danger mt-4" role="alert" id="sourceWarningMessage">
Invalid source planning parameters!
</div>
<div class="form-row mt-4" id="sourceResults">
<div class="col-md-4 mb-3">
<label for="orderQuantity">Economic Order Quantity (EOQ)</label>
<input type="text" class="form-control" id="orderQuantity" readonly>
</div>
<div class="col-md-4 mb-3">
<label for="annualOrderNumber">Annual Order Number (N)</label>
<input type="text" class="form-control" id="annualOrderNumber" readonly>
</div>
<div class="col-md-4 mb-3">
<label for="orderFrequency">Order Frequency (F)</label>
<input type="text" class="form-control" id="orderFrequency" readonly>
</div>
</div>
<div class="card mt-1">
<div class="card-body">
<div class="text-center" id="sourceResultsText"></div>
<div class="mt-4 text-center" id="sourceResultsChart"></div>
</div>
</div>
</div>
<!-- Deliver tab -->
<div class="tab-pane" id="deliver" role="tabpanel">
<h5>Deliver Busines Process Planning</h5>
<h6 class="text-muted">Step 1. Check out the proposed workflow</h6>
<div class="img-thumbnail">
<div id="deliver-canvas"></div>
</div>
<form class="needs-validation mt-4" onsubmit="planDeliver(); return false;">
<h6 class="text-muted">Step 2. Choose the suitable delivery service</h6>
<div class="form-row">
<div class="col-md-3 mb-3 text-center">
<a href="https://www.google.com/search?tbm=lcl&q=DHL+parcel+shipping+nearby" target="_blank"><img src="/images/scm/DHL-logo.png" class="img-fluid img-thumbnail wholesale-img" alt="DHL-logo"></a>
</div>
<div class="col-md-3 mb-3 text-center">
<a href="https://www.google.com/search?tbm=lcl&q=FedEx+parcel+shipping+nearby" target="_blank"><img src="/images/scm/FedEx-logo.png" class="img-fluid img-thumbnail wholesale-img" alt="FedEx-logo"></a>
</div>
<div class="col-md-3 mb-3 text-center">
<a href="https://www.google.com/search?tbm=lcl&q=UPS+parcel+shipping+nearby" target="_blank"><img src="/images/scm/UPS-logo.png" class="img-fluid img-thumbnail wholesale-img" alt="UPS-logo"></a>
</div>
<div class="col-md-3 mb-3 text-center">
<a href="https://www.google.com/search?tbm=lcl&q=EMS+parcel+shipping+nearby" target="_blank"><img src="/images/scm/EMS-logo.png" class="img-fluid img-thumbnail wholesale-img" alt="EMS-logo"></a>
</div>
</div>
<h6 class="text-muted">... and look for the parcel shipping office nearby</h6>
<div class="form-row">
<div class="col-md-12 mb-3 text-center">
<iframe class="lg-map" src="https://maps.google.com/maps?q=parcel+shipping+nearby&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</div>
</div>
<h6 class="text-muted">Step 3. Analyze demand, delivery terms, and storage terms</h6>
<div class="form-row">
<div class="col-md-3 mb-3">
<label for="demand2Value">Demand (D)</label>
<input type="number" min="1" step="1" class="form-control" id="demand2Value" value="66" required>
</div>
<div class="col-md-3 mb-3">
<label for="days2Value">Period (Days)</label>
<input type="number" min="1" step="1" class="form-control" id="days2Value" value="365" required>
</div>
<div class="col-md-3 mb-3">
<label for="shipmentCostValue">Shipping Cost (ShC)</label>
<input type="number" min="0.01" step="0.01" class="form-control" id="shipmentCostValue" value="31.85" required>
</div>
<div class="col-md-3 mb-3">
<label for="stockCost2Value">Stock Ownership Cost (StC)</label>
<input type="number" min="0.01" step="0.01" class="form-control" id="stockCost2Value" value="9.36" required>
</div>
</div>
<div class="form-row">
<div class="col-md-3 mb-3 text-center">
<div class="alert alert-warning" role="alert">Determine the demand for this product</div>
<img src="/images/scm/product-demand.PNG" class="img-fluid example-img" alt="product-demand">
<br><small class="text-muted">This can be found out by analyzing the trading platforms</small>
</div>
<div class="col-md-3 mb-3 text-center">
<div class="alert alert-warning" role="alert">Determine the period during which the demand for this product is expected</div>
<img src="/images/scm/product-period.PNG" class="img-fluid example-img" alt="product-period">
<br><small class="text-muted">This can be found out by analyzing the trading platforms</small>
</div>
<div class="col-md-3 mb-3 text-center">
<div class="alert alert-warning" role="alert">Determine the cost of the shipping</div>
<a href="https://www.google.com/search?q=average+shipping+cost" target="_blank"><img src="/images/scm/product-shipping.PNG" class="img-fluid example-img" alt="product-shipping"></a>
</div>
<div class="col-md-3 mb-3 text-center">
<div class="alert alert-warning" role="alert">Determine the cost of storing the ordered batch of goods</div>
<a href="https://www.google.com/search?q=how+much+to+rent+a+warehouse&oq=how+much+to+rent+a+warehouse" target="_blank"><img src="/images/scm/product-store-cost.PNG" class="img-fluid example-img" alt="product-store-cost"></a>
</div>
</div>
<h6 class="text-muted">Step 4. Make a decision based on the recommendations received</h6>
<button class="btn btn-outline-success btn-block" type="submit">Plan Deliver</button>
</form>
<div class="alert alert-danger mt-4" role="alert" id="deliverWarningMessage">
Invalid deliver planning parameters!
</div>
<div class="form-row mt-4" id="deliverResults">
<div class="col-md-4 mb-3">
<label for="shipmentQuantity">Economic Shipment Quantity (EOQ)</label>
<input type="text" class="form-control" id="shipmentQuantity" readonly>
</div>
<div class="col-md-4 mb-3">
<label for="annualShipmentNumber">Annual Shipment Number (N)</label>
<input type="text" class="form-control" id="annualShipmentNumber" readonly>
</div>
<div class="col-md-4 mb-3">
<label for="shipmentFrequency">Shipment Frequency (F)</label>
<input type="text" class="form-control" id="shipmentFrequency" readonly>
</div>
</div>
<div class="card mt-1">
<div class="card-body">
<div class="text-center" id="deliverResultsText"></div>
<div class="mt-4 text-center" id="deliverResultsChart"></div>
</div>
</div>
</div>
<!-- Return tab -->
<div class="tab-pane" id="return" role="tabpanel">
<h5>Return Busines Process Planning</h5>
<h6 class="text-muted">Step 1. Check out the proposed workflow</h6>
<div class="img-thumbnail">
<div id="return-canvas"></div>
</div>
<form class="needs-validation mt-4" onsubmit="planReturn(); return false;">
<h6 class="text-muted">Step 2. Choose the suitable delivery service</h6>
<div class="form-row">
<div class="col-md-3 mb-3 text-center">
<a href="https://www.google.com/search?tbm=lcl&q=DHL+parcel+shipping+nearby" target="_blank"><img src="/images/scm/DHL-logo.png" class="img-fluid img-thumbnail wholesale-img" alt="DHL-logo"></a>
</div>
<div class="col-md-3 mb-3 text-center">
<a href="https://www.google.com/search?tbm=lcl&q=FedEx+parcel+shipping+nearby" target="_blank"><img src="/images/scm/FedEx-logo.png" class="img-fluid img-thumbnail wholesale-img" alt="FedEx-logo"></a>
</div>
<div class="col-md-3 mb-3 text-center">
<a href="https://www.google.com/search?tbm=lcl&q=UPS+parcel+shipping+nearby" target="_blank"><img src="/images/scm/UPS-logo.png" class="img-fluid img-thumbnail wholesale-img" alt="UPS-logo"></a>
</div>
<div class="col-md-3 mb-3 text-center">
<a href="https://www.google.com/search?tbm=lcl&q=EMS+parcel+shipping+nearby" target="_blank"><img src="/images/scm/EMS-logo.png" class="img-fluid img-thumbnail wholesale-img" alt="EMS-logo"></a>
</div>
</div>
<h6 class="text-muted">... and look for the parcel shipping office nearby</h6>
<div class="form-row">
<div class="col-md-12 mb-3 text-center">
<iframe class="lg-map" src="https://maps.google.com/maps?q=parcel+shipping+nearby&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</div>
</div>
<h6 class="text-muted">Step 3. Analyze returns, delivery terms, and storage terms</h6>
<div class="form-row">
<div class="col-md-2 mb-3">
<label for="refundValue">Refund (R)</label>
<input type="number" min="1" step="1" class="form-control" id="refundValue" value="19" required>
</div>
<div class="col-md-2 mb-3">
<label for="days3Value">Period (Days)</label>
<input type="number" min="1" step="1" class="form-control" id="days3Value" value="365" required>
</div>
<div class="col-md-2 mb-3">
<label for="refundCostValue">Refund Cost (RfC)</label>
<input type="number" min="0.01" step="0.01" class="form-control" id="refundCostValue" value="0.01" required>
</div>
<div class="col-md-3 mb-3">
<label for="returnCostValue">Return Cost (RtC)</label>
<input type="number" min="0.01" step="0.01" class="form-control" id="returnCostValue" value="31.85" required>
</div>
<div class="col-md-3 mb-3">
<label for="stockCost3Value">Stock Ownership Cost (StC)</label>
<input type="number" min="0.01" step="0.01" class="form-control" id="stockCost3Value" value="9.36" required>
</div>
</div>
<div class="form-row">
<div class="col-md-3 mb-3 text-center">
<div class="alert alert-warning" role="alert">Determine the return rate for this product</div>
<a href="https://www.google.com/search?q=average+product+return+rate" target="_blank"><img src="/images/scm/product-return.PNG" class="img-fluid example-img" alt="product-return"></a>
</div>
<div class="col-md-3 mb-3 text-center">
<div class="alert alert-warning" role="alert">Determine the period during which the demand for this product is expected</div>
<img src="/images/scm/product-period.PNG" class="img-fluid example-img" alt="product-period">
<br><small class="text-muted">This can be found out by analyzing the trading platforms</small>
</div>
<div class="col-md-3 mb-3 text-center">
<div class="alert alert-warning" role="alert">Determine the cost of the shipping</div>
<a href="https://www.google.com/search?q=average+shipping+cost" target="_blank"><img src="/images/scm/product-shipping.PNG" class="img-fluid example-img" alt="product-shipping"></a>
</div>
<div class="col-md-3 mb-3 text-center">
<div class="alert alert-warning" role="alert">Determine the cost of storing the ordered batch of goods</div>
<a href="https://www.google.com/search?q=how+much+to+rent+a+warehouse&oq=how+much+to+rent+a+warehouse" target="_blank"><img src="/images/scm/product-store-cost.PNG" class="img-fluid example-img" alt="product-store-cost"></a>
</div>
</div>
<h6 class="text-muted">Step 4. Make a decision based on the recommendations received</h6>
<button class="btn btn-outline-danger btn-block" type="submit">Plan Return</button>
</form>
<div class="alert alert-danger mt-4" role="alert" id="returnWarningMessage">
Invalid return planning parameters!
</div>
<div class="form-row mt-4" id="returnResults">
<div class="col-md-4 mb-3">
<label for="returnQuantity">Economic Return Quantity (EOQ)</label>
<input type="text" class="form-control" id="returnQuantity" readonly>
</div>
<div class="col-md-4 mb-3">
<label for="annualReturnNumber">Annual Return Number (N)</label>
<input type="text" class="form-control" id="annualReturnNumber" readonly>
</div>
<div class="col-md-4 mb-3">
<label for="returnFrequency">Return Frequency (F)</label>
<input type="text" class="form-control" id="returnFrequency" readonly>
</div>
</div>
<div class="card mt-1">
<div class="card-body">
<div class="text-center" id="returnResultsText"></div>
<div class="mt-4 text-center" id="returnResultsChart"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="jumbotron jumbotron-fluid text-muted" id="footer">
<div class="ml-4">
<b>SCOR® SCM Calculator</b> by <a href="/index.html" target="_blank"><b>freebpmnquality</b></a>, 2014 -
<script>
document.write(new Date().getFullYear())
</script> <a href="https://creativecommons.org/licenses/by-nd/4.0/" target="_blank">(CC BY-ND)</a>, <a href="/privacy-policy.html" target="_blank">Privacy Policy</a>
</div>
</div>
<!-- Imports -->
<script src="/js/jquery-3.4.1.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/popper.min.js"></script>
<!-- CDN -->
<script src="https://unpkg.com/bpmn-js@8.7.1/dist/bpmn-viewer.development.js"></script>
<!-- App -->
<script>
const modelURL = '/resources/models/bpmn/SCM.bpmn';
const activities = {
plan: 'Activity_1p7t48r',
order: 'Activity_1322mx1',
receive: 'Activity_1sn6om8',
ship: 'Activity_1hqdp4c',
refund: 'Activity_0o2vsuw',
return: 'Activity_1oznqsu'
};
const events = {
order: 'Event_17mynd8',
shipping: 'Event_0n31ekk',
return: 'Event_0293csj'
};
const canvasHeight = Math.floor($(window).height() / 2);
const sourceViewer = new BpmnJS({
container: $('#source-canvas'),
height: canvasHeight
});
const deliverViewer = new BpmnJS({
container: $('#deliver-canvas'),
height: canvasHeight
});
const returnViewer = new BpmnJS({
container: $('#return-canvas'),
height: canvasHeight
});
function openFromUrl(viewer, url, callback) {
$.ajax(url, {
dataType: 'text'
}).done(async function(xml) {
try {
await viewer.importXML(xml);
const canvas = viewer.get('canvas');
callback(canvas);
canvas.zoom('fit-viewport');
} catch (err) {
console.error(err);
}
});
}
function showHome() {
history.pushState({}, null, '#home');
}
function showSourceModel() {
openFromUrl(sourceViewer, modelURL, function(canvas) {
canvas.addMarker(activities.plan, 'highlight-yellow');
canvas.addMarker(activities.order, 'highlight-blue');
canvas.addMarker(activities.receive, 'highlight-blue');
canvas.addMarker(events.order, 'highlight-blue');
});
history.pushState({}, null, '#source');
}
function showDeliverModel() {
openFromUrl(deliverViewer, modelURL, function(canvas) {
canvas.addMarker(activities.plan, 'highlight-yellow');
canvas.addMarker(activities.receive, 'highlight-green');
canvas.addMarker(activities.ship, 'highlight-green');
canvas.addMarker(events.shipping, 'highlight-green');
});
history.pushState({}, null, '#deliver');
}
function showReturnModel() {
openFromUrl(returnViewer, modelURL, function(canvas) {
canvas.addMarker(activities.plan, 'highlight-yellow');
canvas.addMarker(activities.refund, 'highlight-red');
canvas.addMarker(activities.return, 'highlight-red');
canvas.addMarker(events.return, 'highlight-red');
});
history.pushState({}, null, '#return');
}
function displayChart(label, color, frequency, annual, quantity, cost, id) {
const planChart = {
type: 'line',
data: {
labels: [],
datasets: [{
label: label + ' schedule',
data: [],
fill: false,
borderColor: color
}]
}
};
let currentDay = 0;
for (let i = 0; i < annual; i++) {
planChart.data.labels.push(currentDay);
planChart.data.labels.push(currentDay + frequency);
planChart.data.datasets[0].data.push({
x: currentDay,
y: quantity
});
planChart.data.datasets[0].data.push({
x: currentDay + frequency,
y: 0
});
currentDay += frequency;
}
const costChart = {
type: 'line',
data: {
labels: [],
datasets: [{
label: label + ' cost',
data: [],
fill: false,
borderColor: color
}]
}
};
currentDay = 0;
let currentCost = 0;
for (let i = 0; i < annual + 1; i++) {
costChart.data.labels.push(currentDay);
costChart.data.datasets[0].data.push({
x: currentDay,
y: currentCost
});
currentDay += frequency;
currentCost += cost;
}
$(id).html(`<img class="img-thumbnail chart-img" alt="${id}" style="width: 45%;" src="https://quickchart.io/chart?c=${encodeURI(JSON.stringify(planChart))}">
<img class="img-thumbnail chart-img" alt="${id}" style="width: 45%;" src="https://quickchart.io/chart?c=${encodeURI(JSON.stringify(costChart))}">`);
}
function calculateWilsonModel(D, CO, SC, P) {
let EOQ = Math.sqrt((2 * D * CO) / SC);
let N = Math.round(D / EOQ);
N = N < 1 ? 1 : N;
EOQ = Math.round(D / N);
let F = Math.round(P / N);
return {
EOQ: EOQ,
N: N,
F: F
};
}
function planSource() {
try {
const demandValue = Number.parseFloat($('#demandValue').val());
const daysValue = Number.parseFloat($('#daysValue').val());
const orderCostValue = Number.parseFloat($('#orderCostValue').val());
const stockCostValue = Number.parseFloat($('#stockCostValue').val());
const result = calculateWilsonModel(demandValue, orderCostValue, stockCostValue, daysValue);
$('#orderQuantity').val(result.EOQ);
$('#annualOrderNumber').val(result.N);
$('#orderFrequency').val(result.F);
const productName = $('#productName').val().trim();
const totalCost = orderCostValue * result.N;
$('#sourceResultsText').html(`In order to achieve the Economic Order Quantity, item <b>${productName}</b> should be ordered in batches of <b>${result.EOQ}</b> units <b>${result.N}</b> times within <b>${daysValue}</b> days, i.e. <b>${result.EOQ}</b> units every <b>${result.F}</b> days. The total cost will be <b>$${totalCost.toFixed(2)}</b> or <b>${result.N}</b> orders of <b>$${orderCostValue.toFixed(2)}</b> each every <b>${result.F}</b> days.`);
displayChart('Source', 'blue', result.F, result.N, result.EOQ, orderCostValue, '#sourceResultsChart');
} catch (err) {
$('#sourceWarningMessage').show();
console.error(err);
}
}
function planDeliver() {
try {
const demandValue = Number.parseFloat($('#demand2Value').val());
const daysValue = Number.parseFloat($('#days2Value').val());
const shipmentCostValue = Number.parseFloat($('#shipmentCostValue').val());
const stockCostValue = Number.parseFloat($('#stockCost2Value').val());
const result = calculateWilsonModel(demandValue, shipmentCostValue, stockCostValue, daysValue);
$('#shipmentQuantity').val(result.EOQ);
$('#annualShipmentNumber').val(result.N);
$('#shipmentFrequency').val(result.F);
const productName = $('#productName').val().trim();
const totalCost = shipmentCostValue * result.N;
$('#deliverResultsText').html(`In order to achieve the Economic Order Quantity, item <b>${productName}</b> should be shipped in batches of <b>${result.EOQ}</b> units <b>${result.N}</b> times within <b>${daysValue}</b> days, i.e. <b>${result.EOQ}</b> units every <b>${result.F}</b> days. The total cost will be <b>$${totalCost.toFixed(2)}</b> or <b>${result.N}</b> shipments of <b>$${shipmentCostValue.toFixed(2)}</b> each every <b>${result.F}</b> days.`);
displayChart('Deliver', 'green', result.F, result.N, result.EOQ, shipmentCostValue, '#deliverResultsChart');
} catch (err) {
$('#deliverWarningMessage').show();
console.error(err);
}
}
function planReturn() {
try {
const refundValue = Number.parseFloat($('#refundValue').val());
const daysValue = Number.parseFloat($('#days3Value').val());
const refundCostValue = Number.parseFloat($('#refundCostValue').val());
const returnCostValue = Number.parseFloat($('#returnCostValue').val());
const stockCostValue = Number.parseFloat($('#stockCost3Value').val());
const result = calculateWilsonModel(refundValue, (refundCostValue + returnCostValue), stockCostValue, daysValue);
$('#returnQuantity').val(result.EOQ);
$('#annualReturnNumber').val(result.N);
$('#returnFrequency').val(result.F);
const productName = $('#productName').val().trim();
const totalCost = (refundCostValue + returnCostValue) * result.N;
$('#returnResultsText').html(`In order to achieve the Economic Order Quantity, item <b>${productName}</b> should be returned in batches of <b>${result.EOQ}</b> units <b>${result.N}</b> times within <b>${daysValue}</b> days, i.e. <b>${result.EOQ}</b> units every <b>${result.F}</b> days. The total cost will be <b>$${totalCost.toFixed(2)}</b> or <b>${result.N}</b> returns of <b>$${(refundCostValue + returnCostValue).toFixed(2)}</b> each every <b>${result.F}</b> days.`);
displayChart('Return', 'red', result.F, result.N, result.EOQ, (refundCostValue + returnCostValue), '#returnResultsChart');
} catch (err) {
$('#returnWarningMessage').show();
console.error(err);
}
}
$(document).ready(function() {
$('#sourceWarningMessage').hide();
$('#deliverWarningMessage').hide();
$('#returnWarningMessage').hide();
planSource();
planDeliver();
planReturn();
if (window.location.href.includes('#home')) {
$('#homeTab').click();
} else if (window.location.href.includes('#source')) {
$('#sourceTab').click();
} else if (window.location.href.includes('#deliver')) {
$('#deliverTab').click();
} else if (window.location.href.includes('#return')) {
$('#returnTab').click();
} else {
$('#homeTab').click();
}
});
</script>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({
pageLanguage: 'en'
}, 'google_translate_element');
}
</script>
<script type="text/javascript" src="https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</body>
</html>