netsuite 0.8.4 → 0.8.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/main.yml +20 -0
  3. data/.gitignore +1 -0
  4. data/.ruby-version +1 -1
  5. data/.tool-versions +1 -0
  6. data/Gemfile +2 -5
  7. data/HISTORY.md +26 -0
  8. data/README.md +72 -29
  9. data/Rakefile +1 -1
  10. data/lib/netsuite.rb +13 -19
  11. data/lib/netsuite/actions/login.rb +10 -2
  12. data/lib/netsuite/actions/upsert.rb +2 -0
  13. data/lib/netsuite/configuration.rb +34 -4
  14. data/lib/netsuite/records/accounting_period.rb +2 -2
  15. data/lib/netsuite/records/classification.rb +4 -1
  16. data/lib/netsuite/records/contact.rb +1 -1
  17. data/lib/netsuite/records/cost_category.rb +28 -0
  18. data/lib/netsuite/records/credit_memo.rb +1 -1
  19. data/lib/netsuite/records/custom_field_list.rb +9 -3
  20. data/lib/netsuite/records/custom_record.rb +1 -1
  21. data/lib/netsuite/records/customer.rb +2 -1
  22. data/lib/netsuite/records/customer_credit_cards.rb +36 -0
  23. data/lib/netsuite/records/customer_credit_cards_list.rb +10 -0
  24. data/lib/netsuite/records/customer_deposit.rb +5 -5
  25. data/lib/netsuite/records/customer_payment.rb +6 -2
  26. data/lib/netsuite/records/customer_payment_credit.rb +17 -0
  27. data/lib/netsuite/records/customer_payment_credit_list.rb +12 -0
  28. data/lib/netsuite/records/employee.rb +1 -1
  29. data/lib/netsuite/records/estimate.rb +42 -0
  30. data/lib/netsuite/records/estimate_item.rb +40 -0
  31. data/lib/netsuite/records/estimate_item_list.rb +11 -0
  32. data/lib/netsuite/records/inventory_item.rb +62 -1
  33. data/lib/netsuite/records/invoice.rb +94 -1
  34. data/lib/netsuite/records/item_fulfillment.rb +1 -1
  35. data/lib/netsuite/records/lot_numbered_inventory_item.rb +116 -0
  36. data/lib/netsuite/records/matrix_option_list.rb +12 -4
  37. data/lib/netsuite/records/message.rb +30 -0
  38. data/lib/netsuite/records/non_inventory_resale_item.rb +1 -0
  39. data/lib/netsuite/records/non_inventory_sale_item.rb +1 -1
  40. data/lib/netsuite/records/other_charge_sale_item.rb +2 -2
  41. data/lib/netsuite/records/partner.rb +7 -5
  42. data/lib/netsuite/records/serialized_assembly_item.rb +3 -1
  43. data/lib/netsuite/records/service_resale_item.rb +1 -1
  44. data/lib/netsuite/records/support_case_type.rb +26 -0
  45. data/lib/netsuite/records/tax_group.rb +2 -2
  46. data/lib/netsuite/records/vendor.rb +2 -1
  47. data/lib/netsuite/records/vendor_currency.rb +26 -0
  48. data/lib/netsuite/records/vendor_currency_list.rb +9 -0
  49. data/lib/netsuite/support/fields.rb +16 -0
  50. data/lib/netsuite/support/records.rb +1 -1
  51. data/lib/netsuite/support/search_result.rb +36 -6
  52. data/lib/netsuite/utilities.rb +18 -6
  53. data/lib/netsuite/version.rb +1 -1
  54. data/netsuite.gemspec +5 -3
  55. data/spec/netsuite/actions/search_spec.rb +22 -0
  56. data/spec/netsuite/configuration_spec.rb +111 -6
  57. data/spec/netsuite/records/basic_record_spec.rb +9 -1
  58. data/spec/netsuite/records/classification_spec.rb +10 -1
  59. data/spec/netsuite/records/cost_category_spec.rb +105 -0
  60. data/spec/netsuite/records/custom_field_list_spec.rb +46 -6
  61. data/spec/netsuite/records/custom_record_spec.rb +1 -1
  62. data/spec/netsuite/records/customer_credit_cards_list_spec.rb +23 -0
  63. data/spec/netsuite/records/customer_payment_credit_list_spec.rb +26 -0
  64. data/spec/netsuite/records/customer_payment_spec.rb +1 -6
  65. data/spec/netsuite/records/customer_spec.rb +22 -1
  66. data/spec/netsuite/records/employee_spec.rb +2 -2
  67. data/spec/netsuite/records/estimate_item_list_spec.rb +26 -0
  68. data/spec/netsuite/records/estimate_item_spec.rb +40 -0
  69. data/spec/netsuite/records/estimate_spec.rb +216 -0
  70. data/spec/netsuite/records/inventory_item_spec.rb +65 -0
  71. data/spec/netsuite/records/invoice_spec.rb +94 -0
  72. data/spec/netsuite/records/matrix_option_list_spec.rb +15 -5
  73. data/spec/netsuite/records/message_spec.rb +49 -0
  74. data/spec/netsuite/records/non_inventory_resale_item_spec.rb +165 -0
  75. data/spec/netsuite/records/non_inventory_sale_item_spec.rb +1 -1
  76. data/spec/netsuite/records/partner_spec.rb +143 -0
  77. data/spec/netsuite/records/service_resale_item_spec.rb +134 -0
  78. data/spec/netsuite/records/support_case_type_spec.rb +22 -0
  79. data/spec/netsuite/records/vendor_spec.rb +1 -1
  80. data/spec/netsuite/support/search_result_spec.rb +24 -0
  81. data/spec/netsuite/utilities_spec.rb +20 -15
  82. data/spec/support/fixtures/custom_fields/multi_select.xml +47 -0
  83. data/spec/support/fixtures/search/saved_search_item.xml +55 -0
  84. data/spec/support/fixtures/search/saved_search_joined_custom_customer.xml +15 -1
  85. data/spec/support/search_only_field_matcher.rb +7 -0
  86. metadata +77 -12
  87. data/circle.yml +0 -17
