Skip to main content

Certification Management System

Certification Management Software for Quality Assurance or Auditing

   It is basically a quality assurance management software which is developed by me for private limited company. It was developed on permises of Vas Internation Pvt ltd with legal agreement sign

§  Role of Responsibilities
·         Highchart JavaScript based Dashboard
·         Front & back End Development
·         Create servers and databases
·         Database Management
·         Define Cron Job
·         Use of Google Doc to read
·         Email Configuration
·         File Manager Integration
·         Excel  Import / Export
ü  Technology
·         Core PHP, Laravel PHP, Ajax, jQuery & JavaScript
·         Database MySQL
ü  Module Developed
·         Inquiry Management
·         Customer Management
·         Contract Application ,Assessment Management
·         Auditor Management & Tender Management
·         Quality Assurance Stage I Documentation Management
·         Quality Assurance Stage II Documentation Management
·         Certification Management
·         File Manager, Email Marketing Module & Account

Security Management
o   Multi User
o   User creation
o   Assignment of User Roles and responsibilities
o   Assignment of Add, Edit, Delete rights to users
o   Managing System Administration
o   Rights copying of users
o   Software Scheduled Back up
o   Software Manual Back up
o   Tagging for Each Entry with User Name , Update Time Stamp & Back Dated Editing Management
x

Comments

Popular posts from this blog

Python Program to Make a Simple Calculator

In this example you will learn to create a simple calculator that can add, subtract, multiply or divide depending upon the input from the user. Simple Calculator by Making Functions # Add Function for addition def add(x,y): return x+y # Subtraction Function def subtract(x,y): return x-y # Multiplication Function def multiply(x,y): return x*y # Division Function def divide(x,y): return x/y print("Select operation.") print("1.Add") print("2.Subtract") print("3.Multiply") print("4.Divide") # Take input from the user something like scanf in C language check =input("Enter choice(1/2/3/4):") num1 = int(input("Enter first number:")) num2 = int(input("Enter second number:")) if check=="1": print(num1," + ",num2," = ",add(num1,num2)) elif check=="2": print(num1," - ",num2," = ",subtract(num1,num2)) elif check=...