English
md.clone.after
About 145 wordsLess than 1 minute
2025-09-22
Post-action after copying.
- Suitable for processing data that is about to be added through copy
dataGettercannot retrieve the data that is about to be added- Calculation and UI events are about to be triggered
Parameters
| Parameter | Description | Type |
|---|---|---|
| objApiName | api_name of the object whose data is currently changing | String |
| recordType | Business type of the data currently changing | String |
| copyDataIndexs | Index list of source data to be copied | Array |
| newDatas | Data that will be added. dataIndex has already been generated, and elements in newDatas can be modified directly in the plugin | Array |
Return Value
| Parameter | Description | Type |
|---|---|---|
| consumed | true means subsequent logic will not continue | Boolean |
| notTriggerCalUi | Specifies that this calculation/UI event should not be triggered | Boolean |
| extraCalUiParams | Parameters used to customize the upcoming calculation/UI event logic | Object |
Notes
- Directly assigning
newDatasitself is meaningless, for example:options.newDatas=[]
