Feature: Added Machine Locations so that setting the location in the config file is not needed.

Feature: Settings database table added to store string based settings.
         It is right now used to store bill header and footer.
         Hard Coded header/footer removed from file.
Feature: Tax Analysis form created to easily show the tax calculation.
Feature: Management form uses background workers.  Dont' know if it is functional though.
Chore: Reorder Table form moved to masters from sales folder.
Refactor: ManagementBI and SalesAnalysisBI
This commit is contained in:
tanshu
2016-01-04 10:52:01 +05:30
parent 0456135497
commit caf9b3106c
37 changed files with 1893 additions and 507 deletions

View File

@ -0,0 +1,9 @@
BEGIN TRANSACTION
CREATE TABLE dbo.MachineLocations (
MachineLocationID uniqueidentifier PRIMARY KEY NOT NULL,
Machine nvarchar(50) NOT NULL,
Location nvarchar(50) NOT NULL,
CONSTRAINT IX_MachineLocations UNIQUE(Machine));
GO
INSERT INTO Auth_Roles (RoleID, Name) VALUES ('f12b573f-edcb-490d-91c3-fa76f6502ffd', 'Machines');
COMMIT

View File

@ -0,0 +1,7 @@
CREATE PROCEDURE UpdateBillID
@VoucherID uniqueidentifier,
@BillID int
AS
BEGIN
UPDATE Vouchers SET BillID = @BillID WHERE VoucherID = @VoucherID;
END

View File

@ -0,0 +1,27 @@
BEGIN TRANSACTION
GO
CREATE TABLE dbo.Settings
( SettingID uniqueidentifier NOT NULL,
Name nvarchar(255) NOT NULL,
Details nvarchar(MAX) NOT NULL
) ON [PRIMARY]
TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE dbo.Settings ADD CONSTRAINT PK_Settings PRIMARY KEY (SettingID)
GO
CREATE UNIQUE INDEX IX_Settings ON dbo.Settings (Name)
GO
INSERT INTO Settings (SettingID, Name, Details)
VALUES ('FB738BA2-A3C9-40ED-891C-B930E6454974', 'Header',
' Hops n Grains' + CHAR(13) + CHAR(10) +
' The Microbrewery' + CHAR(13) + CHAR(10) +
' SCO 358, Sector 9, Panchkula' + CHAR(13) + CHAR(10) +
' A Unit of Peitho Foods Pvt. Ltd.' + CHAR(13) + CHAR(10) +
' CIN: U15139CH2010PTC032202' + CHAR(13) + CHAR(10) +
'(Reg Add: Plot No. 907, Indl Area II, Chd)' + CHAR(13) + CHAR(10) +
' TIN: 06592507323' + CHAR(13) + CHAR(10) +
' Service Tax: AAFCP5097GSD001' + CHAR(13) + CHAR(10))
GO
INSERT INTO Settings (SettingID, Name, Details) VALUES ('F7799871-D16E-4C4D-9B57-2299A5839ACB', 'Footer','Call: 0172-4026666, 8054923853, 8054923856')
GO
COMMIT