This commit is contained in:
@@ -22,6 +22,12 @@ namespace AyaNova.Models
|
||||
public string CustomFields { get; set; }
|
||||
public List<string> Tags { get; set; }
|
||||
|
||||
//new for v8
|
||||
//response
|
||||
//discountservicerate (all service rates)
|
||||
//discounttravelrate (all travel)
|
||||
|
||||
|
||||
|
||||
public Contract()
|
||||
{
|
||||
@@ -34,3 +40,36 @@ namespace AyaNova.Models
|
||||
}//eoc
|
||||
|
||||
}//eons
|
||||
|
||||
/*
|
||||
CREATE TABLE [dbo].[ACONTRACT](
|
||||
[AID] [uniqueidentifier] NOT NULL,
|
||||
[ACREATOR] [uniqueidentifier] NULL,
|
||||
[AMODIFIER] [uniqueidentifier] NULL,
|
||||
[ACREATED] [datetime] NULL,
|
||||
[AMODIFIED] [datetime] NULL,
|
||||
[ADISCOUNTPARTS] [decimal](19, 5) NULL,
|
||||
[ANAME] [nvarchar](255) NULL,
|
||||
[AACTIVE] [bit] NOT NULL,
|
||||
[ANOTES] [ntext] NULL,
|
||||
[ACONTRACTRATESONLY] [bit] NOT NULL,
|
||||
[ACUSTOM1] [ntext] NULL,
|
||||
[ACUSTOM2] [ntext] NULL,
|
||||
[ACUSTOM3] [ntext] NULL,
|
||||
[ACUSTOM4] [ntext] NULL,
|
||||
[ACUSTOM5] [ntext] NULL,
|
||||
[ACUSTOM6] [ntext] NULL,
|
||||
[ACUSTOM7] [ntext] NULL,
|
||||
[ACUSTOM8] [ntext] NULL,
|
||||
[ACUSTOM9] [ntext] NULL,
|
||||
[ACUSTOM0] [ntext] NULL,
|
||||
[AREGIONID] [uniqueidentifier] NULL,
|
||||
|
||||
|
||||
CHILDREN
|
||||
ContractRate - specific contract rates available to contract holding entities only
|
||||
ContractTravel - specific contract travel rates only ''
|
||||
ContractRateTagOverride - tags and discount / markup to apply collection
|
||||
ContractTravelTagOverride - ''
|
||||
ContractPartTagOverride - ''
|
||||
*/
|
||||
Reference in New Issue
Block a user