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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1018|回复: 1

[Domino C/S开发] 视图文档的操作

[复制链接]
发表于 2003/11/21 15:33:02 | 显示全部楼层 |阅读模式

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

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

x
两个视图A(使用表单a),B(使用表单b)
如何通过“入库”操作使视图A中的某个被选择文档内容添加到视图B中?
比如视图A中某文档有设备1,型号1,数量1,根据设备1在视图B中找到设备1(其中在视图B中设备1已有多条记录即N种型号,各种型号数量不同),如何将这个文档内容添加到视图B中?
我的代码如下,想请大家修改一下:)
Sub Click(Source As Button)
        Dim ws As New notesuiworkspace
        Dim session As New notessession
        Dim db As notesdatabase
        Dim uiview As notesuiview
        Dim view As notesview,view2 As notesview
        Dim dc As notesdocumentcollection
        Dim vc As notesviewentrycollection
        Dim doc As notesdocument
        Dim doc2 As notesdocument
        Dim item As notesitem,item1 As NotesItem,item2 As NotesItem
        Dim i As Integer,count As Integer
        Dim strname As String
        Dim strtype As String,strtype1 As String
       
        Set db=session.currentdatabase
        Set uiview=ws.currentview
        Set dc=uiview.documents
        count=dc.count
        If count<1 Then
                Messagebox "请您选择一个文档,再试!",48,"提示"     &#39;&#39;&#39;&#39;&#39;在当前视图中选择需入库文档
        End If
       
        Set view=db.getview("allequip")         
        Set vc = view.allentries
       
        For i=1 To count            
                Set doc=dc.getnthdocument(i)
                temp1=doc.b_count(0)         
                strtype1=doc.b_type(0)      
                If temp1="" Then
                        Messagebox "请选择要入库文档"
                        Exit Sub
                End If
                strname=doc.b_name(0)     
                If strname <> ""  Then
                        search_string = "[goods_names]=" & Chr(34) & strname & Chr(34)               
                                End If
               
                temp2=view.ftsearch(search_string,0)
                Call vc.ftsearch(search_string,0)
                Call vc.RemoveAllFromFolder("query")
                Call vc.PutAllInFolder("query")
                Set view2=db.getview("query")       
               
                Set doc2=view.getlastdocument()   
                Set item = doc2.ReplaceItemValue("goods_counts",temp1)
                Set item1 = doc2.AppendItemValue("goods_types",strtype1)
                temp1=temp1+Cstr("(已分配)")
                Set item2 = doc.ReplaceItemValue("b_count",temp1)
                Call doc2.save(True,True)
        Next
        Call ws.viewrefresh
       
End Sub




发表于 2003/11/27 17:29:33 | 显示全部楼层
1、为什么要用For Next循环,你允许一次选多个文档吗?
2、选择文档可以用Set dc = db.UnprocessedDocuments
3、将这个文档内容添加到视图B中什么意思,是要生成新的表单b吗?你的程序是已经有了表单b,如果是,可以将视图B首列值设为b_name,用getdocumentbykey不是很方便吗?  
4、表单a的b_count域是数字域吗?
5、Set item2 = doc.ReplaceItemvalue("b_count",temp1) 你的doc值替换了不要保存吗?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

GMT+8, 2025/11/30 07:09 , Processed in 0.017392 second(s), 14 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

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