netsuite 0.7.9 → 0.8.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (167) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +1 -0
  3. data/.ruby-version +1 -1
  4. data/Gemfile +7 -2
  5. data/README.md +164 -61
  6. data/circle.yml +33 -13
  7. data/lib/netsuite.rb +55 -19
  8. data/lib/netsuite/actions/login.rb +20 -1
  9. data/lib/netsuite/actions/search.rb +1 -6
  10. data/lib/netsuite/actions/update.rb +6 -2
  11. data/lib/netsuite/actions/update_list.rb +109 -0
  12. data/lib/netsuite/actions/upsert.rb +2 -0
  13. data/lib/netsuite/configuration.rb +21 -4
  14. data/lib/netsuite/errors.rb +3 -0
  15. data/lib/netsuite/records/assembly_build.rb +39 -0
  16. data/lib/netsuite/records/assembly_component.rb +28 -0
  17. data/lib/netsuite/records/assembly_component_list.rb +12 -0
  18. data/lib/netsuite/records/assembly_item.rb +1 -0
  19. data/lib/netsuite/records/assembly_unbuild.rb +40 -0
  20. data/lib/netsuite/records/bin_number.rb +18 -0
  21. data/lib/netsuite/records/bin_number_list.rb +1 -20
  22. data/lib/netsuite/records/bin_transfer.rb +38 -0
  23. data/lib/netsuite/records/bin_transfer_inventory.rb +20 -0
  24. data/lib/netsuite/records/bin_transfer_inventory_list.rb +10 -0
  25. data/lib/netsuite/records/cash_refund.rb +101 -3
  26. data/lib/netsuite/records/cash_refund_item.rb +1 -1
  27. data/lib/netsuite/records/cash_sale.rb +1 -0
  28. data/lib/netsuite/records/classification.rb +5 -2
  29. data/lib/netsuite/records/contact.rb +2 -1
  30. data/lib/netsuite/records/contact_addressbook.rb +64 -0
  31. data/lib/netsuite/records/contact_addressbook_list.rb +11 -0
  32. data/lib/netsuite/records/credit_memo.rb +1 -0
  33. data/lib/netsuite/records/currency_rate.rb +4 -3
  34. data/lib/netsuite/records/custom_field_list.rb +16 -3
  35. data/lib/netsuite/records/custom_record.rb +3 -3
  36. data/lib/netsuite/records/custom_record_ref.rb +1 -0
  37. data/lib/netsuite/records/customer.rb +5 -4
  38. data/lib/netsuite/records/customer_credit_cards.rb +36 -0
  39. data/lib/netsuite/records/customer_credit_cards_list.rb +10 -0
  40. data/lib/netsuite/records/customer_deposit.rb +6 -2
  41. data/lib/netsuite/records/customer_deposit_apply.rb +17 -0
  42. data/lib/netsuite/records/customer_deposit_apply_list.rb +12 -0
  43. data/lib/netsuite/records/customer_payment.rb +1 -0
  44. data/lib/netsuite/records/customer_sales_team.rb +24 -0
  45. data/lib/netsuite/records/customer_sales_team_list.rb +9 -0
  46. data/lib/netsuite/records/customer_status.rb +29 -0
  47. data/lib/netsuite/records/customer_subscription.rb +18 -0
  48. data/lib/netsuite/records/customer_subscriptions_list.rb +10 -0
  49. data/lib/netsuite/records/deposit_other.rb +0 -10
  50. data/lib/netsuite/records/employee.rb +3 -2
  51. data/lib/netsuite/records/entity_custom_field.rb +53 -0
  52. data/lib/netsuite/records/estimate.rb +42 -0
  53. data/lib/netsuite/records/estimate_item.rb +40 -0
  54. data/lib/netsuite/records/estimate_item_list.rb +11 -0
  55. data/lib/netsuite/records/inbound_shipment.rb +33 -0
  56. data/lib/netsuite/records/inbound_shipment_item.rb +39 -0
  57. data/lib/netsuite/records/inbound_shipment_item_list.rb +11 -0
  58. data/lib/netsuite/records/inter_company_journal_entry.rb +48 -0
  59. data/lib/netsuite/records/inter_company_journal_entry_line.rb +28 -0
  60. data/lib/netsuite/records/inter_company_journal_entry_line_list.rb +14 -0
  61. data/lib/netsuite/records/inventory_adjustment.rb +1 -1
  62. data/lib/netsuite/records/inventory_adjustment_inventory.rb +2 -2
  63. data/lib/netsuite/records/inventory_item.rb +2 -2
  64. data/lib/netsuite/records/inventory_number.rb +35 -0
  65. data/lib/netsuite/records/inventory_number_locations.rb +16 -0
  66. data/lib/netsuite/records/inventory_number_locations_list.rb +10 -0
  67. data/lib/netsuite/records/inventory_transfer.rb +2 -2
  68. data/lib/netsuite/records/inventory_transfer_inventory_list.rb +0 -2
  69. data/lib/netsuite/records/invoice.rb +4 -4
  70. data/lib/netsuite/records/item_fulfillment.rb +2 -1
  71. data/lib/netsuite/records/job.rb +2 -1
  72. data/lib/netsuite/records/lot_numbered_assembly_item.rb +64 -0
  73. data/lib/netsuite/records/lot_numbered_inventory_item.rb +116 -0
  74. data/lib/netsuite/records/matrix_option_list.rb +12 -4
  75. data/lib/netsuite/records/message.rb +30 -0
  76. data/lib/netsuite/records/non_inventory_resale_item.rb +3 -2
  77. data/lib/netsuite/records/non_inventory_sale_item.rb +2 -1
  78. data/lib/netsuite/records/other_charge_sale_item.rb +2 -2
  79. data/lib/netsuite/records/partner.rb +1 -1
  80. data/lib/netsuite/records/price.rb +17 -0
  81. data/lib/netsuite/records/price_level.rb +26 -0
  82. data/lib/netsuite/records/price_list.rb +9 -0
  83. data/lib/netsuite/records/pricing.rb +20 -0
  84. data/lib/netsuite/records/pricing_matrix.rb +2 -2
  85. data/lib/netsuite/records/promotions.rb +26 -0
  86. data/lib/netsuite/records/promotions_list.rb +9 -0
  87. data/lib/netsuite/records/return_authorization.rb +3 -2
  88. data/lib/netsuite/records/return_authorization_item.rb +43 -0
  89. data/lib/netsuite/records/return_authorization_item_list.rb +11 -0
  90. data/lib/netsuite/records/sales_order.rb +1 -0
  91. data/lib/netsuite/records/sales_order_item.rb +12 -5
  92. data/lib/netsuite/records/sales_role.rb +26 -0
  93. data/lib/netsuite/records/sales_tax_item.rb +3 -1
  94. data/lib/netsuite/records/serialized_assembly_item.rb +239 -0
  95. data/lib/netsuite/records/serialized_inventory_item.rb +2 -2
  96. data/lib/netsuite/records/serialized_inventory_item_location.rb +37 -0
  97. data/lib/netsuite/records/serialized_inventory_item_locations_list.rb +10 -0
  98. data/lib/netsuite/records/serialized_inventory_item_numbers.rb +15 -0
  99. data/lib/netsuite/records/serialized_inventory_item_numbers_list.rb +10 -0
  100. data/lib/netsuite/records/service_resale_item.rb +1 -1
  101. data/lib/netsuite/records/service_sale_item.rb +2 -1
  102. data/lib/netsuite/records/subsidiary.rb +1 -0
  103. data/lib/netsuite/records/support_case.rb +1 -1
  104. data/lib/netsuite/records/support_case_type.rb +26 -0
  105. data/lib/netsuite/records/task.rb +2 -1
  106. data/lib/netsuite/records/tax_group.rb +3 -1
  107. data/lib/netsuite/records/transaction_body_custom_field.rb +61 -0
  108. data/lib/netsuite/records/transaction_column_custom_field.rb +59 -0
  109. data/lib/netsuite/records/transfer_order_item.rb +2 -2
  110. data/lib/netsuite/records/vendor.rb +1 -0
  111. data/lib/netsuite/records/vendor_bill.rb +2 -1
  112. data/lib/netsuite/records/vendor_credit.rb +2 -0
  113. data/lib/netsuite/records/work_order.rb +8 -0
  114. data/lib/netsuite/support/actions.rb +2 -0
  115. data/lib/netsuite/support/country.rb +27 -14
  116. data/lib/netsuite/support/search_result.rb +20 -5
  117. data/lib/netsuite/utilities.rb +100 -43
  118. data/lib/netsuite/version.rb +2 -2
  119. data/netsuite.gemspec +5 -4
  120. data/spec/netsuite/actions/login_spec.rb +23 -0
  121. data/spec/netsuite/actions/update_list_spec.rb +107 -0
  122. data/spec/netsuite/actions/update_spec.rb +42 -0
  123. data/spec/netsuite/configuration_spec.rb +79 -6
  124. data/spec/netsuite/records/address_spec.rb +10 -0
  125. data/spec/netsuite/records/basic_record_spec.rb +18 -1
  126. data/spec/netsuite/records/bin_number_spec.rb +23 -0
  127. data/spec/netsuite/records/classification_spec.rb +10 -1
  128. data/spec/netsuite/records/custom_field_list_spec.rb +46 -5
  129. data/spec/netsuite/records/custom_record_spec.rb +1 -1
  130. data/spec/netsuite/records/customer_credit_cards_list_spec.rb +23 -0
  131. data/spec/netsuite/records/customer_sales_team_list_spec.rb +41 -0
  132. data/spec/netsuite/records/customer_spec.rb +44 -2
  133. data/spec/netsuite/records/customer_subscription_spec.rb +41 -0
  134. data/spec/netsuite/records/customer_subscriptions_list_spec.rb +19 -0
  135. data/spec/netsuite/records/employee_spec.rb +2 -2
  136. data/spec/netsuite/records/entity_custom_field_spec.rb +34 -0
  137. data/spec/netsuite/records/estimate_item_list_spec.rb +26 -0
  138. data/spec/netsuite/records/estimate_item_spec.rb +40 -0
  139. data/spec/netsuite/records/estimate_spec.rb +216 -0
  140. data/spec/netsuite/records/inter_company_journal_entry_line_list_spec.rb +26 -0
  141. data/spec/netsuite/records/inter_company_journal_entry_line_spec.rb +60 -0
  142. data/spec/netsuite/records/inter_company_journal_entry_spec.rb +156 -0
  143. data/spec/netsuite/records/inventory_item_spec.rb +57 -0
  144. data/spec/netsuite/records/inventory_transfer_spec.rb +21 -0
  145. data/spec/netsuite/records/invoice_spec.rb +4 -4
  146. data/spec/netsuite/records/matrix_option_list_spec.rb +15 -5
  147. data/spec/netsuite/records/message_spec.rb +49 -0
  148. data/spec/netsuite/records/non_inventory_resale_item_spec.rb +165 -0
  149. data/spec/netsuite/records/non_inventory_sale_item_spec.rb +1 -1
  150. data/spec/netsuite/records/partner_spec.rb +141 -0
  151. data/spec/netsuite/records/price_level_spec.rb +16 -0
  152. data/spec/netsuite/records/pricing_matrix_spec.rb +15 -13
  153. data/spec/netsuite/records/return_authorization_item_list_spec.rb +26 -0
  154. data/spec/netsuite/records/return_authorization_item_spec.rb +43 -0
  155. data/spec/netsuite/records/sales_order_item_spec.rb +11 -5
  156. data/spec/netsuite/records/service_resale_item_spec.rb +134 -0
  157. data/spec/netsuite/records/support_case_type_spec.rb +22 -0
  158. data/spec/netsuite/records/transaction_body_custom_field_spec.rb +32 -0
  159. data/spec/netsuite/records/transaction_column_custom_field_spec.rb +32 -0
  160. data/spec/netsuite/records/vendor_credit_spec.rb +29 -0
  161. data/spec/netsuite/support/search_result_spec.rb +24 -0
  162. data/spec/netsuite/utilities_spec.rb +50 -0
  163. data/spec/spec_helper.rb +5 -4
  164. data/spec/support/fixtures/update_list/update_list_items.xml +22 -0
  165. data/spec/support/fixtures/update_list/update_list_one_item.xml +18 -0
  166. data/spec/support/fixtures/update_list/update_list_with_errors.xml +32 -0
  167. metadata +123 -8
