AbetoDesign_FactuGES2/Source/ApplicationBase/uPlugins_Intf.pas
2026-03-03 11:38:24 +01:00

21 lines
384 B
ObjectPascal

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.