Skip to main content

Expertz CRM







Expert CRM is cloud based management software which shows the facts into insights; sales, marketing, finance & process management. The solution by which customers can streamline their Leads, Estimates, proposals, sales cycle across all levels, prioritize follow-ups, Seize correct forecasting, hold track of every deal and discover how sales practices can be a top notch practices.
AGC proudly presents a CRM that helps customer and enhance the communication. Expert CRM empower the next communication; maximize profitability and interest on what matters most – the customers always.
I didn’t develop a CRM for AG Consultraining PVT. It is developed by my senior.


Role of Responsibilities
  •    Customized Product as per client requirement
  •    Deployed System & Setup  to Client Serve
  •    Give Support
  •      Managed Database administration.
  •    Define Cron Job
Technology:
  •      Php Codeigniter, Ajax, jQuery & JavaScript.
  • Database MySQL
  • Server Deployement : Virtual Private Network or Cloud Hosting





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=...