-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Searching Custom record type missing attribute #71
Comments
++ @f1crazed I guess this is something related to your request, was merged recently: 35b6d9a @Sravanksk Are there any recommendations on how to do the search correctly? As for me, I'm experiencing problems with |
@bazarnov currently, the search functionality in the SDK works only on string fields. Search on date fields is not yet implemented. Please check this code block once. We'll have to add support to search on It would be great if you could add the functionality to the SDK. I will look into this sometime this week Thanks |
@Sravanksk It would be perfect if you could spend some time looking into this, giving some practical advice on one hand, and having the ready solution on the other. Will check the code and try for myself in a meanwhile. P.S.: new to NetSuite API in general, not sure how to check the right params to pass, so your assistance is appreciated. |
Doing a search as follows:
cust_recs = nc.custom_record_types.search('field name', 'value', 'contains')
produces the following error:
netsuitesdk\internal\client.py", line 524, in basic_stringfield_search
search_cls = getattr(self, search_cls_name)
AttributeError: 'NetSuiteClient' object has no attribute 'CustomRecordTypeSearchBasic'
The text was updated successfully, but these errors were encountered: