* CatalogManager.cs: Let the catalog manager ensure all command form are instancied * PhysicalProduct.cs: A better ToString method * SaleForm.cs: doc * NpgsqlContentProvider.cs: registers a command * FrontOfficeApiController.cs: Set the catalog referer uri in each command form found in the catalog * FrontOfficeController.cs: creates the catalog with referer uri * instdbws.sql: the command has got a client, as registered user * Commande.cs: The command has an id and a product reference * IContentProvider.cs: new RegisterCommand method * WorkFlowManager.cs: yavscModel/WorkFlow/IContentProvider.cs
30 lines
729 B
C#
30 lines
729 B
C#
using System;
|
|
using Yavsc;
|
|
using SalesCatalog;
|
|
using SalesCatalog.Model;
|
|
using System.Collections.Specialized;
|
|
|
|
|
|
namespace Yavsc.Model.WorkFlow
|
|
{
|
|
public class Commande
|
|
{
|
|
public DateTime CreationDate { get; set; }
|
|
public long Id { get; set; }
|
|
public string ProdRef { get; set; }
|
|
public Commande() {
|
|
}
|
|
|
|
public static Commande Create(NameValueCollection collection)
|
|
{
|
|
Commande cmd = new Commande ();
|
|
// string catref=collection["catref"]; // Catalog Url from which formdata has been built
|
|
cmd.ProdRef=collection["prodref"]; // Required product reference
|
|
cmd.CreationDate = DateTime.Now;
|
|
WorkFlowManager wm = new WorkFlowManager ();
|
|
wm.RegisterCommand (cmd); // sets cmd.Id
|
|
return cmd;
|
|
}
|
|
}
|
|
}
|
|
|