- poder indicar individualmente qué artículos están en la tienda o no - arreglado el problema con ñ y tildes al volcar información a MySQL. git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES/trunk@247 c93665c3-c93d-084d-9b98-7d5f4a9c3376
63 lines
2.3 KiB
ObjectPascal
63 lines
2.3 KiB
ObjectPascal
{
|
|
===============================================================================
|
|
Copyright (©) 2007. Rodax Software.
|
|
===============================================================================
|
|
Los contenidos de este fichero son propiedad de Rodax Software titular del
|
|
copyright. Este fichero sólo podrá ser copiado, distribuido y utilizado,
|
|
en su totalidad o en parte, con el permiso escrito de Rodax Software, o de
|
|
acuerdo con los términos y condiciones establecidas en el acuerdo/contrato
|
|
bajo el que se suministra.
|
|
-----------------------------------------------------------------------------
|
|
Web: www.rodax-software.com
|
|
===============================================================================
|
|
Fecha primera versión:
|
|
Versión actual: 1.0.0
|
|
Fecha versió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;
|
|
|
|
function GetNextIDOSC(const DataSetName : String) : Integer;
|
|
|
|
function HayConexionConTienda : Boolean;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|