@@ -31,6 +31,70 @@ describe NetSuite::Records::InventoryItem do
31
31
  end
32
32
  end
33
33
 
34
+ it 'has all the right search_only_fields' do
35
+ [
36
+ :acc_book_rev_rec_forecast_rule, :accounting_book,
37
+ :accounting_book_amortization, :accounting_book_create_plans_on,
38
+ :accounting_book_rev_rec_rule, :accounting_book_rev_rec_schedule,
39
+ :allowed_shipping_method, :atp_lead_time, :atp_method, :base_price,
40
+ :bin_number, :bin_on_hand_avail, :bin_on_hand_count, :bom_quantity,
41
+ :build_entire_assembly, :build_time, :buy_it_now_price, :category,
42
+ :category_preferred, :component_yield, :correlated_item,
43
+ :correlated_item_correlation, :correlated_item_count,
44
+ :correlated_item_lift, :correlated_item_purchase_rate,
45
+ :cost_accounting_status, :created, :create_job,
46
+ :cust_return_variance_account, :date_viewed, :days_before_expiration,
47
+ :default_shipping_method, :deferred_expense_account,
48
+ :departmentnohierarchy, :display_ine_bay_store, :e_bay_item_description,
49
+ :e_bay_item_subtitle, :e_bay_item_title, :ebay_relisting_option,
50
+ :effective_bom_control, :effective_date, :effective_revision,
51
+ :end_auctions_when_out_of_stock, :feed_description, :feed_name,
52
+ :froogle_product_feed, :fx_cost, :generate_accruals, :gift_cert_auth_code,
53
+ :gift_cert_email, :gift_cert_expiration_date, :gift_cert_from,
54
+ :gift_cert_message, :gift_cert_original_amount, :gift_cert_recipient,
55
+ :hierarchy_node, :hierarchy_version, :hits, :image_url,
56
+ :interco_expense_account, :inventory_location, :is_available,
57
+ :is_fulfillable, :is_lot_item, :is_serial_item,
58
+ :is_special_work_order_item, :is_vsoe_bundle, :is_wip, :item_url,
59
+ :last_quantity_available_change, :liability_account, :listing_duration,
60
+ :location_allow_store_pickup, :location_atp_lead_time,
61
+ :location_average_cost, :location_bin_quantity_available,
62
+ :location_build_time, :location_cost, :location_cost_accounting_status,
63
+ :location_default_return_cost, :location_demand_source,
64
+ :location_demand_time_fence, :location_fixed_lot_size,
65
+ :location_inventory_cost_template, :location_invt_classification,
66
+ :location_invt_count_interval, :location_last_invt_count_date,
67
+ :location_lead_time, :location_next_invt_count_date,
68
+ :location_periodic_lot_size_days, :location_periodic_lot_size_type,
69
+ :location_preferred_stock_level, :location_qty_avail_for_store_pickup,
70
+ :location_quantity_available, :location_quantity_back_ordered,
71
+ :location_quantity_committed, :location_quantity_in_transit,
72
+ :location_quantity_on_hand, :location_quantity_on_order,
73
+ :location_re_order_point, :location_reschedule_in_days,
74
+ :location_reschedule_out_days, :location_safety_stock_level,
75
+ :location_store_pickup_buffer_stock, :location_supply_lot_sizing_method,
76
+ :location_supply_time_fence, :location_supply_type, :location_total_value,
77
+ :loc_backward_consumption_days, :loc_forward_consumption_days,
78
+ :manufacturing_charge_item, :member_item, :member_quantity, :modified,
79
+ :moss_applies, :nextag_product_feed, :num_active_listings,
80
+ :number_allowed_downloads, :num_currently_listed, :obsolete_date,
81
+ :obsolete_revision, :online_customer_price, :online_price, :other_prices,
82
+ :other_vendor, :overhead_type, :preferred_bin, :primary_category,
83
+ :prod_price_variance_acct, :prod_qty_variance_acct, :purchase_unit,
84
+ :reserve_price, :revenue_recognition_rule,
85
+ :same_as_primary_book_amortization, :same_as_primary_book_rev_rec,
86
+ :scrap_acct, :sell_on_ebay, :serial_number, :serial_number_location,
87
+ :shipping_carrier, :shipping_rate, :shopping_product_feed,
88
+ :shopzilla_product_feed, :soft_descriptor, :starting_price, :subsidiary,
89
+ :sub_type, :thumb_nail_url, :type, :unbuild_variance_account,
90
+ :use_component_yield, :vendor_code, :vendor_cost, :vendor_cost_entered,
91
+ :vendor_price_currency, :vendor_schedule, :vend_return_variance_account,
92
+ :web_site, :wip_acct, :wip_variance_acct, :yahoo_product_feed,
93
+ ].each do |field|
94
+ expect(NetSuite::Records::InventoryItem).to have_search_only_field(field)
95
+ end
96
+ end
97
+
34
98
  it 'has all the right record refs' do
