-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1106 lines (1026 loc) · 46.4 KB
/
Copy pathindex.html
File metadata and controls
1106 lines (1026 loc) · 46.4 KB
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
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AuMMS — Aurum Manufacturing Management System | Gold Manufacturing ERP by efeone</title>
<meta name="description"
content="AuMMS is an open-source Frappe and ERPNext application for gold manufacturing. Purity-aware metal ledger, board rates, stage-wise job cards, karigar management and jewellery invoicing. Built and maintained by efeone.">
<link rel="canonical" href="https://aumms.com/">
<meta name="theme-color" content="#0f1a26">
<meta property="og:type" content="website">
<meta property="og:url" content="https://aumms.com/">
<meta property="og:site_name" content="AuMMS">
<meta property="og:title" content="AuMMS — Aurum Manufacturing Management System">
<meta property="og:description"
content="Open-source Frappe app for gold manufacturing. Metal accounted by weight and purity, from design request to finished piece.">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="AuMMS — Aurum Manufacturing Management System">
<meta name="twitter:description"
content="Open-source Frappe app for gold manufacturing. Metal accounted by weight and purity, from design request to finished piece.">
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Raleway:wght@500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script>
// Set before paint: the reveal animation only applies when JS is running,
// so the page stays fully readable if this script never executes.
document.documentElement.className = "js";
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "AuMMS",
"alternateName": "Aurum Manufacturing Management System",
"applicationCategory": "BusinessApplication",
"applicationSubCategory": "Enterprise Resource Planning",
"operatingSystem": "Linux, Docker",
"description": "A Frappe application that facilitates operations in gold manufacturing, covering purity-aware metal accounting, board rates, manufacturing job cards, karigar management and jewellery invoicing.",
"license": "https://www.gnu.org/licenses/gpl-3.0.html",
"url": "https://aumms.com/",
"codeRepository": "https://github.com/efeone/aumms",
"softwareRequirements": "Frappe Framework, ERPNext",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "efeone",
"url": "https://efeone.com/",
"email": "info@efeone.com",
"address": {
"@type": "PostalAddress",
"streetAddress": "No. 3/403 C, Carino INC, Pooladikkunnu, Eranhikkal",
"addressLocality": "Kozhikode",
"addressRegion": "Kerala",
"postalCode": "673303",
"addressCountry": "IN"
}
}
}
</script>
</head>
<body>
<!-- ================================================================== NAV -->
<header class="nav" id="nav">
<div class="wrap nav__inner">
<a class="brand" href="#home" aria-label="AuMMS home">
<svg class="brand__mark" viewBox="0 0 64 64" aria-hidden="true" focusable="false">
<defs>
<linearGradient id="brandGold" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#e8c65a" />
<stop offset="1" stop-color="#c9a227" />
</linearGradient>
</defs>
<rect width="64" height="64" rx="14" fill="#0f1a26" />
<text x="32" y="42" text-anchor="middle" fill="url(#brandGold)"
font-family="Georgia, 'Times New Roman', serif" font-size="30" font-weight="700">Au</text>
</svg>
<span class="brand__text">
<span class="brand__name">AuMMS</span>
<span class="brand__sub">by efeone</span>
</span>
</a>
<button class="nav__toggle" id="navToggle" type="button" aria-expanded="false" aria-controls="navLinks"
aria-label="Toggle navigation menu">
<span class="nav__toggle-bar"></span>
</button>
<nav id="navLinks" class="nav__links" aria-label="Primary">
<a class="nav__link" href="#why">Why AuMMS</a>
<a class="nav__link" href="#features">Features</a>
<a class="nav__link" href="#modules">Modules</a>
<a class="nav__link" href="#workflow">Workflow</a>
<a class="nav__link" href="#install">Install</a>
<a class="nav__link" href="#faq">FAQ</a>
<a class="nav__link" href="#contact">Contact</a>
</nav>
<a class="btn btn--ghost-light nav__cta" href="https://github.com/efeone/aumms" target="_blank"
rel="noopener">
<svg width="17" height="17" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path
d="M12 .5C5.73.5.9 5.34.9 11.6c0 4.9 3.17 9.06 7.57 10.53.55.1.76-.24.76-.53l-.02-1.86c-3.08.67-3.73-1.49-3.73-1.49-.5-1.29-1.23-1.63-1.23-1.63-1.01-.69.08-.67.08-.67 1.11.08 1.7 1.15 1.7 1.15.99 1.7 2.6 1.21 3.23.92.1-.72.39-1.21.7-1.49-2.46-.28-5.05-1.23-5.05-5.48 0-1.21.43-2.2 1.14-2.98-.11-.28-.5-1.41.11-2.94 0 0 .93-.3 3.05 1.14a10.5 10.5 0 0 1 5.55 0c2.12-1.44 3.05-1.14 3.05-1.14.61 1.53.22 2.66.11 2.94.71.78 1.14 1.77 1.14 2.98 0 4.26-2.6 5.2-5.07 5.47.4.35.75 1.03.75 2.08l-.01 3.08c0 .3.2.64.77.53 4.4-1.47 7.56-5.63 7.56-10.53C23.1 5.34 18.27.5 12 .5Z" />
</svg>
GitHub
</a>
</div>
</header>
<main>
<!-- ============================================================= HERO -->
<section class="hero" id="home">
<div class="wrap hero__inner">
<div class="hero__copy">
<p class="eyebrow">A Frappe App by efeone</p>
<h1 class="hero__title">
Gold manufacturing,
<em>accounted to the milligram.</em>
</h1>
<p class="hero__lede">
AuMMS — Aurum Manufacturing Management System — is an open-source Frappe application that runs a
gold manufacturing house end to end. Metal is tracked by weight <em>and</em> purity alongside
money, from the first design request to the finished piece leaving the counter.
</p>
<div class="hero__actions">
<a class="btn btn--primary"
href="mailto:info@efeone.com?subject=AuMMS%20Demo%20Request&body=Hi%20efeone%2C%0A%0AWe%27d%20like%20to%20see%20a%20demo%20of%20AuMMS.%0A%0ACompany%3A%0ALocation%3A%0ARough%20monthly%20volume%3A%0APhone%3A%0A%0AThanks.">
Request a Demo
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M5 12h14M13 6l6 6-6 6" />
</svg>
</a>
<a class="btn btn--ghost-light" href="https://github.com/efeone/aumms" target="_blank"
rel="noopener">
<svg width="17" height="17" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path
d="M12 .5C5.73.5.9 5.34.9 11.6c0 4.9 3.17 9.06 7.57 10.53.55.1.76-.24.76-.53l-.02-1.86c-3.08.67-3.73-1.49-3.73-1.49-.5-1.29-1.23-1.63-1.23-1.63-1.01-.69.08-.67.08-.67 1.11.08 1.7 1.15 1.7 1.15.99 1.7 2.6 1.21 3.23.92.1-.72.39-1.21.7-1.49-2.46-.28-5.05-1.23-5.05-5.48 0-1.21.43-2.2 1.14-2.98-.11-.28-.5-1.41.11-2.94 0 0 .93-.3 3.05 1.14a10.5 10.5 0 0 1 5.55 0c2.12-1.44 3.05-1.14 3.05-1.14.61 1.53.22 2.66.11 2.94.71.78 1.14 1.77 1.14 2.98 0 4.26-2.6 5.2-5.07 5.47.4.35.75 1.03.75 2.08l-.01 3.08c0 .3.2.64.77.53 4.4-1.47 7.56-5.63 7.56-10.53C23.1 5.34 18.27.5 12 .5Z" />
</svg>
View on GitHub
</a>
</div>
<ul class="hero__meta">
<li class="hero__meta-item">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z" />
</svg>
GPL v3 — free and open source
</li>
<li class="hero__meta-item">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="m12 2 2.9 6.3 6.6.8-4.9 4.6 1.3 6.8L12 17.3 6.1 20.5l1.3-6.8L2.5 9.1l6.6-.8Z" />
</svg>
Built on Frappe & ERPNext
</li>
<li class="hero__meta-item">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M20 7h-9M14 17H5M17 3l4 4-4 4M7 13l-4 4 4 4" />
</svg>
Actively developed since 2023
</li>
</ul>
</div>
<!-- Hero visual: a stylised Metal Ledger, the heart of the product -->
<div class="hero__visual">
<div class="ledger" role="img"
aria-label="Illustration of the AuMMS Metal Ledger report, showing gold movements in and out with purity and a running balance in grams.">
<div class="ledger__bar">
<span class="ledger__dots" aria-hidden="true"><span></span><span></span><span></span></span>
<span class="ledger__title">Metal Ledger</span>
</div>
<div class="ledger__body">
<div class="ledger__row ledger__row--head">
<span>Voucher</span>
<span>Purity</span>
<span class="ledger__num">In / Out</span>
<span class="ledger__num">Balance</span>
</div>
<div class="ledger__row ledger__row--data">
<span class="ledger__item">Purchase Receipt <small>PR-0231</small></span>
<span class="ledger__purity">916</span>
<span class="ledger__num ledger__num--in">+250.000</span>
<span class="ledger__num">250.000</span>
</div>
<div class="ledger__row ledger__row--data">
<span class="ledger__item">Raw Material Issue <small>MR-0118</small></span>
<span class="ledger__purity">916</span>
<span class="ledger__num ledger__num--out">−180.500</span>
<span class="ledger__num">69.500</span>
</div>
<div class="ledger__row ledger__row--data">
<span class="ledger__item">Job Card Return <small>JJC-0042</small></span>
<span class="ledger__purity">916</span>
<span class="ledger__num ledger__num--in">+172.300</span>
<span class="ledger__num">241.800</span>
</div>
<div class="ledger__row ledger__row--data">
<span class="ledger__item">Scrap Recovery <small>JJC-0042</small></span>
<span class="ledger__purity">916</span>
<span class="ledger__num ledger__num--in">+6.150</span>
<span class="ledger__num">247.950</span>
</div>
<div class="ledger__foot">
<span class="ledger__foot-label">Closing balance</span>
<span class="ledger__foot-value">247.950 g</span>
</div>
</div>
</div>
</div>
</div>
<a class="hero__scroll" href="#why">
<span>Scroll</span>
<span class="hero__scroll-line" aria-hidden="true"></span>
</a>
</section>
<!-- ========================================================== PROBLEM -->
<section class="section" id="why">
<div class="wrap">
<div class="section-head reveal">
<p class="eyebrow">Why AuMMS</p>
<h2 class="section-title">A general-purpose ERP cannot close a gold book.</h2>
<p class="section-lede">
Standard manufacturing software assumes the thing you are counting has a fixed identity and a
fixed value. Gold has neither. It changes purity, it changes price twice a day, and a measurable
part of it is lost at every bench. AuMMS is built around those three facts.
</p>
</div>
<div class="problem-grid reveal">
<article class="problem">
<p class="problem__num">01</p>
<h3>Metal is a second currency</h3>
<p>
A jeweller owes and is owed in grams, not only in rupees. Stock value alone cannot answer
"how much metal is with that karigar right now". AuMMS keeps a Metal Ledger next to the
general ledger so weight and money are reconciled separately.
</p>
</article>
<article class="problem">
<p class="problem__num">02</p>
<h3>Purity changes on every hop</h3>
<p>
Metal enters at 995, is alloyed to 916, and comes back as 750 in an exchange. Comparing those
quantities means normalising them first. Purity is a first-class master in AuMMS, and every
entry records the purity it happened at.
</p>
</article>
<article class="problem">
<p class="problem__num">03</p>
<h3>Loss happens between hands</h3>
<p>
Casting, filing, polishing and setting each shed weight, and the piece passes through several
smiths on the way. Stage-wise job cards record issued and returned weight per smith per
stage, so wastage is attributable instead of absorbed.
</p>
</article>
</div>
</div>
</section>
<!-- ========================================================= FEATURES -->
<section class="section section--alt" id="features">
<div class="wrap">
<div class="section-head section-head--center reveal">
<p class="eyebrow">Features</p>
<h2 class="section-title">Everything the trade actually runs on</h2>
<p class="section-lede">
Each of these is a working part of the app, not a roadmap item. The document type behind every
feature is named so you can find it the moment you install.
</p>
</div>
<div class="feature-grid reveal">
<article class="feature">
<span class="feature__icon" aria-hidden="true">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" />
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2Z" />
<path d="M9 7h7M9 11h5" />
</svg>
</span>
<h3>Metal Ledger</h3>
<p>
Every movement of metal posts an entry carrying purity, purity percentage, board rate, party
and the voucher it came from — with in, out and running balance quantities. The Metal Ledger
report gives a party-wise and item-wise position at any date.
</p>
<p class="feature__doctype">Metal Ledger Entry · Metal Ledger report</p>
</article>
<article class="feature">
<span class="feature__icon" aria-hidden="true">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m3 17 6-6 4 4 8-8" />
<path d="M15 7h6v6" />
</svg>
</span>
<h3>Board Rate</h3>
<p>
Post the day's rate against a purity and item type, stamped with date and time so intraday
revisions are kept rather than overwritten. Valuation and pricing pull the rate that was
current when the transaction happened.
</p>
<p class="feature__doctype">Board Rate · Last Month Board Rate chart</p>
</article>
<article class="feature">
<span class="feature__icon" aria-hidden="true">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 2.7 6.5 9.9a7 7 0 1 0 11 0Z" />
<path d="M9.5 15.5 15 10" />
<circle cx="9.8" cy="10.8" r=".9" />
<circle cx="14.4" cy="15.4" r=".9" />
</svg>
</span>
<h3>Purity & conversion</h3>
<p>
Define each purity once with its percentage, then convert weight between them with the Purity
Conversion Tool and Conversion Chart. Fine-gold equivalents stop being a spreadsheet
exercise done at the end of the month.
</p>
<p class="feature__doctype">Purity · Purity Conversion Tool · Conversion Chart</p>
</article>
<article class="feature">
<span class="feature__icon" aria-hidden="true">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M20.6 13.4 13.4 20.6a2 2 0 0 1-2.8 0l-7.2-7.2A2 2 0 0 1 2.8 12V4.8A2 2 0 0 1 4.8 3H12a2 2 0 0 1 1.4.6l7.2 7.2a2 2 0 0 1 0 2.6Z" />
<circle cx="7.5" cy="7.5" r="1.3" />
</svg>
</span>
<h3>Jewellery item masters</h3>
<p>
An item structure shaped for ornaments — category, sub-category and type layered over the
AuMMS Item and Item Group, so a chain, a casting and a loose stone are not forced into the
same template.
</p>
<p class="feature__doctype">AuMMS Item · Item Category · Item Type</p>
</article>
<article class="feature">
<span class="feature__icon" aria-hidden="true">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M6 3h12l4 6-10 12L2 9Z" />
<path d="M2 9h20M9.5 3 7 9l5 12M14.5 3 17 9l-5 12" />
</svg>
</span>
<h3>Stone management</h3>
<p>
Stones are tracked apart from the metal that holds them, with types, per-item stone details
and their own weights and rates — so stone value never quietly inflates the gold weight of a
piece.
</p>
<p class="feature__doctype">Stone Type · Stone Details · Item Wise Stone Details</p>
</article>
<article class="feature">
<span class="feature__icon" aria-hidden="true">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 2v20l2.5-1.6L9 22l3-1.6L15 22l2.5-1.6L20 22V2l-2.5 1.6L15 2l-3 1.6L9 2 6.5 3.6Z" />
<path d="M8 8h8M8 12h8M8 16h5" />
</svg>
</span>
<h3>Counter sales & old-gold exchange</h3>
<p>
Jewellery Invoice and Jewellery Receipt handle the retail side, including taking old
ornaments in part-exchange, customer advances, and dedicated sales, purchase and exchange
print formats.
</p>
<p class="feature__doctype">Jewellery Invoice · Old Jewellery Item · Customer Advances</p>
</article>
<article class="feature">
<span class="feature__icon" aria-hidden="true">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" />
<circle cx="9" cy="7" r="4" />
<path d="M22 21v-2a4 4 0 0 0-3-3.9M16 3.1a4 4 0 0 1 0 7.8" />
</svg>
</span>
<h3>Smith & karigar management</h3>
<p>
Every smith is a record with a category and a grade, which drives the rate they are paid and
the work they can be assigned. Job Time entries capture how long each stage actually took.
</p>
<p class="feature__doctype">Smith · Smith Category · Smith Grade · Job Time</p>
</article>
<article class="feature">
<span class="feature__icon" aria-hidden="true">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 20h9" />
<path d="M16.4 3.6a2.1 2.1 0 0 1 3 3L7.5 18.5 3 20l1.5-4.5Z" />
</svg>
</span>
<h3>Design requests</h3>
<p>
A customer's idea starts as a Design Request with a reference image, moves through Design
Analysis for feasibility and expected weight, and carries those details forward into the
order it becomes.
</p>
<p class="feature__doctype">Design Request · Design Analysis · Design Details</p>
</article>
<article class="feature">
<span class="feature__icon" aria-hidden="true">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M3 3v18h18" />
<rect x="7" y="12" width="3" height="6" rx="1" />
<rect x="12.5" y="8" width="3" height="10" rx="1" />
<rect x="18" y="5" width="3" height="13" rx="1" />
</svg>
</span>
<h3>Reports & dashboards</h3>
<p>
Metal Ledger and AuMMS Items Summary ship with the app, next to a board-rate trend chart and
a purpose-built workspace grouping masters, settings and the ledgers a manager opens daily.
</p>
<p class="feature__doctype">AuMMS Items Summary · AuMMS workspace</p>
</article>
</div>
</div>
</section>
<!-- ========================================================== MODULES -->
<section class="section" id="modules">
<div class="wrap">
<div class="section-head section-head--center reveal">
<p class="eyebrow">Modules</p>
<h2 class="section-title">Two modules, one book of metal</h2>
<p class="section-lede">
AuMMS installs as two Frappe modules. The first governs masters, valuation and the retail
counter; the second runs the factory floor. Both post into the same metal ledger.
</p>
</div>
<div class="module-grid reveal">
<article class="module module--gold">
<p class="module__label">Module 01</p>
<h3>AuMMS</h3>
<p>
Masters, valuation and the sales counter. This is where purity, board rate and the item
hierarchy are defined, and where retail transactions and old-gold exchange are recorded.
</p>
<ul class="module__tags">
<li class="tag">Metal Ledger Entry</li>
<li class="tag">Board Rate</li>
<li class="tag">Purity</li>
<li class="tag">Purity Conversion Tool</li>
<li class="tag">Conversion Chart</li>
<li class="tag">AuMMS Item</li>
<li class="tag">AuMMS Item Group</li>
<li class="tag">Item Category</li>
<li class="tag">Item Sub Category</li>
<li class="tag">Item Type</li>
<li class="tag">Stone Type</li>
<li class="tag">Stone Details</li>
<li class="tag">Jewellery Invoice</li>
<li class="tag">Jewellery Receipt</li>
<li class="tag">Old Jewellery Item</li>
<li class="tag">Customer Advances</li>
<li class="tag">Design Request</li>
<li class="tag">Design Analysis</li>
<li class="tag">Smith</li>
<li class="tag">Smith Grade</li>
<li class="tag">Verified Item</li>
<li class="tag">AuMMS Settings</li>
</ul>
</article>
<article class="module">
<p class="module__label">Module 02</p>
<h3>AuMMS Manufacturing</h3>
<p>
The production side. Orders become manufacturing requests, requests are routed through
configurable stages, and each stage is issued metal and answers for what comes back.
</p>
<ul class="module__tags">
<li class="tag">Jewellery Order</li>
<li class="tag">Customer Jewellery Order</li>
<li class="tag">Manufacturing Request</li>
<li class="tag">Manufacturing Stage</li>
<li class="tag">Manufacturing Stage Template</li>
<li class="tag">Manufacturing Request Stage</li>
<li class="tag">Jewellery Job Card</li>
<li class="tag">Job Time</li>
<li class="tag">Raw Material Request</li>
<li class="tag">Raw Material Bundle</li>
<li class="tag">Raw Material Required</li>
<li class="tag">Scrap Item Detail</li>
</ul>
</article>
</div>
</div>
</section>
<!-- ========================================================= WORKFLOW -->
<section class="section section--alt" id="workflow">
<div class="wrap">
<div class="section-head section-head--center reveal">
<p class="eyebrow">Workflow</p>
<h2 class="section-title">From a customer's sketch to a sold ornament</h2>
<p class="section-lede">
Each step is a document that links to the one before it, so a finished piece can always be traced
back to the metal it was made from and the hands it passed through.
</p>
</div>
<ol class="rail reveal">
<li class="step">
<span class="step__node">1</span>
<div class="step__body">
<h3>Design Request</h3>
<p>Sketch or image captured, feasibility and expected weight analysed.</p>
</div>
</li>
<li class="step">
<span class="step__node">2</span>
<div class="step__body">
<h3>Jewellery Order</h3>
<p>Confirmed order with purity, category and required date per item.</p>
</div>
</li>
<li class="step">
<span class="step__node">3</span>
<div class="step__body">
<h3>Manufacturing Request</h3>
<p>Stages applied from a template, supervisor warehouse assigned.</p>
</div>
</li>
<li class="step">
<span class="step__node">4</span>
<div class="step__body">
<h3>Raw Material Issue</h3>
<p>Metal bundled and issued to the floor against the request.</p>
</div>
</li>
<li class="step">
<span class="step__node">5</span>
<div class="step__body">
<h3>Jewellery Job Card</h3>
<p>Stage-wise work per smith, with time booked and scrap recorded.</p>
</div>
</li>
<li class="step">
<span class="step__node">6</span>
<div class="step__body">
<h3>Verified Item</h3>
<p>Finished weight checked against expected before it enters stock.</p>
</div>
</li>
<li class="step">
<span class="step__node">7</span>
<div class="step__body">
<h3>Jewellery Invoice</h3>
<p>Sold at the current board rate, with exchange and advances applied.</p>
</div>
</li>
</ol>
</div>
</section>
<!-- ========================================================= PLATFORM -->
<section class="section section--dark" id="platform">
<div class="wrap">
<div class="platform-grid">
<div class="section-head reveal" style="margin-bottom:0">
<p class="eyebrow">Built on ERPNext</p>
<h2 class="section-title">An industry layer, not another silo</h2>
<p class="section-lede">
AuMMS does not replace your ERP — it extends it. Everything ERPNext already does well stays
exactly where it is, and AuMMS adds the gold-specific behaviour on top of the documents you
already use.
</p>
<ul class="checklist">
<li>
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"
aria-hidden="true">
<path d="m20 6-11 11-5-5" />
</svg>
<span><strong>Accounting, stock and taxation</strong> come from ERPNext, unmodified and
fully auditable.</span>
</li>
<li>
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"
aria-hidden="true">
<path d="m20 6-11 11-5-5" />
</svg>
<span><strong>HR, payroll and CRM</strong> are available on the same site, so smiths and
customers are not duplicated across systems.</span>
</li>
<li>
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"
aria-hidden="true">
<path d="m20 6-11 11-5-5" />
</svg>
<span><strong>The Frappe platform</strong> brings roles and permissions, a REST API,
custom fields, print formats and background jobs at no extra cost.</span>
</li>
</ul>
</div>
<aside class="hooks reveal">
<p class="hooks__label">Documents AuMMS hooks into</p>
<ul class="hooks__tags">
<li class="tag">Sales Invoice</li>
<li class="tag">Purchase Invoice</li>
<li class="tag">Sales Order</li>
<li class="tag">Purchase Order</li>
<li class="tag">Purchase Receipt</li>
<li class="tag">Payment Entry</li>
<li class="tag">Stock Reconciliation</li>
<li class="tag">Work Order</li>
<li class="tag">Item</li>
<li class="tag">Item Price</li>
<li class="tag">Stock Settings</li>
</ul>
<p class="hooks__note">
Standard ERPNext documents keep their normal behaviour and additionally post to the metal
ledger, apply the current board rate, and respect purity — so your team keeps working the way
they already do.
</p>
</aside>
</div>
</div>
</section>
<!-- ========================================================== INSTALL -->
<section class="section" id="install">
<div class="wrap">
<div class="section-head section-head--center reveal">
<p class="eyebrow">Get started</p>
<h2 class="section-title">Install it on a bench in five commands</h2>
<p class="section-lede">
AuMMS is a standard Frappe app. If you already run a bench with ERPNext, you are a few minutes
away from a working site.
</p>
</div>
<div class="install-grid reveal">
<div class="terminal">
<div class="terminal__bar">
<span class="ledger__dots" aria-hidden="true"><span></span><span></span><span></span></span>
<span class="terminal__title">bench</span>
<span class="terminal__hint" id="copyHint">Click a line to copy</span>
</div>
<div class="terminal__body">
<button class="cmd" type="button">
<span class="cmd__prompt" aria-hidden="true">$</span>
<span class="cmd__text">bench get-app https://github.com/efeone/aumms.git</span>
<span class="cmd__copy" aria-hidden="true">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="9" y="9" width="12" height="12" rx="2" />
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" />
</svg>
</span>
</button>
<button class="cmd" type="button">
<span class="cmd__prompt" aria-hidden="true">$</span>
<span class="cmd__text">bench setup requirements</span>
<span class="cmd__copy" aria-hidden="true">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="9" y="9" width="12" height="12" rx="2" />
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" />
</svg>
</span>
</button>
<button class="cmd" type="button">
<span class="cmd__prompt" aria-hidden="true">$</span>
<span class="cmd__text">bench build --app aumms</span>
<span class="cmd__copy" aria-hidden="true">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="9" y="9" width="12" height="12" rx="2" />
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" />
</svg>
</span>
</button>
<button class="cmd" type="button">
<span class="cmd__prompt" aria-hidden="true">$</span>
<span class="cmd__text">bench --site your.site.name install-app aumms</span>
<span class="cmd__copy" aria-hidden="true">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="9" y="9" width="12" height="12" rx="2" />
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" />
</svg>
</span>
</button>
<button class="cmd" type="button">
<span class="cmd__prompt" aria-hidden="true">$</span>
<span class="cmd__text">bench --site your.site.name migrate</span>
<span class="cmd__copy" aria-hidden="true">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="9" y="9" width="12" height="12" rx="2" />
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" />
</svg>
</span>
</button>
</div>
</div>
<div class="install-aside">
<div class="panel">
<h3>Requirements</h3>
<ul class="checklist">
<li>
<svg width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"
aria-hidden="true">
<path d="m20 6-11 11-5-5" />
</svg>
<span>A working <a href="https://github.com/frappe/frappe" target="_blank"
rel="noopener">Frappe</a> bench</span>
</li>
<li>
<svg width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"
aria-hidden="true">
<path d="m20 6-11 11-5-5" />
</svg>
<span><a href="https://github.com/frappe/erpnext" target="_blank"
rel="noopener">ERPNext</a> installed on the site</span>
</li>
<li>
<svg width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"
aria-hidden="true">
<path d="m20 6-11 11-5-5" />
</svg>
<span>After install, set defaults in <strong>AuMMS Settings</strong></span>
</li>
</ul>
</div>
<div class="panel">
<h3>Open source, GPL v3</h3>
<p>
The full source is on GitHub. Issues and pull requests follow the ERPNext contribution
guidelines — you are welcome to file both.
</p>
<p style="padding-top:16px">
<a class="btn btn--ghost" href="https://github.com/efeone/aumms" target="_blank"
rel="noopener">
<svg width="17" height="17" viewBox="0 0 24 24" fill="currentColor"
aria-hidden="true">
<path
d="M12 .5C5.73.5.9 5.34.9 11.6c0 4.9 3.17 9.06 7.57 10.53.55.1.76-.24.76-.53l-.02-1.86c-3.08.67-3.73-1.49-3.73-1.49-.5-1.29-1.23-1.63-1.23-1.63-1.01-.69.08-.67.08-.67 1.11.08 1.7 1.15 1.7 1.15.99 1.7 2.6 1.21 3.23.92.1-.72.39-1.21.7-1.49-2.46-.28-5.05-1.23-5.05-5.48 0-1.21.43-2.2 1.14-2.98-.11-.28-.5-1.41.11-2.94 0 0 .93-.3 3.05 1.14a10.5 10.5 0 0 1 5.55 0c2.12-1.44 3.05-1.14 3.05-1.14.61 1.53.22 2.66.11 2.94.71.78 1.14 1.77 1.14 2.98 0 4.26-2.6 5.2-5.07 5.47.4.35.75 1.03.75 2.08l-.01 3.08c0 .3.2.64.77.53 4.4-1.47 7.56-5.63 7.56-10.53C23.1 5.34 18.27.5 12 .5Z" />
</svg>
efeone/aumms
</a>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- ============================================================== FAQ -->
<section class="section section--alt" id="faq">
<div class="wrap">
<div class="section-head section-head--center reveal">
<p class="eyebrow">FAQ</p>
<h2 class="section-title">Questions we get asked</h2>
</div>
<div class="faq reveal" id="faqList">
<div class="faq__item">
<h3>
<button class="faq__q" type="button" aria-expanded="false" aria-controls="faq1">
Is AuMMS really free?
<span class="faq__icon" aria-hidden="true"></span>
</button>
</h3>
<div class="faq__a" id="faq1">
<div>
<p>
Yes. AuMMS is released under the GNU General Public License v3. You can download it,
run it, read the source and modify it without paying a licence fee. What efeone
charges for is optional — implementation, data migration, customisation, hosting and
support.
</p>
</div>
</div>
</div>
<div class="faq__item">
<h3>
<button class="faq__q" type="button" aria-expanded="false" aria-controls="faq2">
Do we need ERPNext as well?
<span class="faq__icon" aria-hidden="true"></span>
</button>
</h3>
<div class="faq__a" id="faq2">
<div>
<p>
Yes. AuMMS is an industry layer that depends on both Frappe and ERPNext. It extends
standard documents such as Sales Invoice, Purchase Receipt and Work Order rather than
reimplementing accounting and stock, which is why your books stay standard and
auditable.
</p>
</div>
</div>
</div>
<div class="faq__item">
<h3>
<button class="faq__q" type="button" aria-expanded="false" aria-controls="faq3">
Can it handle several purities at once?
<span class="faq__icon" aria-hidden="true"></span>
</button>
</h3>
<div class="faq__a" id="faq3">
<div>
<p>
That is the core of the design. Purity is a master with a defined percentage, every
metal ledger entry stores the purity it happened at, and the Purity Conversion Tool
converts weights between them. So 995 bar, 916 ornaments and 750 exchange metal can
all sit in one book and still be compared meaningfully.
</p>
</div>
</div>
</div>
<div class="faq__item">
<h3>
<button class="faq__q" type="button" aria-expanded="false" aria-controls="faq4">
We run a retail counter as well as a workshop. Does it cover both?
<span class="faq__icon" aria-hidden="true"></span>
</button>
</h3>
<div class="faq__a" id="faq4">
<div>
<p>
It does, and that is why there are two modules. The AuMMS module covers the counter —
jewellery invoicing, old-gold exchange, customer advances and print formats for
sales, purchase and exchange. AuMMS Manufacturing covers the workshop. Both post into
the same metal ledger, so the two sides reconcile.
</p>
</div>
</div>
</div>
<div class="faq__item">
<h3>
<button class="faq__q" type="button" aria-expanded="false" aria-controls="faq5">
Who builds and maintains it?
<span class="faq__icon" aria-hidden="true"></span>
</button>
</h3>
<div class="faq__a" id="faq5">
<div>
<p>
<a href="https://efeone.com/" target="_blank" rel="noopener">efeone</a>, an ERPNext
implementation company based in Kozhikode, Kerala, working across manufacturing,
construction, healthcare, distribution and eCommerce. AuMMS has been in active
development since 2023 and the commit history is public.
</p>
</div>
</div>
</div>
<div class="faq__item">
<h3>
<button class="faq__q" type="button" aria-expanded="false" aria-controls="faq6">
How do we get implementation help or support?
<span class="faq__icon" aria-hidden="true"></span>
</button>
</h3>
<div class="faq__a" id="faq6">
<div>
<p>
Write to <a href="mailto:info@efeone.com">info@efeone.com</a> or call
<a href="tel:+919995940849">+91 99959 40849</a> and the team will walk you through a
demo on a live site. For bugs and feature requests in the app itself, open an issue
on the <a href="https://github.com/efeone/aumms/issues" target="_blank"
rel="noopener">GitHub repository</a>.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ====================================================== CTA/CONTACT -->
<section class="section cta" id="contact">
<div class="wrap cta__inner">
<div class="cta__copy">
<p class="eyebrow">Talk to us</p>
<h2 class="cta__title">See AuMMS running on real gold data.</h2>
<p class="section-lede">
Tell us how your workshop is organised and we will show you the same flow in AuMMS — issuing
metal, tracking it through stages, and closing the book at the end of the day.
</p>
<div class="cta__actions">
<a class="btn btn--primary"
href="mailto:info@efeone.com?subject=AuMMS%20Demo%20Request&body=Hi%20efeone%2C%0A%0AWe%27d%20like%20to%20see%20a%20demo%20of%20AuMMS.%0A%0ACompany%3A%0ALocation%3A%0ARough%20monthly%20volume%3A%0APhone%3A%0A%0AThanks.">
Request a Demo
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M5 12h14M13 6l6 6-6 6" />
</svg>
</a>
<a class="btn btn--ghost-light" href="tel:+919995940849">Call +91 99959 40849</a>
</div>
</div>
<div class="contact-card">
<div class="contact-row">
<svg class="contact-row__icon" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<rect x="2" y="4" width="20" height="16" rx="2" />
<path d="m2 7 10 6 10-6" />
</svg>
<div class="contact-row__body">
<span class="contact-row__label">Email</span>
<a href="mailto:info@efeone.com">info@efeone.com</a>
</div>
</div>
<div class="contact-row">
<svg class="contact-row__icon" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path
d="M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.2a2 2 0 0 1 2.1-.5c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2Z" />
</svg>
<div class="contact-row__body">
<span class="contact-row__label">Phone</span>
<a href="tel:+919995940849">+91 99959 40849</a>
<a href="tel:+919567939306">+91 95679 39306</a>
</div>
</div>
<div class="contact-row">
<svg class="contact-row__icon" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 0 1 16 0Z" />
<circle cx="12" cy="10" r="3" />
</svg>
<div class="contact-row__body">
<span class="contact-row__label">Office</span>