feat: #6942 Create Ticket or Order with data filtered by clientId
gitea/salix-front/pipeline/pr-master This commit looks good
Details
gitea/salix-front/pipeline/pr-master This commit looks good
Details
This commit is contained in:
parent
0b752cdb0d
commit
5770c344c8
|
@ -173,7 +173,12 @@ const setData = (entity) => (data.value = useCardDescription(entity?.name, entit
|
||||||
target="_blank"
|
target="_blank"
|
||||||
:to="{
|
:to="{
|
||||||
name: 'TicketList',
|
name: 'TicketList',
|
||||||
query: { createForm: JSON.stringify({ clientId: entity.id }) },
|
query: {
|
||||||
|
table: JSON.stringify({
|
||||||
|
clientFk: entity.id,
|
||||||
|
}),
|
||||||
|
createForm: JSON.stringify({ clientId: entity.id }),
|
||||||
|
},
|
||||||
}"
|
}"
|
||||||
size="md"
|
size="md"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
@ -205,7 +210,12 @@ const setData = (entity) => (data.value = useCardDescription(entity?.name, entit
|
||||||
<QBtn
|
<QBtn
|
||||||
:to="{
|
:to="{
|
||||||
name: 'OrderList',
|
name: 'OrderList',
|
||||||
query: { createForm: JSON.stringify({ clientFk: entity.id }) },
|
query: {
|
||||||
|
table: JSON.stringify({
|
||||||
|
clientFk: entity.id,
|
||||||
|
}),
|
||||||
|
createForm: JSON.stringify({ clientFk: entity.id }),
|
||||||
|
},
|
||||||
}"
|
}"
|
||||||
size="md"
|
size="md"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
|
Loading…
Reference in New Issue