|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
Technique " L5 C# Z2 N0 v; ^1 P+ M
To query for an Item and retrieve its structure you build the query as the structure
+ p6 m$ U" @3 d. J2 P! ^you want returned. Use the IOM methods to add the relationships you want and ' E& u3 p8 b* H! `
build the structure in the Item. The server will return the structure that follows the / l2 I; {; p, w5 s& [( ~. x
request structure.
. Y- x# }; Q( b! u% KThis recipe illustrates several related concepts together, which are how to get a set 6 W. Y5 o% H9 S+ p
of Items from an Item and how to iterate over the set, plus how to get the related
& x) d8 z. k" Z( d4 f6 d# dItem from the relationship Item. 8 W& s9 K- N h, u" }
JavaScript 2 M/ N" A% { u n! f- D
var innovator = this.newInnovator(); 6 q& H9 K: i, i3 B- r
9 D* X3 i) q8 ?* Q4 q
// Set up the query Item.
0 ~5 i; r- `( I: c, T0 E. R% ovar qryItem = this.newItem("Part","get");
& z! j4 V( E6 w: RqryItem.setAttribute("select","item_number,description,cost");
( U+ m7 W) i9 l- T5 c* cqryItem.setID(myId); / e; i9 o9 x- B# h2 m. K/ q, E1 f! g
8 U* O. h9 J2 g
// Add the BOM structure.
$ R3 J* t9 u( A0 o6 Z/ s& M/ c& `var bomItem = this.newItem("Part BOM","get");
; i8 i, M. r- W2 v% R' z! f/ QbomItem.setAttribute("select","quantity,related_id(item_number,description,cost)"); 3 l& ~& v3 v! e3 y( m
qryItem.addRelationship(bomItem);
1 l# N8 T( Q/ m! M- V
" K3 b6 \1 ]* Z, E- ]& e9 Z// Perform the query.
4 b; O$ d( |/ U; l- L7 N, a* s+ lvar results = qryItem.apply();
3 O, h5 C9 l- Y# t
7 Q1 v/ g5 K' F% D// Test for an error. 3 w$ Z5 Q. d( b3 u! S
if (results.isError()) {
4 T$ v4 ^1 V8 ~ f5 |& a top.aras.AlertError("Item not found: " + results.getErrorDetail());
, F* K i% K, z$ k# c return; & h+ `0 H! v8 }- ]& f
}
0 D7 \8 h2 v2 N& N' z2 W" r% g! J " \! l+ U5 {8 P1 |: g- W7 e
// Get a handle to the BOM Items.
3 ?/ t* B" h+ O/ Ivar bomItems = results.getRelationships(); 7 j$ Q3 o8 n, u$ {* I) J. l
var count = bomItems.getItemCount();
" f; P# f) }% q! d$ k) w e V7 N1 P V( a% s, C! u; |: ]$ Y
// Create the results content.
, p% R# r$ T+ Y+ b# G+ Bvar content = "<table border='1'>" + 5 g* n, h5 L- N! o: F: `# d) m
"<tr>" +
( ?3 A! Q3 k& \2 E* t "<td>Part Number</td>" +
( |9 Y4 f+ N# }" `% b" ~0 c$ [$ ? "<td>Description</td>" + 4 `1 T1 V( D/ N% m) O6 s
"<td>Cost</td>" + ) L2 V$ @) t0 \7 J& z- ^# E; D" }5 v
"<td>Quantity</td>" + , r2 P4 O2 ^" k/ n7 ~* m0 f2 s
"</tr>"; & k5 d3 ]+ r0 \; n5 x2 g
9 T8 d1 ?4 q+ g2 |0 l
// Iterate over the BOM Items.
) K- n3 j; r4 @# S& }( {for (var i=0; i<count; ++i)
' F$ L0 u+ q# ^; R; r{
/ n t; e5 B+ k f/ g' S" c: m# k// Get a handle to the relationship Item by index.
# @0 z9 m& o j5 y var bom = bomItems.getItemByIndex(i);
" H! r: A: F q7 ?0 v: {1 F% U' s// Get a handle to the related Item for this relationship Item. 7 U3 D a" v7 k4 o$ {5 H. _$ I9 i
var bomPart = bom.getRelatedItem(); ) Y- L7 y8 r* F
9 ?5 d/ O% b+ g+ M
content += "<tr>" +
. |6 H! h/ i; Z3 v* G "<td>" + bomPart.getProperty("item_number") + "</td>" +
. w% n; c2 ~3 y2 a "<td>" + bomPart.getProperty("description") + "</td>" +
' B; I7 q5 a+ ~9 ?0 c$ p- t "<td>" + bomPart.getProperty("cost") + "</td>" + : _6 ~" T4 ^! g% P5 S6 Z, ]
"<td>" + bom.getProperty("quantity") + "</td>" +
& O3 k7 J7 S8 I, Q" S- z9 ] "</tr>"; & C) R+ W9 h6 F, r) ^# q; m/ W" p, y
} 7 u0 K) {5 A8 Y- M9 \
return content + "</table>";7 N" M' M/ u9 z5 V
8 ^' j U, F# p: F' o4 r, {( H7 k7 _% c
& g; Y# C' h* L* ^$ S0 d, D a" G. R8 I) C% H4 }0 g! n6 e
C# * s. ^; \, I0 k; z
Innovator innovator = this.newInnovator();
3 a5 m: `: k# G! A9 y 9 K4 t. e3 k* }& Z" U6 z
// Set up the query Item.
* ~( `+ ~, s9 l; d6 kItem qryItem = this.newItem("Part","get"); ) u+ L$ n. O0 f0 W9 C
qryItem.setAttribute("select","item_number,description,cost"); 4 j9 }5 j% t+ H
qryItem.setID(myId); ; Y5 V8 B- F4 g
3 |5 g% h, w; y
// Add the BOM structure.
' o: N( i1 E0 {- T3 eItem bomItem = this.newItem("Part BOM","get"); 2 w# K( f$ w& j. d) s3 m' Q
bomItem.setAttribute("select","quantity, related_id(item_number,description,cost)");
% P" p- q( H% _qryItem.addRelationship(bomItem); / U6 O- c e5 x9 i, t2 d
o/ F+ X( u9 M; m0 q# X
// Perform the query. ) B& \1 z1 ^( t( r
Item results = qryItem.apply(); 0 G) q! C. u" ^6 V! b1 g* O
8 K8 P% n7 u& V V
// Test for an error.
( g2 R4 r/ P# r9 z8 P, Gif (results.isError()) {
+ M& g+ _: A0 O0 G: K return innovator.newError("Item not found: " + results.getErrorDetail()); 4 I! f+ o" ]3 [% M
} ; g% \6 H" @; `
2 }' e3 t( C$ B* v# W+ j
// Get a handle to the BOM Items.
3 x- }* Y4 t) V5 BItem bomItems = results.getRelationships(); . G; N8 R/ L/ @- E5 x
int count = bomItems.getItemCount();
9 J8 E8 C. A0 dint i;
4 a9 \) g" ^7 J2 x8 B- i ; u* L7 e: N1 l
// Create the results content. ! `! k# r( O. ]0 [; ?4 ~' N2 `
string content = "<table border='1'>" + 1 c3 Q, P7 D; u0 s5 T
"<tr>" + 6 D% I" L+ W N$ K( O3 n
"<td>Part Number</td>" +
' k2 y) k4 `8 I& S# a) ^. V, n* F, ~ "<td>Description</td>" + 9 N( b0 Y6 k& X# n% C. e
"<td>Cost</td>" +
5 |& W% ?) q/ b2 K# l; P+ a "<td>Quantity</td>" + , T2 t% b* b0 P8 j$ R
"</tr>";
9 I! z8 C3 N/ ~! s9 a 4 x0 u: \; \: H4 g( `1 G
// Iterate over the BOM Items.
. D m f1 i+ a$ ]for (i=0; i<count; ++i)
8 b' O; |$ m2 M* { A. |7 d# T{ 2 P; }0 U* p' L& W: `; J
// Get a handle to the relationship Item by index.
" C5 w+ F" H7 r' [# } Item bom = bomItems.getItemByIndex(i);
) I" C. a) ^: ~8 ~2 b// Get a handle to the related Item for this relationship Item.
" y' @$ m0 i4 ~: R* [; V& c* E Item bomPart = bom.getRelatedItem(); c; Z0 t3 b- \
3 D2 d5 A; c+ F
content += "" + ! H" b2 ]& h+ F7 n! x, E
"<tr>" +
; O6 o6 c8 [5 Z* L: P, I "<td>" + bomPart.getProperty("item_number") + "</td>" +
* S! _3 |: P5 I* e "<td>" + bomPart.getProperty("description") + "</td>" + $ T9 j3 B- X2 l0 F4 k
"<td>" + bomPart.getProperty("cost") + "</td>" +
c5 ]2 z2 ^, w "<td>" + bom.getProperty("quantity") + "</td>" +
, f1 @1 F5 O! }% e) Q7 T: q0 B# K "</tr>";
; G" \2 b8 A$ X- C! _8 Q}
P+ Z) l7 p C% ?" D( _' N* ?% |content += "</table>"; % H; \; k. L: w! D& D. j1 |( [. q
/ s4 i4 i+ T5 J5 n+ ^
return innovator.newResult(content); : d* j3 E3 c% z6 W9 ~3 ]8 {# C
/ R5 k, x$ R. D4 C* q& q
8 d& V( k: W# f/ J; q- @* g
6 j b; Q- I6 y( Z+ q
# h* |3 A* C( a [) q
% P( F% ]5 d* J
6 P2 G" ]7 J) U- @" D/ _
( F/ v& j8 c8 x. A
Page 46
" A+ K$ Y. ?3 I, i : C+ {- x( D2 N Y l; q
Copyright 2007
% i1 a9 E. I- ?" x* GAras Corporation.
M" P4 ?, `) P, L0 R9 D3 Q }All Rights Reserved. 5 w+ R9 e! @/ I `- R8 v: m
VB.Net 2 f1 R/ L4 ~( t
Dim innovator As Innovator = Me.newInnovator()
0 X' a% q, Y- o6 X# G
1 O+ e# E% r4 z+ o5 B' Set up the query Item.
* h/ {5 F: ~/ F' R9 \' S: E- MDim qryItem As Item = Me.newItem("Part","get") 1 [7 y; B* Z8 `( b
qryItem.setAttribute("select","item_number,description,cost")
. {# W4 q4 u6 D, V4 a, \qryItem.setID(myId)
- z& e, [5 w/ _$ |) }/ w / {; i+ M3 N, ^- u" e( a
' Add the BOM structure. ! b* X: Z5 ?3 t: R* M
Dim bomItem As Item = Me.newItem("Part BOM","get")
7 m1 U; P, T( l$ e: E- QbomItem.setAttribute("select","quantity,related_id(item_number,description,cost)") / x# _0 x3 b& O; _( f
qryItem.addRelationship(bomItem) 8 g3 k/ u0 ]# S7 O2 y% r
$ |0 x$ ^% }- o$ _' Perform the query.
% Z+ Y/ n2 y3 wDim results As Item = qryItem.apply() 0 q5 R/ i8 T# t; j' M
$ H& k7 |- O" P6 P% b# x& H4 \
' Test for an error.
1 @4 k5 M* }6 ?" Z, XIf results.isError() Then
/ m2 Q( H Z2 x4 D8 c% R Return innovator.newError(results.getErrorDetail())
5 W- g. T8 t s) c$ EEnd If : G+ F# _; g! M8 z% s+ o1 ~# s1 x& l% j w
6 g5 w5 ^% }4 G: {& ^' Get a handle to the BOM Items.
2 L8 X* \0 y2 y4 L7 s; oDim bomItems As Item = results.getRelationships() 6 X) g# o, D- y' G) j
Dim count As Integer = bomItems.getItemCount() * u; [% v+ J! r1 z. v: e/ G6 f) d
Dim i As Integer
" G4 a& l1 L$ J3 y1 t( f2 ` c& |6 b 6 p8 M: B! q! l- @$ x% i
' Create the results content.
8 A: y4 I9 @, wDim content As String = "<table border='1'>" + _
+ m5 R- G! ^; s1 J2 v( V "<tr>" + _
U+ ~& |8 T1 a5 |% r+ W1 t2 y "<td>Part Number</td>" + _ - j) D. g, @4 d8 J- ]4 P
"<td>Description</td>" + _
- `9 j3 a( f" D- I4 ?% U" g "<td>Cost</td>" + _
1 n. g1 A7 [. b4 U8 k4 K "<td>Quantity</td>" + _ . B* y& K) [3 B+ k4 T2 k, C0 `* w; `9 D
"</tr>" ) ~0 ^3 Z2 m& z2 {+ t+ D7 n
( ~2 t0 p5 j8 F& D# e0 m
' Iterate over the BOM Items . c) R/ ^! \& w* W8 W: v, S8 s
For i = 0 To count - 1
/ w6 F) }, j; I( }! \' Get a handle to the relationship Item by index. ) _; L7 t `( F
Dim bom As Item = bomItems.getItemByIndex(i)
% e. k# Z6 t2 c# H& |0 T6 t# {
5 m( M+ b: M7 P/ N2 Z# U s* D' Get a handle to the related Item for this relationship Item. 8 O k1 J0 }; f& K2 c2 d, |
Dim bomPart As Item = bom.getRelatedItem() ! T/ J; [* f) a! G
/ S3 {0 V6 y% o# a
content += _ 3 K5 \8 W5 P' m0 A( Z+ M; T) S) h
"<tr>" + _ ' d$ I, _$ R9 U
"<td>" + bomPart.getProperty("item_number") + "</td>" + _
; O4 z; r# H' }0 h0 K# |, }) B "<td>" + bomPart.getProperty("description") + "</td>" + _
8 m0 K9 W$ u% ?/ b4 Z "<td>" + bomPart.getProperty("cost") + "</td>" + _ # b- o! W' c- A4 w9 W
"<td>" + bom.getProperty("quantity") + "</td>" + _ 6 T; [0 N& ^. p) X0 _( u/ O/ h
"</tr>" & g- Y/ o. G! V' z) l* M' R
Next
( _9 |* T4 U$ X5 u, O4 xcontent += "</table>"
: m# f. }/ D6 ~. J/ ?+ f* v/ I 1 o# ]1 _0 I! r4 |
Return innovator.newResult(content) ) q/ b1 r3 d1 O8 c
% t8 n) Z$ Z* Z |
|