精品人妻伦一区二区三区久久,狼友av永久网站免费极品在线,欧美日韩黄色大片,香港三日本8a三级少妇三级99

聯(lián)系方式

    固話:021-59786133

    電話:18117117761(微信同號(hào))

    郵箱:yuchengzhineng@qq.com

    網(wǎng)站:http://

精品展示

停車場系統(tǒng)中心收費(fèi)軟件代碼

2014/4/16 13:00:11??????點(diǎn)擊:

 if conf.CenterPay then  //中心收費(fèi)模式  admin
  begin
    if not imgOpen.Enabled then Exit;
    if not bCanOpen then Exit;
    //先寫歷史停車記錄
    with qryRec do
    begin
        //////////////////
        //設(shè)備所在停車場查詢
        Close;
        SQL.Clear;
        SQL.Add('SELECT * FROM JY_Park_Mech_info');
        SQL.Add('WHERE 編號(hào)=' + lbDev.Caption);
        Open;
        nPrkID := FieldByName('所屬停車場編號(hào)').AsInteger;


        //查詢是否已經(jīng)收過費(fèi)
        Close;
        SQL.Clear;
        SQL.Add('select * from JY_Park_IN_Info WHERE 卡號(hào)='''  + Edit1.Text + '''');
        Open;

       // if RecordCount>0 then
        if FieldByName('已結(jié)算').AsBoolean then
          begin  //也結(jié)算過的,必須重新采用插入新的出場記錄
             sID := GetID();
             Close;
             SQL.Clear;


             aCardID:=trim(Edit1.Text);
             SQL.Add('INSERT JY_Park_Rec_Info (編號(hào),卡號(hào),卡類,大小停車場)');
             SQL.Add('VALUES (''' + sID + ''',''' + aCardID + ''',' + IntToStr(2) + ','
                                + inttostr(nPrkID) + ')');
             try
                ExecSQL;
             except
                    SQL.SaveToFile(AppDir+'\logs\' + FormatDateTime('YYYYMMddHHmmss',now)+'.txt');
             end;
              Close;
            SQL.Clear;
            SQL.Add('UPDATE JY_Park_IN_Info SET');
            SQL.Add('出場時(shí)間=''' + DateTimeToStr(now) + ''',');

            SQL.Add('已結(jié)算= ' + sBool[True]);
            SQL.Add(' WHERE 卡號(hào)=''' + Edit1.Text +'''');

            try
            ExecSQL;
           except
           // SQL.SaveToFile(AppDir+'\logs\' + DateTimeToStr(now)+'.txt');
             DecodeDate(now, mdt.year, mdt.month, mdt.day);
             DecodeTime(now, mdt.hour, mdt.minute, mdt.second,t);
             str1:=floattostr(mdt.year)+'Y'+floattostr(mdt.month)+'M'+floattostr(mdt.day);
             str2:='D'+floattostr(mdt.hour)+'H'+floattostr(mdt.minute)+'M'+floattostr(mdt.second)+'S';
             SQL.SaveToFile(AppDir+'\logs\' + str1+str2+'.txt');//出錯(cuò)了,怎么辦?
           end;

           Close;                  //更新記錄
           SQL.Clear;
           SQL.Add('UPDATE JY_Park_Rec_Info SET');
           SQL.Add('出場時(shí)間=''' + Edit5.Text + ''',');
           SQL.Add('停車費(fèi)用=''' + Edit7.Text + ''',');
           //SQL.Add('出口編號(hào)=' + lbDev.Caption + ',');
           if czkout then
            SQL.Add('收費(fèi)員=''' + spaceuser + '''')
           else
           SQL.Add('收費(fèi)員=''' + LocalUser.Name + '''');

           SQL.Add('WHERE 編號(hào)=''' + sID + '''');
           try
            ExecSQL;
           except
            DecodeDate(now, mdt.year, mdt.month, mdt.day);
            DecodeTime(now, mdt.hour, mdt.minute, mdt.second,t);
            str1:=floattostr(mdt.year)+'Y'+floattostr(mdt.month)+'M'+floattostr(mdt.day);
            str2:='D'+floattostr(mdt.hour)+'H'+floattostr(mdt.minute)+'M'+floattostr(mdt.second)+'S';
            SQL.SaveToFile(AppDir+'\logs\' + str1+str2+'.txt');//出錯(cuò)了,怎么辦?
           end;


           //end;
          //end;
          end else   //第一次來付費(fèi)
           begin
           Close;
           SQL.Clear;
           SQL.Add('UPDATE JY_Park_Rec_Info SET');
           SQL.Add('出場時(shí)間=''' + Edit5.Text + ''',');
           SQL.Add('停車費(fèi)用=''' + Edit7.Text + ''',');
           //SQL.Add('出口編號(hào)=' + lbDev.Caption + ',');
           if czkout then
            SQL.Add('收費(fèi)員=''' + spaceuser + '''')
           else
           SQL.Add('收費(fèi)員=''' + LocalUser.Name + '''');
           //SQL.Add('大小停車場=''' + );
           SQL.Add('WHERE 編號(hào)=''' + gSid + '''');
           try
            ExecSQL;
           except
           DecodeDate(now, mdt.year, mdt.month, mdt.day);
           DecodeTime(now, mdt.hour, mdt.minute, mdt.second,t);
           str1:=floattostr(mdt.year)+'Y'+floattostr(mdt.month)+'M'+floattostr(mdt.day);
           str2:='D'+floattostr(mdt.hour)+'H'+floattostr(mdt.minute)+'M'+floattostr(mdt.second)+'S';
           SQL.SaveToFile(AppDir+'\logs\' + str1+str2+'.txt');//出錯(cuò)了,怎么辦?
           // SQL.SaveToFile(AppDir+'\logs\' + DateTimeToStr(now)+'.txt');//出錯(cuò)了,怎么辦?
           end;


          Close;
          SQL.Clear;
          SQL.Add('UPDATE JY_Park_IN_Info SET');
          SQL.Add('出場時(shí)間=''' + DateTimeToStr(now) + ''',');
          //SQL.Add('出口編號(hào)= ''' + IntToStr(nPrkID)+ ''',');
          SQL.Add('已結(jié)算= ' + sBool[True]);
          SQL.Add(' WHERE 卡號(hào)=''' + Edit1.Text +''' AND ');
          SQL.Add('所在停車場 >= ' + IntToStr(nPrkID));

          //SQL.Add('UPDATE JY_Park_Card_Info SET');
          //SQL.Add('所在停車場=' + IntToStr(nPrkID-1) + 'WHERE 卡號(hào)=''' + Edit1.Text + '''');
          try
            ExecSQL;
          except
           // SQL.SaveToFile(AppDir+'\logs\' + DateTimeToStr(now)+'.txt');
           DecodeDate(now, mdt.year, mdt.month, mdt.day);
           DecodeTime(now, mdt.hour, mdt.minute, mdt.second,t);
           str1:=floattostr(mdt.year)+'Y'+floattostr(mdt.month)+'M'+floattostr(mdt.day);
           str2:='D'+floattostr(mdt.hour)+'H'+floattostr(mdt.minute)+'M'+floattostr(mdt.second)+'S';
           SQL.SaveToFile(AppDir+'\logs\' + str1+str2+'.txt');//出錯(cuò)了,怎么辦?
          end;
         end;
       end;
  end else  //普通收費(fèi)模式
  begin
    if not imgOpen.Enabled then Exit;
    if not bCanOpen then Exit;

    with qrypic  do
    begin
    close;
    SQL.Clear;                                                                //
    SQL.Add('UPDATE JY_Park_New_Picture SET 標(biāo)識(shí)=1');
    SQL.Add('WHERE 編號(hào)=''' + gSid + '''');  //
     try
       ExecSQL;
       except
        ;//showmessage('圖像標(biāo)識(shí)失敗');
      end;
     end;

關(guān)鍵詞: 上海車牌識(shí)別系統(tǒng) 停車場管理系統(tǒng) 智慧軍營 數(shù)字軍營 蘇州車牌識(shí)別系統(tǒng) 上海停車場系統(tǒng) 車牌識(shí)別系統(tǒng) 營區(qū)出入管理系統(tǒng) 停車車輛管理系統(tǒng) 停車場系統(tǒng)改造 停車場門禁系統(tǒng) 部隊(duì)請銷假系統(tǒng) 部隊(duì)派車系統(tǒng) 人臉識(shí)別系統(tǒng) 數(shù)字營區(qū) 智慧營區(qū) 人臉識(shí)別門禁 自行車租賃系統(tǒng) 自行車收費(fèi)軟件 租賃收費(fèi)管理系統(tǒng) 智慧停車系統(tǒng) 訪客系統(tǒng) 云停車場管理系統(tǒng) 停車收費(fèi)管理系統(tǒng) 停車場門禁系統(tǒng) 智慧軍營整體解決方案 智慧部隊(duì) 智慧軍隊(duì) 數(shù)字部隊(duì)

電話: 18117117761(24小時(shí))? ? 021-59786133? 郵箱:yuchengzhineng@qq.com ?QQ: 9223677 ? 9603426 ? 529131638

Copyright 2019 上海譽(yù)澄智能科技有限公司 版權(quán)所有 All Rights Reserved ? 網(wǎng)站移動(dòng)版入口

滬公網(wǎng)安備 31011402002854號(hào) 滬ICP備10219392號(hào)-1