Skip to content

Commit

Permalink
Modified the IDs from server side
Browse files Browse the repository at this point in the history
  • Loading branch information
shabeelashraf5 committed Jan 18, 2025
1 parent 6eea666 commit 4dc8437
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion server/uuid/idinvoice.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const uuid = require('uuid');

const prefixpo = "INV/shebz/"
const prefixpo = "INV/INBI/"


function generateCustomInvoice(){
Expand Down
2 changes: 1 addition & 1 deletion server/uuid/idpo.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const uuid = require('uuid');

const prefixpo = "PO/shebz/"
const prefixpo = "PO/INBI/"


function generateCustomPO(){
Expand Down
2 changes: 1 addition & 1 deletion server/uuid/idspo.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const uuid = require('uuid');

const prefixspo = "SPO/shebz/"
const prefixspo = "SPO/INBI/"

function genereateCustomSPO(){
const randomNumber = Math.floor(1000 + Math.random() * 9000);
Expand Down
2 changes: 1 addition & 1 deletion server/uuid/uuid.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const uuid = require('uuid');

const prefix = "shebz/";
const prefix = "INBI/";

function generateCustomUUID() {
const randomNumber = Math.floor(1000 + Math.random() * 9000);
Expand Down

0 comments on commit 4dc8437

Please sign in to comment.