@@ -231,4 +231,61 @@ describe NetSuite::Records::InventoryItem do
231
231
  end
232
232
  end
233
233
 
234
+ describe '.update_list' do
235
+ before { savon.mock! }
236
+ after { savon.unmock! }
237
+
238
+ context 'with one item' do
239
+ before do
240
+ savon.expects(:update_list).with(:message =>
241
+ {
242
+ 'record' => [{
243
+ 'listAcct:itemId' => 'Target',
244
+ '@xsi:type' => 'listAcct:InventoryItem',
245
+ '@internalId' => '624113'
246
+ }]
247
+ }).returns(File.read('spec/support/fixtures/update_list/update_list_one_item.xml'))
248
+ end
249
+
250
+ it 'returns collection with one InventoryItem instances populated with the data from the response object' do
251
+ items = NetSuite::Records::InventoryItem.update_list([
252
+ NetSuite::Records::InventoryItem.new(internal_id: '624113', item_id: 'Target', upccode: 'Target')
253
+ ])
254
+ shutter_fly = items[0]
255
+ expect(shutter_fly).to be_kind_of(NetSuite::Records::InventoryItem)
256
+ expect(shutter_fly.item_id).to eq('Target')
257
+ expect(shutter_fly.internal_id).to eq('624113')
258
+ end
259
+ end
260
+
261
+ context 'with two items' do
262
+ before do
263
+ savon.expects(:update_list).with(:message =>
264
+ {
265
+ 'record' => [{
266
+ 'listAcct:itemId' => 'Shutter Fly',
267
+ '@xsi:type' => 'listAcct:InventoryItem',
268
+ '@internalId' => '624172'
269
+ },
270
+ {
271
+ 'listAcct:itemId' => 'Target',
272
+ '@xsi:type' => 'listAcct:InventoryItem',
273
+ '@internalId' => '624113'
274
+ }
275
+ ]
276
+ }).returns(File.read('spec/support/fixtures/update_list/update_list_items.xml'))
277
+ end
278
+
279
+ it 'returns collection of InventoryItem instances populated with the data from the response object' do
280
+ items = NetSuite::Records::InventoryItem.update_list( [
281
+ NetSuite::Records::InventoryItem.new(internal_id: '624172', item_id: 'Shutter Fly', upccode: 'Shutter Fly, Inc.'),
282
+ NetSuite::Records::InventoryItem.new(internal_id: '624113', item_id: 'Target', upccode: 'Target')
283
+ ])
284
+ shutter_fly = items[0]
285
+ expect(shutter_fly).to be_kind_of(NetSuite::Records::InventoryItem)
286
+ expect(shutter_fly.item_id).to eq('Shutter Fly')
287
+ expect(shutter_fly.internal_id).to eq('624172')
288
+ end
289
+ end
290
+ end
234
291
  end
