This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
LuisLeon_FactuGES2/Source/Modulos/Inventario/Utiles/uInventarioUtils.pas

43 lines
730 B
ObjectPascal
Raw Normal View History

unit uInventarioUtils;
interface
uses
SysUtils, Classes, pngimage;
type
TdmInventarioUtils = class(TDataModule)
private
{ Private declarations }
public
{ Public declarations }
end;
function ShowConfirmMessage_ArticulosSinStock(AListaArticulos : TStringList): Integer;
implementation
{$R *.dfm}
uses
uEditorDialog;
var
dmInventarioUtils: TdmInventarioUtils;
AEditor: TfDialog1;
function ShowConfirmMessage_ArticulosSinStock(AListaArticulos : TStringList): Integer;
begin
try
AEditor := TfDialog1.Create(nil);
AEditor.Memo1.Lines.AddStrings(AListaArticulos);
Result := AEditor.ShowModal;
finally
FreeAndNil(AEditor);
end;
end;
end.