|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
Technique # }0 Q" w9 n" @9 P7 J! l. z' k
To query for an Item and retrieve its structure you build the query as the structure 5 z5 e4 f! Y: H+ O7 C$ [7 H2 V
you want returned. Use the IOM methods to add the relationships you want and . _2 i# T, M* X, m8 ~
build the structure in the Item. The server will return the structure that follows the
2 ]8 F3 S2 C# A" ], l8 C4 ]& ?request structure.
. @3 l6 d _/ O' ^3 ~This recipe illustrates several related concepts together, which are how to get a set
& N+ h& W# K1 R7 ?- n0 s6 y+ Q G! ?of Items from an Item and how to iterate over the set, plus how to get the related
( S, U/ g/ }' o g- z5 B$ WItem from the relationship Item. 8 _1 `0 {, G: R" N6 D4 u
JavaScript , a+ T6 _5 T# a, g
var innovator = this.newInnovator(); 4 V0 i0 Y6 V A( _1 Y
! `0 _0 P( n: b( P1 K& [
// Set up the query Item.
5 P8 R. g" ?5 U% k2 D, Cvar qryItem = this.newItem("Part","get");
* b% Q9 [8 n/ r! fqryItem.setAttribute("select","item_number,description,cost"); ; X3 g) B( O( b% j2 e Q
qryItem.setID(myId); 0 D0 b; C& B s- v
, A1 {0 z6 a0 u+ ]( u4 l// Add the BOM structure. ' }- {6 l0 l+ ?! Y* _" ?
var bomItem = this.newItem("Part BOM","get");
7 ^) ?% y* M P( C; g6 ~' B# }$ P& PbomItem.setAttribute("select","quantity,related_id(item_number,description,cost)"); 9 J2 K& I1 y: x* g, c) l& G
qryItem.addRelationship(bomItem);
, ~* P6 F6 D- A. D2 B1 y; O ' y6 S. j& B3 H; V# Z/ s
// Perform the query. 0 t' Y- y0 |: O; @% Y( ^
var results = qryItem.apply();
. d2 H' W h- K6 ?8 l , h& S6 L; |* B, Q5 k
// Test for an error.
; X' D& r6 V) Eif (results.isError()) { ; @& G3 U$ m+ m
top.aras.AlertError("Item not found: " + results.getErrorDetail());
# `3 H2 A' G! [" y2 r return; 1 q1 v! G9 N$ J; t# C5 a3 g( E2 E, E' y
} 6 C0 p4 G' N' `! p
6 W9 L- N$ T" T) ]1 y- Z, \// Get a handle to the BOM Items. ' B7 w6 X* W9 B% J$ |
var bomItems = results.getRelationships(); # ]0 z* l8 p- I- ?
var count = bomItems.getItemCount();
3 I1 `3 Z2 `( R
) B! [5 h5 \, F" Z0 S// Create the results content. , W0 }, I$ w3 [. i
var content = "<table border='1'>" + 2 o! g1 x9 a, k& v
"<tr>" + ( b. W0 W/ T2 O6 @
"<td>Part Number</td>" + & J q4 I6 r+ D: s3 h3 t0 E
"<td>Description</td>" + * [. f, f1 p- ?9 K. |4 o6 p
"<td>Cost</td>" + 4 N& ?$ t( {% _
"<td>Quantity</td>" + 2 @$ u5 h! o6 O% y+ M
"</tr>";
6 u: k& d7 `) r4 \0 E1 s" [
) X) I* a) c: ?; T1 w; U. p// Iterate over the BOM Items. / s# @. h8 J8 P4 B
for (var i=0; i<count; ++i)
8 \# V% L' c7 ?* |' `. _0 K{ $ X- H& d$ [4 L) a& ~
// Get a handle to the relationship Item by index. ) w& _, z4 _1 D D1 @
var bom = bomItems.getItemByIndex(i);
* j1 R6 Y% o5 L// Get a handle to the related Item for this relationship Item. ! N' b- y3 H1 l+ P) C1 a
var bomPart = bom.getRelatedItem(); 4 m. ]) r+ t/ B( a- b
Q6 A, l7 m* }7 Q content += "<tr>" + ( ] D0 s3 H1 r4 k& D# f x, n3 H
"<td>" + bomPart.getProperty("item_number") + "</td>" +
$ }" g2 Z/ f% X' y a# r9 B, z "<td>" + bomPart.getProperty("description") + "</td>" + : U m$ ], `2 R& Y6 E
"<td>" + bomPart.getProperty("cost") + "</td>" + " m: S0 a* L2 x$ [) X
"<td>" + bom.getProperty("quantity") + "</td>" +
! e0 x3 b, M- K" Q5 J "</tr>"; : \1 h: z5 E' l( S7 R9 |7 R
}
d+ Q5 W' Z0 l% n( qreturn content + "</table>";
9 j9 {6 j2 t( G! s: ] L8 H# M8 M# U% \9 Y, _4 v. \" J$ [6 P
+ a: Q, S, l& F/ A, q
* c$ O9 S7 G( ~% S/ ]2 f: I! Z: h) L8 E/ G, G: E8 Z
C# : [- R4 `/ e$ i. C) N
Innovator innovator = this.newInnovator();
9 W. l& `( P3 s& e8 c ! }! B& Z; p/ b9 A3 f: S
// Set up the query Item.
- Q" U* W* E( L1 }7 {4 [1 K( TItem qryItem = this.newItem("Part","get");
# Y* W- |2 H& f2 cqryItem.setAttribute("select","item_number,description,cost");
* u( v4 `/ J: gqryItem.setID(myId);
- a8 `' u( I0 B( X; A ) s7 g7 U- C l9 p$ J, B- X( v
// Add the BOM structure.
' D$ U5 [7 m! w0 |# I8 a& g/ LItem bomItem = this.newItem("Part BOM","get"); + T j9 l7 K9 [: a
bomItem.setAttribute("select","quantity, related_id(item_number,description,cost)"); 2 i( H$ U# z: X! L
qryItem.addRelationship(bomItem);
4 s1 H9 Z8 S, q
) v+ H$ t* W7 t// Perform the query. 0 x5 w( P( {; s$ u' d, Z7 b5 ]3 A
Item results = qryItem.apply(); # Y( i$ ~4 }9 E, U* l2 r
3 n2 e" x8 X3 z; N+ g// Test for an error.
! w0 x l' o j- I7 Xif (results.isError()) { 0 x' t- d& _2 N4 ?5 z7 V3 U
return innovator.newError("Item not found: " + results.getErrorDetail()); $ @3 h7 M: X u% F' }5 `% V
}
8 @& @! {7 u! X0 S# _& ^$ L , c8 ~* X+ ~( ~( B4 h
// Get a handle to the BOM Items.
' ~" e9 F6 n0 T6 k/ G wItem bomItems = results.getRelationships();
2 h1 |# @6 r. m6 i6 ?$ i' H* Mint count = bomItems.getItemCount(); " O% Z0 h5 F) p
int i; + H' b5 r, {, `( \
4 M2 w* z& V- B/ N) B// Create the results content. 2 {/ U" y! w, s4 n0 V) n# `
string content = "<table border='1'>" +
) F+ h/ ~" c% A- S# c p "<tr>" + ! ~8 G, `3 E) n0 v1 }/ c
"<td>Part Number</td>" + ( O9 }2 \4 s) V6 l" N
"<td>Description</td>" +
2 c: c6 W' z' p: y4 o' f "<td>Cost</td>" + + b3 T- u! ~ F# ^# E+ J$ }
"<td>Quantity</td>" + ! \+ R( c& b) i" Y
"</tr>";
+ q$ c' j* m( E+ ?6 a) o+ D" r 7 G, `/ l1 g$ M$ S& ?. O( Z
// Iterate over the BOM Items.
3 y' G4 Q! z# y6 \+ c% g0 e, U9 ^, Ofor (i=0; i<count; ++i)
* f% [, V) t7 L0 m- m# L+ @{
. O7 X+ g6 f! S c6 Z, s3 H( d. j// Get a handle to the relationship Item by index. + N1 K) k4 k6 r
Item bom = bomItems.getItemByIndex(i);
' k# _$ I% s, k% V, K( \* m// Get a handle to the related Item for this relationship Item.
% M' Z0 R! e% } Item bomPart = bom.getRelatedItem(); * t+ l% ~+ E2 e3 C
( k- {; N" e& W, ~ content += "" + ; G" C8 `" F( b |; N8 X2 @$ o
"<tr>" +
& [9 t: x/ P% E7 d( y2 }3 f9 x "<td>" + bomPart.getProperty("item_number") + "</td>" +
! W% w* q X- \ "<td>" + bomPart.getProperty("description") + "</td>" + - y3 q1 b c u( i
"<td>" + bomPart.getProperty("cost") + "</td>" + % @3 `8 E7 ~" w+ P3 ]- k
"<td>" + bom.getProperty("quantity") + "</td>" +
% n6 \: k" S, ]) k8 P# z) R "</tr>";
z& S$ t1 h) n. {" e' @4 t6 R}
& h) O/ s0 F. i* m5 h+ t' Gcontent += "</table>";
^9 _7 J" }$ i # L/ |/ U" H& J; k: V, t7 }+ E
return innovator.newResult(content); 8 w5 B3 ^" c2 k1 Z9 Y) e
* k/ Q. Y) u) Y8 Y$ u. ~8 y6 I1 C# N: t5 A" V) Q! U
7 C4 s6 G) B( \& ^! M' E
, S( o8 H& z* d3 y0 n
4 k$ K! V$ \) K2 m$ |
Z! t% b$ P5 v" ~% t7 b7 c3 j
" T, H R* B) T3 t l( a7 R: d
Page 46
" T/ m% Q0 S3 v) v3 f2 @0 ~ w - p: l& X+ k; i* l
Copyright 2007 " P5 }$ A/ K7 p7 ?6 V, E6 n
Aras Corporation. W% v2 i# P+ H8 L
All Rights Reserved.
6 H7 T ?* c4 k+ }0 V8 dVB.Net , W8 M$ l6 Y, Z5 X
Dim innovator As Innovator = Me.newInnovator()
8 \$ E' R. X# o$ O5 O; X7 X- l
# q8 ~' U o) M, r7 C, g( c: m7 J' Set up the query Item. ! R1 H: T& X) s& Z. G* X& ~* @1 l
Dim qryItem As Item = Me.newItem("Part","get")
& g; r1 O. U% P* v0 m- S; MqryItem.setAttribute("select","item_number,description,cost") 6 R, t- q9 K$ M' D) d
qryItem.setID(myId) : M- b) M. _/ C; W' m) X
. V: u h7 @$ o+ _) a' Add the BOM structure. 6 E, P4 @! C1 W# L. c
Dim bomItem As Item = Me.newItem("Part BOM","get")
7 y0 F0 H7 Q0 [8 c* hbomItem.setAttribute("select","quantity,related_id(item_number,description,cost)") 1 A# r4 B! R) A- q' Z
qryItem.addRelationship(bomItem) " [+ _$ o$ ]. B8 \6 \ K( Q0 o
" s0 ?! A) F2 I" A( }' X; N, C) T
' Perform the query. / s9 x+ S* J/ _1 L/ O* o9 L$ N
Dim results As Item = qryItem.apply() ' [1 M9 _$ G0 {1 e8 G5 E
, m- T- `: m& s! V- g! L: G) ]! o8 F
' Test for an error.
4 W/ o0 {/ u: }/ R: x6 o n0 pIf results.isError() Then + j) i. ] f4 d k: ]
Return innovator.newError(results.getErrorDetail())
2 a9 e( C- `- h) tEnd If ( }7 b7 J: X' v
/ C- |& x4 S/ A2 i' y0 j' Get a handle to the BOM Items. 5 u- X1 d$ q+ u1 I# A
Dim bomItems As Item = results.getRelationships() 9 u7 o7 v8 E0 ~& d: P( \; z( n
Dim count As Integer = bomItems.getItemCount() 5 H. `9 C; ]" r( w3 k
Dim i As Integer
% H+ ]6 Y- [4 B u $ Z V5 D1 z9 C) F
' Create the results content.
5 ^$ w' e0 J5 x I: `Dim content As String = "<table border='1'>" + _
; ~- N) [" `( A "<tr>" + _ $ V" Y( _/ g0 K: G
"<td>Part Number</td>" + _ 9 w# w1 c4 H, z" G V% @
"<td>Description</td>" + _ U- m. K1 U2 K+ U$ h
"<td>Cost</td>" + _
+ [1 q# o6 g! M; g/ C "<td>Quantity</td>" + _
, k: p, ^, B) f8 e8 ~, o5 } "</tr>" * N& P, ^! l" a: `" U& \
' {: I! c% o% Q7 s$ r3 K" i' Iterate over the BOM Items 5 ?0 y8 z$ H( _+ O
For i = 0 To count - 1
3 H9 ~! r$ p$ f' w' Get a handle to the relationship Item by index.
5 I9 @; x5 A2 B' S2 m/ H2 O! i Dim bom As Item = bomItems.getItemByIndex(i) ! X' B9 p8 B1 {, u2 T
7 s2 F( P* G1 m* y
' Get a handle to the related Item for this relationship Item.
0 w; E4 c% p z$ |8 b5 s& x Dim bomPart As Item = bom.getRelatedItem() 5 I5 z, O/ E8 h" ~( C
; M) ?, a5 K8 n2 p% W; Y; {6 |/ c
content += _
) n5 S' ?2 c- {' S( C. G "<tr>" + _
+ f0 m. S9 _' N4 U; R "<td>" + bomPart.getProperty("item_number") + "</td>" + _ 3 _1 d' i- i7 O0 p
"<td>" + bomPart.getProperty("description") + "</td>" + _ . ~6 a- v7 l9 M* r
"<td>" + bomPart.getProperty("cost") + "</td>" + _ $ e% {' d9 l6 ] G# F8 M4 H
"<td>" + bom.getProperty("quantity") + "</td>" + _
$ P% m8 Y3 o8 I. n- ?1 P! K "</tr>"
4 j3 t# C4 K. f% O D, qNext
8 G! x8 m9 f, [, kcontent += "</table>"
: k5 @4 E) h1 p7 w! Z
9 [4 y* m% g: V% \+ DReturn innovator.newResult(content)
$ n) z& o* W% E/ l% o4 i8 l" o+ t8 F7 z2 g) I
|
|