LiFan
10 天以前 63eebabbfee1bc84850b36967ecac5116a28b73f
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
use "dev:code[SKUTemplate.vx]"
 
unit vbusiness.vpage
[
    SKUTemplateImport is extend SKUTemplate;
    about SKUTemplateImport
    [
        field:
            xdwgrid    dw_list;
            xdwtable  dw_other;
            xdwtable  dw_prop;                     
        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()
            {    
                dw_other.openUrl(L"/sale/view/CustomerGoods/template/CustomerGoods/itemother");        
                dw_other.SetColHeaderHeight(0);
                dw_other.SetRowSelectorWidth(0);
                int row = SKUTemplate::dw_list.GetNextSelectRow(1);
                if (row<1)
                {
                    alert(L"ÇëÑ¡ÔñÄ£°å!");
                    return 1;
                }                    
                    
                msxml::IXMLDOMElement e =SKUTemplate::dw_list.GetRowElement(row);            
                xstring TemplateContent = e.selectSingleNode(L"TemplateContent").text+L"";
                xstring TemplateID = e.selectSingleNode(L"TemplateID").text+L"";                
                //trace(ItemName);
                xml x ;
                x.setNativePointer(x.CreateInstance());
                x.LoadXml(TemplateContent);                    
                dw_other.Retrieve(x);
                dw_prop.SetItemString(1,L"TemplateID",TemplateID);                
                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())
                {
                    int iArgs = GetParam();
                    xaserverarg arg1;
                    
                    dw_other = new xdwtable;
                    dw_other.setNativePointer(arg1.GetArgString(L"dw_other").toInt());
                    dw_prop = new xdwtable;
                    dw_prop.setNativePointer(arg1.GetArgString(L"dw_prop").toInt());                
                }
                //trace(dw_other.nativept);
                SKUTemplate::onload();
                SKUTemplate::dw_list.SetSelectionMode(1); //3
                SKUTemplate::dw_list.SetReadOnly(true);            
                AttachEvent(L"WM_XCOMMAND",OnXCommand);
                AttachEvent(L"dw_list",L"DWV_DOUBLECLICKED",OnDoubleClicked);//ÐÐË«»÷                
            }
        ]
    ]
]