Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/12/13 16:34:04 (11 years ago)
Author:
spimming
Message:

#1888:

  • Added new BillingService methods
  • Disabled proxy generation and lazy loading!
  • Extended see method with additional test data
  • Added properties to order and invoice model
  • initial commit of BillingEngine module
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Billing.Test/DDLScript.sql

    r9602 r9619  
    1515    [UserId] [bigint] not null,
    1616    [OrderId] [bigint] not null,
     17    [InvoiceDate] [datetime] not null,
    1718    [Due] [datetime] not null,
    1819    [StatusValue] [int] not null,
     20    [Total] [float] not null,
     21    [Tax] [float] not null,
    1922    [InvoiceDocument] [nvarchar](max) null,
    2023    primary key ([InvoiceId])
     
    3639    [ActiveSince] [datetime] null,
    3740    [ActiveUntil] [datetime] null,
     41    [LastBillableDay] [datetime] null,
     42    [NextBillableDay] [datetime] null,
    3843    primary key ([OrderId])
    3944);
Note: See TracChangeset for help on using the changeset viewer.