2011-01-06 07:17:00 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
|
|
|
{
|
|
|
|
|
public static class Roles
|
|
|
|
|
{
|
|
|
|
|
public const string SALES_CHECKOUT = "Sales/Checkout";
|
|
|
|
|
public const string SALES_SALES_BILL = "Sales/SalesBill";
|
|
|
|
|
public const string SALES_SALE_DETAIL = "Sales/SaleDetail";
|
2011-01-10 19:49:11 +00:00
|
|
|
|
public const string SALES_VOID_BILL = "Sales/VoidPrintedBill";
|
|
|
|
|
public const string SALES_EDIT_BILL = "Sales/EditBill";
|
|
|
|
|
public const string SALES_PRINT_KOT = "Sales/PrintKOT";
|
|
|
|
|
public const string SALES_PRINT_BILL = "Sales/PrintBill";
|
|
|
|
|
public const string SALES_CHANGE_RATE = "Sales/ChangeRate";
|
|
|
|
|
public const string SALES_EDIT_PRINTED_PRODUCT = "Sales/EditPrintedProduct";
|
|
|
|
|
|
2011-01-06 07:17:00 +00:00
|
|
|
|
public const string MASTER_PRODUCTS = "Master/Products";
|
2011-01-10 19:49:11 +00:00
|
|
|
|
|
|
|
|
|
public const string SECURITY_MANAGE_ROLES = "Security/ManageRoles";
|
2011-01-06 07:17:00 +00:00
|
|
|
|
public const string LOG_VIEW = "Log/View";
|
|
|
|
|
public const string MASTER_OWNER = "Master/Owner";
|
2011-01-10 19:49:11 +00:00
|
|
|
|
|
2011-01-06 07:17:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|