class Eddy::TransactionSets::TS855::TS
### Transaction Set Summary:
-
Id: 855
-
Name: Purchase Order Acknowledgement
-
Functional Group: PR
Constants
- FUNCTIONAL_GROUP
- ID
- NAME
Public Class Methods
new(store)
click to toggle source
@param store [Eddy::Data::Store] @return [void]
Calls superclass method
Eddy::Models::TransactionSet::new
# File lib/definitions/transaction_sets/manual/855/855.rb, line 18 def initialize(store) @bak = Eddy::Segments::BAK.new(store) @l_n1 = Eddy::TransactionSets::TS855::Loops::N1::Base.new(store) @l_po1 = Eddy::TransactionSets::TS855::Loops::PO1::Base.new(store) @ctt = Eddy::Segments::CTT.new(store) super( store, @bak, @l_n1, @l_po1, @ctt, ) end
Public Instance Methods
BAK() { |bak| ... }
click to toggle source
(see Eddy::Segments::BAK
)
@yieldparam [Eddy::Segments::BAK] @return [Eddy::Segments::BAK]
# File lib/definitions/transaction_sets/manual/855/855.rb, line 36 def BAK() yield(@bak) if block_given? return @bak end
CTT() { |ctt| ... }
click to toggle source
(see Eddy::Segments::CTT
)
@yieldparam [Eddy::Segments::CTT] @return [Eddy::Segments::CTT]
# File lib/definitions/transaction_sets/manual/855/855.rb, line 71 def CTT() yield(@ctt) if block_given? return @ctt end
L_N1(&block)
click to toggle source
(see Eddy::TransactionSets::TS855::Loops::N1::Base
)
@yieldparam [Eddy::TransactionSets::TS855::Loops::N1::Repeat] @return [void]
# File lib/definitions/transaction_sets/manual/855/855.rb, line 45 def L_N1(&block) if block_given? @l_n1.repeat(&block) else raise Eddy::Errors::Error, "No block given in loop iteration" end return nil end
L_PO1(&block)
click to toggle source
(see Eddy::TransactionSets::TS855::Loops::PO1::Base
)
@yieldparam [Eddy::TransactionSets::TS855::Loops::PO1::Repeat] @return [void]
# File lib/definitions/transaction_sets/manual/855/855.rb, line 58 def L_PO1(&block) if block_given? @l_po1.repeat(&block) else raise Eddy::Errors::Error, "No block given in loop iteration" end return nil end