壹佰网|ERP100 - 企业信息化知识门户

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 777|回复: 1

[Domino B/S开发] 查询代理

[复制链接]
发表于 2003/11/7 10:27:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622  。

您需要 登录 才可以下载或查看,没有帐号?注册

x
Sub Initialize
        Dim session As        New NotesSession
        Dim db As NotesDatabase
        Dim doc        As NotesDocument
        Dim allcollection As NotesDocumentCollection
        Dim sCondition As String
        Dim item_A As NotesItem
        Dim item_R As NotesItem
       
'        Dim user1 As New NotesName(session.UserName)   '增加的代码
       
        On Error Goto ErrorCleanup
        Set doc        = session.DocumentContext
        If  doc        Is Nothing Then
                Msgbox "Can't get the DocumentContext!"
                Print "Can't get the DocumentContext!"
                Exit Sub
        End If
       
        Set db = session.CurrentDatabase
        Call db.UpdateFTIndex(False) '有时你不需要调此函数
       
        Dim Sea_form As String
        Sea_form ="form=""gzrc"""        '查询通知表单
        Set allcollection =  db.Search(Sea_form,Nothing, 0)                               
        On Error Resume Next
        Call allcollection.RemoveAllFromFolder("MultiView")
        On Error Goto ErrorCleanup
       
        sCondition = "( FIELD  Apply_Men CONTAINS " + doc.cx_name(0) + ")"
       
        If doc.subsubject(0)<>"" Then
                If sCondition<>"" Then sCondition = sCondition + " & "
                sCondition = sCondition+"( FIELD Object CONTAINS "+ doc.subsubject(0) +")"  
        End If &#39;标题
       
        If doc.subcategories(0)<>"" Then
                If sCondition<>"" Then sCondition = sCondition + " & "
                sCondition = sCondition+"( FIELD Object_class CONTAINS "+ doc.subcategories(0) +")"
        End If &#39;分类
       
        If doc.subpubman(0)<>""        Then
                If sCondition<>"" Then sCondition = sCondition + " & "
                sCondition = sCondition+"( FIELD Apply_Men CONTAINS "+        doc.subpubman(0) +")"
        End If &#39;公布人
       
        If doc.subworkplace(0)<>"" Then
                If sCondition<>"" Then sCondition = sCondition + " & "
                sCondition = sCondition+"( FIELD Content CONTAINS "+ doc.subworkplace(0) +")"
        End If &#39;内容
       
        If Trim(doc.subksrq(0))<>"" Then
                If Not Isdate(doc.subksrq(0)) Then
                        Call  UOWebMsg("所输入的开始日期不是日期格式,请检查!")
                        Exit Sub
                End If
        End If
        If Trim(doc.subjsrq(0))<>"" Then
                If Not Isdate(doc.subjsrq(0)) Then
                        Call UOWebMsg ("所输入的结束日期不是日期格式,请检查!")
                        Exit Sub
                End If
        End If
        If (Trim(doc.subjsrq(0))="" And        Trim(doc.subksrq(0))<>"") Or (Trim(doc.subjsrq(0))<>"" And Trim(doc.subksrq(0))="")  Then
                Call UOWebMsg ("所输入的开始结束日期均不能为空,请检查!")
                Exit Sub          
        End If
        If (doc.subjsrq(0)< doc.subksrq(0))   Then
                Call UOWebMsg ("结束日期不应该小于开始日期,请检查!")
                Exit Sub          
        End If
        If sCondition<>"" Then
                Call allcollection.FTSearch(sCondition,        0)     
                If allcollection.Count > 0 Then
                        Dim doc8 As NotesDocument
                        For i=1        To allcollection.Count
                                Set doc8 = allcollection.GetNthDocument(i)
                                If  Trim(doc.subksrq(0))<>"" And Trim(doc.subjsrq(0))<>"" Then
                                        If (doc8.Apply_Date(0)>=Cdat(doc.subksrq(0)))        And (doc8.Apply_Date(0)<=Cdat(doc.subjsrq(0)))  Then
                                                Call doc8.PutInFolder("MultiView")       
                                        End If                                       
                                Else
                                        Call doc8.PutInFolder("MultiView")                                       
                                End If
                        Next
                End If
        Else
                If Trim(doc.subksrq(0))<>"" And        Trim(doc.subjsrq(0))<>"" Then
                        If allcollection.Count > 0 Then
                                Dim doc9 As NotesDocument
                                For i=1        To allcollection.Count
                                        Set doc9 = allcollection.GetNthDocument(i)
                                        If (doc9.Apply_Date(0)>=Cdat(doc.subksrq(0)))        And (doc9.Apply_Date(0)<=Cdat(doc.subjsrq(0)))  Then
                                                Call doc9.PutInFolder("MultiView")       
                                        End If
                                Next
                        End If         
                End If
        End If               
        Exit Sub
       
ErrorCleanup:
     &#39;Msgbox Error$
     &#39;Print Error$            
        Exit Sub
End Sub                               
发表于 2003/11/7 15:01:13 | 显示全部楼层
什么意思?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|小黑屋|手机版|壹佰网 ERP100 ( 京ICP备19053597号-2 )

Copyright © 2005-2012 北京海之大网络技术有限责任公司 服务器托管由互联互通
手机:13911575376
网站技术点击发送消息给对方83569622   广告&合作 点击发送消息给对方27675401   点击发送消息给对方634043306   咨询及人才点击发送消息给对方138011526

GMT+8, 2025/11/30 01:42 , Processed in 0.012744 second(s), 14 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表