⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 updipsta.pas

📁 拥有全套神州数码马易飞ERP源码,现上传部分源码
💻 PAS
字号:
unit updIPSTA;

interface

uses sysUtils, dbtables, Bde, updBase, ComObj, CONSTDEF,LibStrs;

type
  TUpdateIPSTA = class(TBaseUpdateUnit)
  private
    FOtherVar: variant;
    function update_byIPSI03(xQrySource: TQuery): Boolean;
    function update_byIPSI05(xQrySource: TQuery): Boolean;
  public
    function update(xQrySource: TQuery; xAction: string;
       var xMsg: variant; xOtherVar: variant; xUserData: variant): Boolean;
  end;

implementation

function TUpdateIPSTA.update(xQrySource: TQuery; xAction: string;
           var xMsg: variant; xOtherVar: variant; xUserData: variant): Boolean;
begin
  Result := True;
  self.saveVar(xAction, xOtherVar, xUserData);
  FOtherVar:= xOtherVar;
  try
    setDBName(xQrySource.databaseName);
    if compareText(self.SourceTxnCode, 'TXNIPSI03') = 0 then
      Result := update_byIPSI03(xQrySource)
    else
    if compareText(self.SourceTxnCode, 'TXNIPSI05') = 0 then
      Result := update_byIPSI05(xQrySource)
    else
    begin
    end;
  finally
    self.Query1.close;
    self.Query1.UnPrepare;
  end;
  xMsg := self.Msg;
end;

function TUpdateIPSTA.update_byIPSI03(xQrySource: TQuery): Boolean;
var
  mExist: Boolean;
begin
  Result := True;
  self.Msg[0] := 'skip';
  self.Msg[1] := 'IPSTA';
  with xQrySource do
  begin
    self.Msg[2] := FieldByName('TC001').asString+' '+FieldByName('TC002').asString+' '+
                   FieldByName('TC003').asString;
  end;

  try
    with self.Query1 do
    begin
      close;
      SQL.clear;
      RequestLive := False;
      SQL.add('select * from $$IPSTA');
      SQL.add(' where TA001=:TA001 and TA002=:TA002 ');
      ParamByName('TA001').asString := xQrySource.FieldByName('TC001').asString;
      ParamByName('TA002').asString := xQrySource.FieldByName('TC002').asString;
      prepare;
      open;
      first ;
      mExist:= not eof ;

      if mExist then //

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -