Foxtable(狐表)用户栏目专家坐堂 → 核销溯源码到SQL数据库数据更新问题


  共有2026人关注过本帖树形打印复制链接

主题:核销溯源码到SQL数据库数据更新问题

帅哥哟,离线,有人找我吗?
有点甜
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/8/5 20:45:00 [显示全部帖子]

Dim pd As DataRow
Dim txt As String = Forms("盘点核销").Controls("TextBox1").Value
pd = DataTables("盘点单据").SQLFind("[盘点单号] = '" & txt & "'")  '找出本次盘点单据的盘点数据
If pd IsNot Nothing Then '如果本盘点号盘点单据有数据
    Dim syms = DataTables("盘点单据").SQLGetComboListString("溯源码", "[盘点单号] = '" & txt & "'").replace("|", "','")   
    DataTables("溯源码").SQLReplaceFor("是否可用", 0,"当前所在部门 = '" & pd("盘点部门") & "' And 子溯源码 not in ('" & syms & "')")
    MessageBox.Show("核销成功!", "提示")
Else
    MessageBox.Show("核销时输入框单号保证存在且正确!", "提示")
End If

 回到顶部