User Tools

Site Tools


Sidebar

PROJECTS

CLIENT AREA

PRIVATE

user_area_expansion

This is an old revision of the document!


User Area Expansion

Changes:

  • views/admin_edit_common.twig

New Pages:

  • views/blocks/user_tab_menu.twig

Minor changes to css/style.css

Users Notes

Usage:

  • allows Admins to log comments about user.

Table for users notes.

CREATE TABLE IF NOT EXISTS `site_users_notes` (
`id` double NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`comment` text NOT NULL,
`comment_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`comment_by` int(11) NOT NULL,
`type_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;

Users Work Data

Usage:

  • allows Users and Admins to manage work related information about the user.

Table for users work date.

CREATE TABLE IF NOT EXISTS `site_users_ext` (
`user_id` double NOT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

New Pages:

  • views/blocks/register/register_2.twig
  • views/profile.twig
  • register_2.php

Users Area

  1. Profile – Manage My Profile tab – it contains company name and address, contact person, username, email, and password. To update your data or to change your password use Update button.
  2. Invoice List:
  • Invoices All – lists all invoices in chronological order, the latest invoices listed on top.
  • Invoices Paid – lists invoices that have been paid.
  • Invoices Unpaid – lists all unpaid invoices.
  • Invoices Past Due – list all overdue invoices.
  1. Fast Pay Area (page where invoice can be paid without log in)

Admin Area: 1. Profile – Manage My Profile tab – it contains company name and address, contact person, username, email, and password. To update your data or to change your password use Update button. 2. Invoice List:

  • Invoices All – lists all invoices in chronological order, the latest invoices listed on top.
  • Invoices Paid – lists invoices that have been paid.
  • Invoices Unpaid – lists all unpaid invoices.
  • Invoices Past Due – list all overdue invoices.

3. Reports – Tax Report – generates quarterly tax reports, used for filing your sales tax returns. 4. Administration Tab

  • Manage Users/Customers – allows you to search, edit, delete, and add users/customers.
  • System Configuration

5. Billing:

  • Create Invoice – to create invoice choose Invoice Type and Select Customer using drop-down arrow. Make sure the date is correct. Choose if the transaction is taxable or not and make sure the Tax Rate is correct. Next, click the line in Item Title column and enter first item or use suggestions auto generated from previous invoices. Enter Quantity and Amount. Description field is optional. To add a next item click the plus button at the end of the row. To save the invoice, click the Save button. To leave the Create Invoice area without saving, click the Cancel button.
  • View Invoice – lists all invoices in descending order. You can display 10, 25, 50, or 100 invoices per page. You can take the following actions:
  • Sales Orders (Quotes)
  • View Invoice Notes
  • Manage Clients
  • Manage Users
  • User Area

o View My Profile o Change Password

Your Invoice is ready. You can review and pay it here: Click this link to view/pay your invoice If you prefer to pay on a different billing schedule (e.g. monthly, quarterly, yearly), please contact us at your earliest convenience.

user_area_expansion.1402798342.txt.gz · Last modified: 2017/03/10 22:59 (external edit)