README.md in netsuite-0.4.7 vs README.md in netsuite-0.4.8
- old
+ new
@@ -381,9 +381,17 @@
# allow inclomplete results (defaults to false)
allow_incomplete: true
).each do |record|
# do your thing...
end
+
+# Adding a Customer Deposit example. The customer associated with the
+# sales order would be linked to the deposit.
+
+deposit = CustomerDeposit.new
+deposit.sales_order = RecordRef.new(internal_id: 7279)
+deposit.payment = 20
+deposit.add
```
#### Non-standard Operations
```ruby