@@ -19,6 +19,27 @@ describe NetSuite::Records::InventoryTransfer do
19
19
  end
20
20
  end
21
21
 
22
+ describe '#to_record' do
23
+ it 'includes the inventory_list' do
24
+ attributes = {
25
+ :inventory => [{
26
+ :inventory_detail => {
27
+ :custom_form => {
28
+ internal_id: 1
29
+ },
30
+ :inventory_assignment_list => {
31
+ :inventory_assignment => [{
32
+ quantity: 3
33
+ }]
34
+ }
35
+ }
36
+ }]
37
+ }
38
+ inventory_transfer.inventory_list = attributes
39
+ list = inventory_transfer.to_record.fetch("tranInvt:inventoryList").fetch("tranInvt:inventory")
40
+ expect(list.count).to eq(1)
41
+ end
42
+ end
22
43
 
23
44
  describe '#inventory_list' do
24
45
  it 'can be set from attributes' do
@@ -9,14 +9,14 @@ describe NetSuite::Records::Invoice do
9
9
  [
10
10
  :balance, :bill_address,
11
11
  :billing_schedule, :contrib_pct, :created_date, :currency_name,
12
- :deferred_revenue, :discount_amount, :discount_date, :discount_item, :discount_rate,
12
+ :deferred_revenue, :discount_amount, :discount_date, :discount_rate,
13
13
  :due_date, :email, :end_date, :est_gross_profit, :est_gross_profit_percent, :exchange_rate,
14
14
  :exclude_commission, :exp_cost_disc_amount, :exp_cost_disc_print, :exp_cost_disc_rate, :exp_cost_disc_tax_1_amt,
15
15
  :exp_cost_disc_taxable, :exp_cost_discount, :exp_cost_list, :exp_cost_tax_code, :exp_cost_tax_rate_1,
16
16
  :exp_cost_tax_rate_2, :fax, :fob, :gift_cert_redemption_list, :handling_tax_1_rate,
17
17
  :handling_tax_2_rate, :handling_tax_code, :is_taxable, :item_cost_disc_amount, :item_cost_disc_print,
18
18
  :item_cost_disc_rate, :item_cost_disc_tax_1_amt, :item_cost_disc_taxable, :item_cost_discount, :item_cost_list,
19
- :item_cost_tax_code, :item_cost_tax_rate_1, :item_cost_tax_rate_2, :job, :last_modified_date,
19
+ :item_cost_tax_code, :item_cost_tax_rate_1, :item_cost_tax_rate_2, :last_modified_date,
20
20
  :linked_tracking_numbers, :memo, :message, :message_sel, :on_credit_hold, :opportunity,
21
21
  :other_ref_num, :partners_list, :rev_rec_end_date,
22
22
  :rev_rec_on_rev_commitment, :rev_rec_schedule, :rev_rec_start_date, :revenue_status, :sales_effective_date,
@@ -43,8 +43,8 @@ describe NetSuite::Records::Invoice do
43
43
 
44
44
  it 'has the right record_refs' do
45
45
  [
46
- :account, :bill_address_list, :custom_form, :department, :entity, :klass, :posting_period, :ship_address_list, :terms,
47
- :created_from, :location, :sales_rep, :ship_method, :tax_item, :partner, :lead_source, :promo_code, :subsidiary
46
+ :account, :bill_address_list, :job, :custom_form, :department, :entity, :klass, :posting_period, :ship_address_list, :terms,
47
+ :created_from, :location, :sales_rep, :ship_method, :tax_item, :partner, :lead_source, :promo_code, :subsidiary, :discount_item
48
48
  ].each do |record_ref|
49
49
  expect(invoice).to have_record_ref(record_ref)
50
50
  end
@@ -5,20 +5,30 @@ module NetSuite
5
5
  module Records
6
6
  describe MatrixOptionList do
7
7
  it "deals with hash properly" do
8
- hash = {:value=>{:@internal_id=>"1", :@type_id=>"36"}}
8
+ hash = {:value=>{:@internal_id=>"1", :@type_id=>"36", :name=>"some value"}, :@script_id=>'cust_field_1'}
9
9
 
10
10
  list = described_class.new({ matrix_option: hash })
11
- expect(list.options.first.value_id).to eq "1"
11
+ option = list.options.first
12
+ expect(option.value_id).to eq "1"
13
+ expect(option.type_id).to eq "36"
14
+ expect(option.name).to eq "some value"
15
+ expect(option.script_id).to eq "cust_field_1"
12
16
  end
13
17
 
14
18
  it "deals with arrays properly" do
15
19
  array = [
16
- {:value=>{:@internal_id=>"2", :@type_id=>"28"}},
17
- {:value=>{:@internal_id=>"1", :@type_id=>"29"}}
20
+ {:value=>{:@internal_id=>"2", :@type_id=>"28", :name=>"some value 28"}, :@script_id=>'cust_field_28'},
21
+ {:value=>{:@internal_id=>"1", :@type_id=>"29", :name=>"some value 29"}, :@script_id=>'cust_field_29'}
18
22
  ]
19
23
 
20
24
  list = described_class.new({ matrix_option: array })
21
- expect(list.options.first.value_id).to eq "2"
25
+ expect(list.options.count).to eq 2
26
+
27
+ option = list.options.first
28
+ expect(option.value_id).to eq "2"
29
+ expect(option.type_id).to eq "28"
30
+ expect(option.name).to eq "some value 28"
31
+ expect(option.script_id).to eq "cust_field_28"
22
32
  end
23
33
  end
24
34
  end
@@ -0,0 +1,49 @@
1
+ require 'spec_helper'
2
+
3
+ describe NetSuite::Records::Message do
4
+ let(:message) { NetSuite::Records::Message.new }
5
+
6
+ it 'has all the right fields' do
7
+ [
8
+ :bcc, :cc, :compress_attachments, :date_time, :emailed,
9
+ :incoming, :message, :record_name, :record_type_name, :subject,
10
+ :last_modified_date, :message_date
11
+ ].each do |field|
12
+ expect(message).to have_field(field)
13
+ end
14
+ end
15
+
16
+ it 'has the right record_refs' do
17
+ [
18
+ :activity, :author, :recipient, :transaction
19
+ ].each do |record_ref|
20
+ expect(message).to have_record_ref(record_ref)
21
+ end
22
+ end
23
+
24
+ describe '.get' do
25
+ context 'when the response is successful' do
26
+ let(:response) { NetSuite::Response.new(:success => true, :body => {message: 'message text'})}
27
+
28
+ it 'returns a Message instance populated with data from the response object' do
29
+ expect(NetSuite::Actions::Get).to receive(:call).with([NetSuite::Records::Message, :external_id => 1], {}).and_return(response)
30
+
31
+ message = NetSuite::Records::Message.get(:external_id => 1)
32
+ expect(message).to be_kind_of(NetSuite::Records::Message)
33
+ expect(message.message).to eq('message text')
34
+ end
35
+ end
36
+
37
+ context 'when response is unsuccessful' do
38
+ let(:response) { NetSuite::Response.new(:success => false, :body => {}) }
39
+ it 'raises a RecordNotFound exception' do
40
+ expect(NetSuite::Actions::Get).to receive(:call).with([NetSuite::Records::Message, :external_id => 1], {}).and_return(response)
41
+ expect {
42
+ NetSuite::Records::Message.get(:external_id => 1)
43
+ }.to raise_error(NetSuite::RecordNotFound,
44
+ /NetSuite::Records::Message with OPTIONS=(.*) could not be found/)
45
+ end
46
+ end
47
+ end
48
+
49
+ end
@@ -0,0 +1,165 @@
1
+ require 'spec_helper'
2
+
3
+ describe NetSuite::Records::NonInventoryResaleItem do
4
+ let(:item) { NetSuite::Records::NonInventoryResaleItem.new }
5
+
6
+ it 'has the right fields' do
7
+ [
8
+ :available_to_partners, :cost_estimate, :cost_estimate_type, :cost_estimate_units, :country_of_manufacture, :created_date,
9
+ :display_name, :dont_show_price, :enforce_min_qty_internally, :exclude_from_sitemap,
10
+ :featured_description, :handling_cost, :handling_cost_units, :include_children, :is_donation_item, :is_fulfillable,
11
+ :is_gco_compliant, :is_inactive, :is_online, :is_taxable, :item_id, :last_modified_date, :manufacturer, :manufacturer_addr1,
12
+ :manufacturer_city, :manufacturer_state, :manufacturer_tariff, :manufacturer_tax_id, :manufacturer_zip, :matrix_option_list,
13
+ :matrix_type, :max_donation_amount, :meta_tag_html, :minimum_quantity, :minimum_quantity_units, :mpn,
14
+ :mult_manufacture_addr, :nex_tag_category, :no_price_message, :offer_support, :on_special, :out_of_stock_behavior,
15
+ :out_of_stock_message, :overall_quantity_pricing_type, :page_title, :preference_criterion, :presentation_item_list,
16
+ :prices_include_tax, :producer, :product_feed_list, :rate, :related_items_description, :sales_description,
17
+ :schedule_b_code, :schedule_b_number, :schedule_b_quantity, :search_keywords, :ship_individually, :shipping_cost,
18
+ :shipping_cost_units, :shopping_dot_com_category, :shopzilla_category_id, :show_default_donation_amount,
19
+ :site_category_list, :sitemap_priority, :soft_descriptor, :specials_description, :stock_description, :store_description,
20
+ :store_detailed_description, :store_display_name, :translations_list, :upc_code, :url_component, :use_marginal_rates,
21
+ :vsoe_deferral, :vsoe_delivered, :vsoe_permit_discount, :vsoe_price, :weight, :weight_unit, :weight_units
22
+ ].each do |field|
23
+ expect(item).to have_field(field)
24
+ end
25
+
26
+ # TODO there is a probably a more robust way to test this
27
+ expect(item.custom_field_list.class).to eq(NetSuite::Records::CustomFieldList)
28
+ expect(item.pricing_matrix.class).to eq(NetSuite::Records::PricingMatrix)
29
+ expect(item.subsidiary_list.class).to eq(NetSuite::Records::RecordRefList)
30
+ expect(item.item_vendor_list.class).to eq(NetSuite::Records::ItemVendorList)
31
+
32
+ end
33
+
34
+ it 'has the right record_refs' do
35
+ [
36
+ :billing_schedule, :cost_category, :custom_form, :deferred_revenue_account, :department, :income_account,
37
+ :issue_product, :item_options_list, :klass, :location, :parent, :pricing_group, :purchase_tax_code,
38
+ :quantity_pricing_schedule, :rev_rec_schedule, :sale_unit, :sales_tax_code, :ship_package, :store_display_image,
39
+ :store_display_thumbnail, :store_item_template, :tax_schedule, :units_type, :expense_account
40
+ ].each do |record_ref|
41
+ expect(item).to have_record_ref(record_ref)
42
+ end
43
+ end
44
+
45
+ describe '.get' do
46
+ context 'when the response is successful' do
47
+ let(:response) { NetSuite::Response.new(:success => true, :body => { :manufacturer_zip => '90401' }) }
48
+
49
+ it 'returns a NonInventoryResaleItem instance populated with the data from the response object' do
50
+ expect(NetSuite::Actions::Get).to receive(:call).with([NetSuite::Records::NonInventoryResaleItem, {:external_id => 20}], {}).and_return(response)
51
+ customer = NetSuite::Records::NonInventoryResaleItem.get(:external_id => 20)
52
+ expect(customer).to be_kind_of(NetSuite::Records::NonInventoryResaleItem)
53
+ expect(customer.manufacturer_zip).to eql('90401')
54
+ end
55
+ end
56
+
57
+ context 'when the response is unsuccessful' do
58
+ let(:response) { NetSuite::Response.new(:success => false, :body => {}) }
59
+
60
+ it 'raises a RecordNotFound exception' do
61
+ expect(NetSuite::Actions::Get).to receive(:call).with([NetSuite::Records::NonInventoryResaleItem, {:external_id => 20}], {}).and_return(response)
62
+ expect {
63
+ NetSuite::Records::NonInventoryResaleItem.get(:external_id => 20)
64
+ }.to raise_error(NetSuite::RecordNotFound,
65
+ /NetSuite::Records::NonInventoryResaleItem with OPTIONS=(.*) could not be found/)
66
+ end
67
+ end
68
+ end
69
+
70
+ describe '#add' do
71
+ context 'when the response is successful' do
72
+ let(:response) { NetSuite::Response.new(:success => true, :body => { :internal_id => '1' }) }
73
+
74
+ it 'returns true' do
75
+ expect(NetSuite::Actions::Add).to receive(:call).
76
+ with([item], {}).
77
+ and_return(response)
78
+ expect(item.add).to be_truthy
79
+ end
80
+ end
81
+
82
+ context 'when the response is unsuccessful' do
83
+ let(:response) { NetSuite::Response.new(:success => false, :body => {}) }
84
+
85
+ it 'returns false' do
86
+ expect(NetSuite::Actions::Add).to receive(:call).
87
+ with([item], {}).
88
+ and_return(response)
89
+ expect(item.add).to be_falsey
90
+ end
91
+ end
92
+ end
93
+
94
+ describe '#update' do
95
+ context 'when the response is successful' do
96
+ let(:response) { NetSuite::Response.new(:success => true, :body => { :internal_id => '1' }) }
97
+
98
+ it 'returns true' do
99
+ expect(NetSuite::Actions::Update).to receive(:call).
100
+ with([item.class, {external_id: 'foo'}], {}).
101
+ and_return(response)
102
+ item.external_id = 'foo'
103
+ expect(item.update).to be_truthy
104
+ end
105
+ end
106
+
107
+ context 'when the response is unsuccessful' do
108
+ let(:response) { NetSuite::Response.new(:success => false, :body => {}) }
109
+
110
+ it 'returns false' do
111
+ expect(NetSuite::Actions::Update).to receive(:call).
112
+ with([item.class, {external_id: 'foo'}], {}).
113
+ and_return(response)
114
+ item.external_id = 'foo'
115
+ expect(item.update).to be_falsey
116
+ end
117
+ end
118
+ end
119
+
120
+ describe '#delete' do
121
+ context 'when the response is successful' do
122
+ let(:response) { NetSuite::Response.new(:success => true, :body => { :internal_id => '1' }) }
123
+
124
+ it 'returns true' do
125
+ expect(NetSuite::Actions::Delete).to receive(:call).
126
+ with([item], {}).
127
+ and_return(response)
128
+ expect(item.delete).to be_truthy
129
+ end
130
+ end
131
+
132
+ context 'when the response is unsuccessful' do
133
+ let(:response) { NetSuite::Response.new(:success => false, :body => {}) }
134
+
135
+ it 'returns false' do
136
+ expect(NetSuite::Actions::Delete).to receive(:call).
137
+ with([item], {}).
138
+ and_return(response)
139
+ expect(item.delete).to be_falsey
140
+ end
141
+ end
142
+ end
143
+
144
+ describe '#to_record' do
145
+ before do
146
+ item.handling_cost = 100.0
147
+ item.is_online = true
148
+ end
149
+
150
+ it 'can represent itself as a SOAP record' do
151
+ record = {
152
+ 'listAcct:handlingCost' => 100.0,
153
+ 'listAcct:isOnline' => true
154
+ }
155
+ expect(item.to_record).to eql(record)
156
+ end
157
+ end
158
+
159
+ describe '#record_type' do
160
+ it 'returns a string of the SOAP type' do
161
+ expect(item.record_type).to eql('listAcct:NonInventoryResaleItem')
162
+ end
163
+ end
164
+
165
+ end
@@ -6,7 +6,7 @@ describe NetSuite::Records::NonInventorySaleItem do
6
6
  it 'has the right fields' do
7
7
  [
8
8
  :available_to_partners, :cost_estimate, :cost_estimate_type, :cost_estimate_units, :country_of_manufacture, :created_date,
9
- :display_name, :dont_show_price, :enforce_min_qty_internally, :exclude_from_sitemap,
9
+ :direct_revenue_posting, :display_name, :dont_show_price, :enforce_min_qty_internally, :exclude_from_sitemap,
10
10
  :featured_description, :handling_cost, :handling_cost_units, :include_children, :is_donation_item, :is_fulfillable,
11
11
  :is_gco_compliant, :is_inactive, :is_online, :is_taxable, :item_id, :last_modified_date, :manufacturer, :manufacturer_addr1,
12
12
  :manufacturer_city, :manufacturer_state, :manufacturer_tariff, :manufacturer_tax_id, :manufacturer_zip, :matrix_option_list,
@@ -0,0 +1,141 @@
1
+ require 'spec_helper'
2
+
3
+ describe NetSuite::Records::Partner do
4
+ let(:partner) { NetSuite::Records::Partner.new }
5
+
6
+ it 'has all the right fields' do
7
+ [
8
+ :phone, :home_phone, :first_name, :last_name, :alt_name, :is_inactive, :email, :give_access,
9
+ :partner_code, :is_person, :company_name, :eligible_for_commission, :entity_id, :last_modified_date,
10
+ :date_created, :title, :mobile_phone, :comments, :middle_name, :send_email, :password, :password2
11
+ ].each do |field|
12
+ expect(partner).to have_field(field)
13
+ end
14
+ end
15
+
16
+ it 'has all the right record refs' do
17
+ [
18
+ :klass, :access_role, :department, :subsidiary
19
+ ].each do |record_ref|
20
+ expect(partner).to have_record_ref(record_ref)
21
+ end
22
+ end
23
+
24
+ describe '.get' do
25
+ context 'when the response is successful' do
26
+ let(:response) { NetSuite::Response.new(:success => true, :body => { :account_number => 7 }) }
27
+
28
+ it 'returns an Partner instance populated with the data from the response object' do
29
+ expect(NetSuite::Actions::Get).to receive(:call).with([NetSuite::Records::Partner, { :external_id => 1 }], {}).and_return(response)
30
+ Partner = NetSuite::Records::Partner.get(:external_id => 1)
31
+ expect(Partner).to be_kind_of(NetSuite::Records::Partner)
32
+ end
33
+ end
34
+
35
+ context 'when the response is unsuccessful' do
36
+ let(:response) { NetSuite::Response.new(:success => false, :body => {}) }
37
+
38
+ it 'raises a RecordNotFound exception' do
39
+ expect(NetSuite::Actions::Get).to receive(:call).with([NetSuite::Records::Partner, { :external_id => 1 }], {}).and_return(response)
40
+ expect {
41
+ NetSuite::Records::Partner.get(:external_id => 1)
42
+ }.to raise_error(NetSuite::RecordNotFound,
43
+ /NetSuite::Records::Partner with OPTIONS=(.*) could not be found/)
44
+ end
45
+ end
46
+ end
47
+
48
+ describe '#add' do
49
+ let(:partner) { NetSuite::Records::Partner.new(:email => 'dale.cooper@example.com') }
50
+
51
+ context 'when the response is successful' do
52
+ let(:response) { NetSuite::Response.new(:success => true, :body => { :internal_id => '1' }) }
53
+
54
+ it 'returns true' do
55
+ expect(NetSuite::Actions::Add).to receive(:call).
56
+ with([partner], {}).
57
+ and_return(response)
58
+ expect(partner.add).to be_truthy
59
+ end
60
+ end
61
+
62
+ context 'when the response is unsuccessful' do
63
+ let(:response) { NetSuite::Response.new(:success => false, :body => {}) }
64
+
65
+ it 'returns false' do
66
+ expect(NetSuite::Actions::Add).to receive(:call).
67
+ with([partner], {}).
68
+ and_return(response)
69
+ expect(partner.add).to be_falsey
70
+ end
71
+ end
72
+ end
73
+
74
+ describe '#delete' do
75
+ context 'when the response is successful' do
76
+ let(:response) { NetSuite::Response.new(:success => true, :body => { :internal_id => '1' }) }
77
+
78
+ it 'returns true' do
79
+ expect(NetSuite::Actions::Delete).to receive(:call).
80
+ with([partner], {}).
81
+ and_return(response)
82
+ expect(partner.delete).to be_truthy
83
+ end
84
+ end
85
+
86
+ context 'when the response is unsuccessful' do
87
+ let(:response) { NetSuite::Response.new(:success => false, :body => {}) }
88
+
89
+ it 'returns false' do
90
+ expect(NetSuite::Actions::Delete).to receive(:call).
91
+ with([partner], {}).
92
+ and_return(response)
93
+ expect(partner.delete).to be_falsey
94
+ end
95
+ end
96
+ end
97
+
98
+ describe '.update' do
99
+ context 'when the response is successful' do
100
+ let(:response) { NetSuite::Response.new(:success => true, :body => { :email => 'leland.palmer@example.com' }) }
101
+
102
+ it 'returns true' do
103
+ expect(NetSuite::Actions::Update).to receive(:call).with([NetSuite::Records::Partner, { :internal_id => 1, :email => 'leland.palmer@example.com' }], {}).and_return(response)
104
+ partner = NetSuite::Records::Partner.new(:internal_id => 1)
105
+ expect(partner.update(:email => 'leland.palmer@example.com')).to be_truthy
106
+ end
107
+ end
108
+
109
+ context 'when the response is unsuccessful' do
110
+ let(:response) { NetSuite::Response.new(:success => false, :body => {}) }
111
+
112
+ it 'raises a RecordNotFound exception' do
113
+ expect(NetSuite::Actions::Update).to receive(:call).with([NetSuite::Records::Partner, { :internal_id => 1, :account_number => 7 }], {}).and_return(response)
114
+ partner = NetSuite::Records::Partner.new(:internal_id => 1)
115
+ expect(partner.update(:account_number => 7)).to be_falsey
116
+ end
117
+ end
118
+ end
119
+
120
+ describe '#to_record' do
121
+ let(:partner) { NetSuite::Records::Partner.new(:email => 'bob@example.com') }
122
+
123
+ it 'returns a hash of attributes that can be used in a SOAP request' do
124
+ expect(partner.to_record).to eql({ 'listRel:email' => 'bob@example.com' })
125
+ end
126
+ end
127
+
128
+ describe '#record_type' do
129
+ it 'returns a string type for the record to be used in a SOAP request' do
130
+ expect(partner.record_type).to eql('listRel:Partner')
131
+ end
132
+ end
133
+
134
+ it 'has the right record_refs' do
135
+ [
136
+ :klass, :access_role, :department, :subsidiary
137
+ ].each do |record_ref|
138
+ expect(partner).to have_record_ref(record_ref)
139
+ end
140
+ end
141
+ end