Question

"Copy" section action button

Hi colleagues,

I am searching for a way to add/remove fields to be copied when clicking the Copy button on Quote Section (section actions).

Could anyone, kindly, share any reference on how to customize that?

thanks a lot.

Like 0

Like

5 comments

Please modify the section edit page with a section wizard, then go to the configuration section, find a newly created UsrQuotesSection module, open it, add the "remove" block to the diff and save it. 

 

define("AccountSectionV2", [], function() {

    return {

        entitySchemaName: "Account",

        details: /**SCHEMA_DETAILS*/{}/**SCHEMA_DETAILS*/,

        diff: /**SCHEMA_DIFF*/[

            {

                "operation": "remove",

                "name": "DataGridActiveRowCopyAction"

            }

        ]/**SCHEMA_DIFF*/,

        methods: {}

    };

});


 

Eugene Podkovka,

Hi Eugene, thanks for your message. I am actually looking for a way to select what fields should be copied. For instance, when user copies a quote, I would like to copy 2 new fields (Usr´s fields) + the Product list (OpportunityProductInteress entries from the original quote).

Thanks

Danilo Lage,

You can select which fields are copied in the object designer, with the 'Make copy' checkbox.

Unfortunately, this doesn't work for the contents of detail objects.

Darian Lewis,

Hi Darian, thanks for you message. Appreciate.

Let´s implement the detail object copy, then.

Danilo Lage writes:

Darian Lewis,

Hi Darian, thanks for you message. Appreciate.

Let´s implement the detail object copy, then.

Any comments about this implementation?? 

Show all comments