Creating a Quote from Accounts doesn´t link anything

If a strange behaviour, but i am not sure how to fix it.

I am on an Account. There are two Subpanels "Quote (Bill to)" and "Qoute (Ship to)".

Every other [+] on the other Subpanels opens the "Overlay" and links the account together.

On the "Quotes" [+] it jumps to "/#Quotes/create"

On this page there is a Select Account dropdown as a mandatory field.

It´s an installation i make the support and i am not sure if some future developer made something crazy or if it works currently as designed.

What i would achive is:

Click [+] on the Account Subpanel "Quote (Bill to)" and the current selected Account is used as default "BILLING_ACCOUNT".

Any ideas or suggestions?

There is no vardefs Overwrite so far as i  can see.

Any help appreciated.

Parents Reply
  • Michael,

    Andre is correct that the file should be extending from 'QuotesCreateView' but your main issue is that this custom create.js file is actually doing nothing at all. It is simply calling the parent version of initialize() then making a call to an API endpoint that it does nothing with. Your "success(response)" function only has a comment line in it so it is doing nothing with the API response.

    I'd guess your best bet is just to remove this custom create.js until you find out what the developer was trying to do with it. It is not performing any function that I can see (unless it is just trying to ensure that the API call gets made but is not worried about what it returns!) and is incorrectly extending anyway.

    This is probably why the correct default behaviour works for you when you don't have this file.

    Thanks,

    JH.

Children