Files
dyp/backup_ansi/uFrame_Plasma.pas
T
2026-05-07 20:25:34 +08:00

159 lines
4.4 KiB
ObjectPascal

unit uFrame_Plasma;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls,
uFrameBase, System.ImageList, FMX.ImgList, FMX.ListBox, uksoap,
FMX.Controls.Presentation, FMX.Edit, FMX.Objects,uListConent,uShowInfo,uTCPDevice;
type
TFrame_Plasma = class(TFrameBase)
Rectangle88: TRectangle;
Option1: TRectangle;
Glyph9: TGlyph;
OptionLabel1: TText;
Text19: TText;
Edit_KuangJi: TEdit;
Option2: TRectangle;
Glyph2: TGlyph;
OptionLabel3: TText;
Text6: TText;
Edit_ChengShi: TEdit;
TxtError: TText;
ImageList1: TImageList;
procedure Edit_ChengShiClick(Sender: TObject);
private
{ Private declarations }
public
procedure FillDefaultValue(sPartnumValue,sDefaultTxt:string);override; //填写默认值
function DoExec():boolean;override; //判断输入是否有效,执行插入主表,或打开窗体
function CheckValid(var sTxt:string):boolean;override;
function GetFixture_Code():string;override; //返回治具ID
end;
//var
// Frame_Plasma: TFrame_Plasma;
implementation
{$R *.fmx}
uses uDM, uInkPrintConent, uPucFun;
{
285090
D3007585AG
}
function TFrame_Plasma.GetFixture_Code():string; //返回治具ID
begin
Result:=Edit_KuangJi.Text; //烤架编号
end;
function TFrame_Plasma.CheckValid(var sTxt:string):boolean; //返回面次数据
var
aa:Extended;
sError:string;
begin
Result:=false;
if Trim(Edit_KuangJi.Text)='' then begin Error(Edit_KuangJi,TxtError,'框架編號不能為空');Exit;end;
if Trim(Edit_ChengShi.Text)='' then begin Error(Edit_ChengShi,TxtError,'程式選擇不能為空');Exit;end;
Result:=true;
if Result then Error(Edit_KuangJi,TxtError,'');
end;
procedure TFrame_Plasma.FillDefaultValue(sPartnumValue,sDefaultTxt:string);
begin
with TStringList.Create do
try
// a:= TStringList.Create;
Delimiter:= ',';
DelimitedText:= sDefaultTxt;
if Count>=24 then Edit_ChengShi.Text:=Strings[24];
finally
Free;
end;
end;
function TFrame_Plasma.DoExec():boolean;
var
LotNoRecord:TLotNoRecord;
vId:Integer;
sTxt:string;
sError:string;
vP_ID:Double;
begin
Result:=false;
if CheckValid(sTxt) then //上传数据
begin
LotNoRecord:=TLotNoRecord.Create('-1'); //初始化记录
LotNoRecord.P_LOT:=ksoap.P_Lot;
LotNoRecord.P_Enable:='Y';
LotNoRecord.P_ID:=0;
LotNoRecord.P_ORG_CODE:=ksoap.P_ORG_CODE; //廠區
LotNoRecord.P_NUM:=ksoap.P_WORK_NUM; //工號
LotNoRecord.P_PC:=ksoap.P_PC; //製程
LotNoRecord.P_LINE:=ksoap.P_LINE; //線別
LotNoRecord.P_LINE_NUM:=ksoap.P_LINE_NUM; //線別編號
LotNoRecord.P_TROLLEY_NUM:=Edit_KuangJi.Text; //框架編號
LotNoRecord.P_BKfile:=Edit_ChengShi.Text; //程式選擇
LotNoRecord.P_CREATION_DATE:=FormatDateTime('yyyymmdd hh:mm:ss',Now);
sError:='';
vP_ID:=Ksoap.Thread_cf_traceability_seq_f(ksoap.P_ORG_CODE,sError);
LotNoRecord.P_ID:=vP_ID;
if vP_ID=0 then
BEGIN
dm.InsertMain(vId,LotNoRecord,false);
Result:=true;
END
ELSE
BEGIN
//直接调用API,出错再保存本地
if not Ksoap.Thread_Insert_CM_WIP_PROCESS_LINE_HISTORY_NEW(LotNoRecord,sError) then //提交主表不成功
begin
if sError='連接數據庫服務器失败' then
begin
dm.InsertMain(vId,LotNoRecord,false);
Result:=true;
end
else
ShowError(sError);
end
else
begin
dm.InsertMain(vId,LotNoRecord,false);
dm.UpdateMainId(vId,vP_ID.ToString,True);
Result:=true;
end;
END;
//打开窗体
if Result then
begin
frmInkPrinterConent:=TfrmInkPrinterConent.Create(nil);
try
frmInkPrinterConent.LotNoRecord:=LotNoRecord;
frmInkPrinterConent.vP_ID:=LotNoRecord.P_ID;
frmInkPrinterConent.vId:=vId;
frmInkPrinterConent.Text6.Text:='更改框架編號';
frmInkPrinterConent.ShowModal;
finally
frmInkPrinterConent.Free;
end;
end;
end;
end;
procedure TFrame_Plasma.Edit_ChengShiClick(Sender: TObject);
begin
inherited;
ShowTouchKeyBoard();
end;
end.