35
99
  [
36
100
  :alternate_demand_source_item, :asset_account, :bill_exch_rate_variance_acct, :bill_price_variance_acct, :bill_qty_variance_acct, :billing_schedule, :cogs_account, :cost_category, :custom_form, :deferred_revenue_account, :demand_source, :department, :expense_account, :gain_loss_account, :income_account, :issue_product, :klass, :location, :parent, :preferred_location, :pricing_group, :purchase_price_variance_acct, :purchase_tax_code, :purchase_unit, :quantity_pricing_schedule, :rev_rec_schedule, :sale_unit, :sales_tax_code, :ship_package, :soft_descriptor, :stock_unit, :store_display_image, :store_display_thumbnail, :store_item_template, :supply_lot_sizing_method, :supply_replenishment_method, :supply_type, :tax_schedule, :units_type, :vendor
@@ -215,6 +279,7 @@ describe NetSuite::Records::InventoryItem do
215
279
  before do
216
280
  item.cost = 100
217
281
  item.is_inactive = false
282
+ item.location_quantity_available = '1.0' # Search only, excluded
218
283
  end
219
284
  it 'can represent itself as a SOAP record' do
220
285
  record = {
@@ -41,6 +41,99 @@ describe NetSuite::Records::Invoice do
41
41
  end
42
42
  end
43
43
 
44
+ it 'has all the right search_only_fields' do
45
+ [
46
+ :abbrev, :account_type, :acct_corp_card_exp, :actual_production_end_date,
47
+ :actual_production_start_date, :actual_ship_date, :alt_sales_amount,
48
+ :alt_sales_net_amount, :amount, :amount_unbilled,
49
+ :applied_to_foreign_amount, :applied_to_is_fx_variance,
50
+ :applied_to_link_amount, :applied_to_link_type, :applied_to_transaction,
51
+ :applying_foreign_amount, :applying_is_fx_variance, :applying_link_amount,
52
+ :applying_link_type, :applying_transaction, :auth_code,
53
+ :auto_calculate_lag, :avs_street_match, :avs_zip_match, :billable,
54
+ :bill_address, :bill_address1, :bill_address2, :bill_address3,
55
+ :bill_addressee, :bill_attention, :bill_city, :bill_country,
56
+ :bill_country_code, :billed_date, :billing_amount, :billing_transaction,
57
+ :bill_phone, :bill_state, :bill_variance_status, :bill_zip, :bin_number,
58
+ :bin_number_quantity, :bom_quantity, :build_entire_assembly,
59
+ :build_variance, :built, :can_have_stackable_promotions, :catch_up_period,
60
+ :cc_customer_code, :cc_exp_date, :cc_holder_name, :cc_number, :cc_street,
61
+ :cc_zip_code, :cleared, :closed, :close_date, :cogs_amount,
62
+ :commission_effective_date, :commit, :component_yield,
63
+ :confirmation_number, :contribution, :contribution_primary,
64
+ :cost_component_amount, :cost_component_category, :cost_component_item,
65
+ :cost_component_quantity, :cost_component_standard_cost, :cost_estimate,
66
+ :cost_estimate_rate, :cost_estimate_type, :created_by, :credit_amount,
67
+ :csc_match, :custom_gl, :cust_type, :date_created, :days_open,
68
+ :days_overdue, :debit_amount, :defer_rev_rec, :deposit_date,
69
+ :deposit_transaction, :doc_unit, :dr_account, :effective_rate,
70
+ :entity_status, :est_gross_profit_pct, :exclude_from_rate_request,
71
+ :expected_close_date, :expected_receipt_date, :expense_category,
72
+ :expense_date, :firmed, :forecast_type, :fulfilling_transaction,
73
+ :fx_account, :fx_amount, :fx_cost_estimate, :fx_cost_estimate_rate,
74
+ :fx_est_gross_profit, :fx_tran_cost_estimate, :fx_vsoe_allocation,
75
+ :fx_vsoe_amount, :fx_vsoe_price, :gco_availabel_to_charge,
76
+ :gco_available_to_refund, :gco_avs_street_match, :gco_avs_zip_match,
77
+ :gco_buyer_account_age, :gco_buyer_ip, :gco_charge_amount,
78
+ :gco_chargeback_amount, :gco_confirmed_charged_total,
79
+ :gco_confirmed_refunded_total, :gco_creditcard_number, :gco_csc_match,
80
+ :gco_financial_state, :gco_fulfillment_state, :gco_order_id,
81
+ :gco_order_total, :gco_promotion_amount, :gco_promotion_name,
82
+ :gco_refund_amount, :gco_shipping_total, :gco_state_changed_detail,
83
+ :gift_cert, :gross_amount, :include_in_forecast, :incoterm,
84
+ :interco_status, :interco_transaction, :inventory_location,
85
+ :inventory_subsidiary, :in_vsoe_bundle, :is_allocation, :is_backflush,
86
+ :is_gco_chargeback, :is_gco_charge_confirmed, :is_gco_payment_guaranteed,
87
+ :is_gco_refund_confirmed, :is_inside_delivery, :is_inside_pickup,
88
+ :is_intercompany_adjustment, :is_in_transit_payment, :is_multi_ship_to,
89
+ :is_reversal, :is_rev_rec_transaction, :is_scrap, :is_ship_address,
90
+ :is_transfer_price_costing, :is_wip, :item, :item_fulfillment_choice,
91
+ :item_revision, :landed_cost_per_line, :line, :line_sequence_number,
92
+ :line_unique_key, :location_auto_assigned, :main_line, :main_name,
93
+ :manufacturing_routing, :match_bill_to_receipt, :memo_main, :memorized,
94
+ :merchant_account, :multi_subsidiary, :net_amount, :net_amount_no_tax,
95
+ :next_bill_date, :no_auto_assign_location, :non_reimbursable,
96
+ :one_time_total, :options, :order_allocation_strategy, :order_priority,
97
+ :originator, :other_ref_num, :overhead_parent_item,
98
+ :override_installments, :package_count, :paid_amount, :paid_transaction,
99
+ :partner_contribution, :partner_role, :partner_team_member,
100
+ :paying_amount, :paying_transaction, :payment_approved,
101
+ :payment_event_date, :payment_event_hold_reason,
102
+ :payment_event_purchase_card_used, :payment_event_purchase_data_sent,
103
+ :payment_event_result, :payment_event_type, :payment_hold,
104
+ :payment_method, :payment_option, :pay_pal_pending, :pay_pal_status,
105
+ :pay_pal_tran_id, :payroll_batch, :pn_ref_num, :po_rate, :posting,
106
+ :price_level, :print, :probability, :projected_amount, :project_task,
107
+ :purchase_order, :quantity, :quantity_billed, :quantity_committed,
108
+ :quantity_packed, :quantity_picked, :quantity_rev_committed,
109
+ :quantity_ship_recv, :quantity_uom, :rate,
110
+ :realized_gain_posting_transaction, :recur_annually_total,
111
+ :recur_monthly_total, :recur_quarterly_total, :recur_weekly_total,
112
+ :ref_number, :requested_date, :rev_commit_status,
113
+ :rev_committing_transaction, :reversal_date, :reversal_number,
114
+ :rg_account, :rg_amount, :sales_order, :sales_team_member,
115
+ :sales_team_role, :scheduling_method, :serial_number, :serial_number_cost,
116
+ :serial_number_cost_adjustment, :serial_number_quantity, :serial_numbers,
117
+ :ship_address, :ship_address1, :ship_address2, :ship_address3,
118
+ :ship_addressee, :ship_attention, :ship_carrier, :ship_city,
119
+ :ship_complete, :ship_country, :ship_country_code, :ship_group,
120
+ :ship_phone, :shipping_amount, :ship_recv_status_line, :ship_state,
121
+ :ship_to, :ship_zip, :signed_amount, :subscription, :subscription_line,
122
+ :tax_amount, :tax_code, :tax_line, :tax_period, :term_in_months,
123
+ :terms_of_sale, :title, :to_subsidiary, :tran_est_gross_profit,
124
+ :tran_fx_est_gross_profit, :transaction_discount, :transaction_line_type,
125
+ :transaction_number, :transfer_location, :transfer_order_item_line,
126
+ :transfer_order_quantity_committed, :transfer_order_quantity_packed,
127
+ :transfer_order_quantity_picked, :transfer_order_quantity_received,
128
+ :transfer_order_quantity_shipped, :type, :unit, :unit_cost_override,
129
+ :vend_type, :visible_to_customer, :vsoe_allocation, :vsoe_amount,
130
+ :vsoe_deferral, :vsoe_delivered, :vsoe_permit_discount, :vsoe_price,
131
+ :web_site,
132
+ ].each do |field|
133
+ expect(NetSuite::Records::Invoice).to have_search_only_field(field)
134
+ end
135
+ end
136
+
44
137
  it 'has the right record_refs' do
45
138
  [
46
139
  :account, :bill_address_list, :job, :custom_form, :department, :entity, :klass, :posting_period, :ship_address_list, :terms,
@@ -329,6 +422,7 @@ describe NetSuite::Records::Invoice do
329
422
  before do
330
423
  invoice.email = 'something@example.com'
331
424
  invoice.tran_id = '4'
425
+ invoice.close_date = '2021-08-04' # Search only, excluded
332
426
  end
333
427
  it 'can represent itself as a SOAP record' do
334
428
  record = {
@@ -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,