LiFan
2025-04-24 9b3b2eb20b09e13da837a28f16e552ba70a090c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
use "dev:code[SKUItem.vx]"
 
unit vbusiness.vpage
[
    SKUItemImport is extend SKUItem;
    about SKUItemImport
    [
        field:
            xdwgrid    dw_list;
            treeview        tv_1;
            xdwtable  dw_maint;            
        method:
        [
 
            xstring jxParam(xstring p, xstring n)
            {
                if(p != L"")
                {
 
                    int i = 1;
                    while (p.find(L"=",0)>0)
                    {
                        xstring name = p.mid(0, p.find(L"=",0));
                        xstring value = p.mid(p.find(L"=",0) + 1, p.find(L"=",0) - 1);
                        return ""+value;
                        i += 1;
                    }
                }        
                return "";
            }        
            int OnSelectAll()
            {
                if(this.dw_list.GetRowCount() > 0 )
                    this.dw_list.SelectRow(1,true);
 
                this.dw_list.SelectRow(0,true);
                this.dw_list.Redraw();
                return 1;
            }
            
            int OnSelectNo()
            {
                this.dw_list.SelectRow(0,false);
                this.dw_list.Redraw();
                return 1;
            }
            
            int OnOk()
            {
                
                xdwtable dw = new xdwtable;
                dw.setNativePointer(dw_maint.FindDwTable(L"Item",0));                
 
                int row = SKUItem::dw_list.GetNextSelectRow(1);
                if (row<1)
                {
                    alert(L"ÇëÑ¡ÔñÏîÄ¿Ãû³Æ!");
                    return 1;
                }                    
 
                while (row>0)
                {    
                    
                    msxml::IXMLDOMElement e =SKUItem::dw_list.GetRowElement(row);            
                    xstring ItemName = e.selectSingleNode(L"ItemName").text+L"";
                    //trace(ItemName);
                    if(dw.GetItemString(1,L"ItemName")==L"")
                    {
                        dw.SetItemString(1,L"SeqNo",L"1");                        
                        dw.ItemChangeTo(1,L"ItemName",ItemName);                
                    }
                    else
                    {
                        int n=dw.InsertRow(0);
                        dw.SetItemString(n,L"SeqNo",n.ToString());                        
                        dw.ItemChangeTo(n,L"ItemName",ItemName);                        
                    }        
                    row = SKUItem::dw_list.GetNextSelectRow(row +1);                    
                }
                CloseWindow();
                return 1;
            }
            
            int OnCancel()
            {
                CloseWindow();    
                return 1;
            }
            int OnDoubleClicked(ref TNotifyEvent evt,int p)
            {    
                OnOk();    
                return 1;
            }            
                
            int OnCmdDispatch(xstring comdid)
            {
                if (comdid==L"SelectAll") OnSelectAll();
                else if (comdid==L"SelectNo") OnSelectNo();
                else if (comdid==L"cb_import") OnOk();
                else if (comdid==L"cb_close") OnCancel();
                //else if (comdid==L"query") GridSearch();                        
                return 0;
            }
            
            int OnXCommand(ref TXCommandEvent evt,int p)
            {
                return OnCmdDispatch(evt.pStrID);
            }
            
            int onload()
            {
                if (GetParam())
                {
                    xaserverarg arg1=GetParam();
                    dw_maint = new xdwtable;
                    dw_maint.setNativePointer(arg1.GetArgString(L"dw_maint").toInt());
                }            
                SKUItem::onload();
                SKUItem::dw_list.SetSelectionMode(3); //3
                SKUItem::dw_list.SetReadOnly(true);            
                AttachEvent(L"WM_XCOMMAND",OnXCommand);
                AttachEvent(L"dw_list",L"DWV_DOUBLECLICKED",OnDoubleClicked);//ÐÐË«»÷                
            }
        ]
    ]
]