-
Notifications
You must be signed in to change notification settings - Fork 301
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
Delete customer who has open balance #390
Comments
Yep. You cannot delete^1 a Customer with an open balance.
^1 FWIW: Technically, you can't delete a name list resource. You are
attempting to de-activate a Customer (`active = false`).
…On Fri, Jul 21, 2017 at 5:05 AM, puneetimpinge ***@***.***> wrote:
How can I delete a customer who has open balance?
oauth_client = OAuth::AccessToken.new($qb_oauth_consumer, qbo.token,
qbo.secret)
@service <https://github.com/service> = Quickbooks::Service::Customer.new
@service.access_token = oauth_client
@service.realm_id = qbo.realm_id
customer = @service <https://github.com/service>.find_by(:company_name, @
store.name).first
@service.delete(customer)
Error message:
Quickbooks::IntuitRequestException: Delete List Has Balance Error:
The entity you are trying to delete has an open balance. : This customer
cannot be deleted because it has a non-zero balance
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#390>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAMMtjofXAA9SY-Y4t3738QrP4R9ClPZks5sQGnFgaJpZM4OfJSL>
.
|
Is there any way in apis to deactivate a customer? |
Do a sparse update sending `active: false` in the payload`
…On Mon, Jul 24, 2017 at 2:53 AM, puneetimpinge ***@***.***> wrote:
Is there any way in apis to deactivate a customer?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#390 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAMMtsi6DcPA25Y42_89T1hCXXHPGzKUks5sRD9_gaJpZM4OfJSL>
.
|
it doesn't help |
How can I delete a customer who has open balance?
oauth_client = OAuth::AccessToken.new($qb_oauth_consumer, qbo.token, qbo.secret)
@service = Quickbooks::Service::Customer.new
@service.access_token = oauth_client
@service.realm_id = qbo.realm_id
customer = @service.find_by(:company_name, @store.name).first
@service.delete(customer)
Error message:
Quickbooks::IntuitRequestException: Delete List Has Balance Error:
The entity you are trying to delete has an open balance. : This customer cannot be deleted because it has a non-zero balance
The text was updated successfully, but these errors were encountered: