mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 09:47:10 +00:00
fix(save-record): differentiate between creation and updating based on record.isNew (#3620)
This commit is contained in:
parent
4716c13d81
commit
5ca1827e7e
@ -11,6 +11,7 @@ import { useReactToPrint } from 'react-to-print';
|
||||
import {
|
||||
AssociationFilter,
|
||||
useCollectionManager,
|
||||
useCollectionRecord,
|
||||
useDataSourceHeaders,
|
||||
useFormActiveFields,
|
||||
useFormBlockContext,
|
||||
@ -180,6 +181,8 @@ export function useCollectValuesToSubmit() {
|
||||
}
|
||||
|
||||
export const useCreateActionProps = () => {
|
||||
const filterByTk = useFilterByTk();
|
||||
const record = useCollectionRecord();
|
||||
const form = useForm();
|
||||
const { field, resource, __parent } = useBlockRequestContext();
|
||||
const { setVisible } = useActionContext();
|
||||
@ -191,7 +194,7 @@ export const useCreateActionProps = () => {
|
||||
const { t } = useTranslation();
|
||||
const { updateAssociationValues } = useFormBlockContext();
|
||||
const collectValues = useCollectValuesToSubmit();
|
||||
const action = actionField.componentProps.saveMode || 'create';
|
||||
const action = record.isNew ? 'create' : 'update';
|
||||
const filterKeys = actionField.componentProps.filterKeys?.checked || [];
|
||||
return {
|
||||
async onClick() {
|
||||
@ -207,6 +210,7 @@ export const useCreateActionProps = () => {
|
||||
const data = await resource[action]({
|
||||
values,
|
||||
filterKeys: filterKeys,
|
||||
filterByTk,
|
||||
// TODO(refactor): should change to inject by plugin
|
||||
triggerWorkflows: triggerWorkflows?.length
|
||||
? triggerWorkflows.map((row) => [row.workflowKey, row.context].filter(Boolean).join('!')).join(',')
|
||||
|
Loading…
Reference in New Issue
Block a user