2007-06-11 15:29:06 +00:00
|
|
|
|
{
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
Copyright (<EFBFBD>) 2007. Rodax Software.
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
Los contenidos de este fichero son propiedad de Rodax Software titular del
|
|
|
|
|
|
copyright. Este fichero s<EFBFBD>lo podr<EFBFBD> ser copiado, distribuido y utilizado,
|
|
|
|
|
|
en su totalidad o en parte, con el permiso escrito de Rodax Software, o de
|
|
|
|
|
|
acuerdo con los t<EFBFBD>rminos y condiciones establecidas en el acuerdo/contrato
|
|
|
|
|
|
bajo el que se suministra.
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
|
Web: www.rodax-software.com
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
Fecha primera versi<EFBFBD>n:
|
|
|
|
|
|
Versi<EFBFBD>n actual: 1.0.0
|
|
|
|
|
|
Fecha versi<EFBFBD>n actual:
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
Modificaciones:
|
|
|
|
|
|
|
|
|
|
|
|
Fecha Comentarios
|
|
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
unit uIDataModuleTiendaWeb;
|
|
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
|
uBizTiendaWeb, uBizOscAddressBook, uBizOscCustomers, uBizOscManufacturers,
|
|
|
|
|
|
uBizOscProducts, uBizOscOrders;
|
|
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
|
IDataModuleTiendaWeb = interface
|
|
|
|
|
|
['{E1208D47-C342-4DE1-879A-20F7689AB00A}']
|
|
|
|
|
|
function GetItems: IBizTiendaWeb;
|
|
|
|
|
|
function GetNextID(const DataSetName : String) : Integer;
|
|
|
|
|
|
function GetItem(const ID_Empresa : Integer) : IBizTiendaWeb;
|
|
|
|
|
|
function NewItem : IBizTiendaWeb;
|
|
|
|
|
|
|
|
|
|
|
|
function GetOSCCustomers: IBizOSCCustomer;
|
|
|
|
|
|
function GetOSCCustomer(const IDLocal : Integer): IBizOSCCustomer;
|
|
|
|
|
|
function NewOSCCustomer : IBizOSCCustomer;
|
|
|
|
|
|
|
|
|
|
|
|
function GetOSCManufacturers: IBizOSCManufacturer;
|
|
|
|
|
|
function GetOSCManufacturer(const IDLocal : Integer): IBizOSCManufacturer;
|
|
|
|
|
|
function NewOSCManufacturer : IBizOSCManufacturer;
|
|
|
|
|
|
|
|
|
|
|
|
function GetOSCProducts: IBizOSCProduct;
|
|
|
|
|
|
function GetOSCProduct(const IDLocal : Integer): IBizOSCProduct;
|
|
|
|
|
|
function NewOSCProduct : IBizOSCProduct;
|
|
|
|
|
|
|
|
|
|
|
|
function GetOSCOrders: IBizOscOrder;
|
|
|
|
|
|
function GetOSCOrder(const IDLocal : Integer): IBizOscOrder;
|
|
|
|
|
|
|
2008-06-16 16:43:21 +00:00
|
|
|
|
function GetNextIDOSC(const DataSetName : String) : Integer;
|
|
|
|
|
|
|
|
|
|
|
|
function HayConexionConTienda : Boolean;
|
2007-06-11 15:29:06 +00:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
|
|
end.
|