AbetoDesign_FactuGES2/Source/ApplicationBase/uPlugins_Intf.pas

21 lines
384 B
ObjectPascal
Raw Normal View History

2026-03-03 10:38:24 +00:00
unit uPlugins_Intf;
interface
uses FactuGES_Intf;
const
MODULENAME_PEDIDOS_PROVEEDOR = 'PedidosProveedor_plugin.bpl';
type
IMCPedidosProveedor = interface(IInterface)
['{E68FF168-609E-48FB-9C33-2E825F7CC2E3}']
procedure VerPedidosConArticulo(const ID_Articulo: Integer;
const AArticulo : String = ''; const isEqual: Boolean = false);
end;
implementation
end.