feat: disabling accounting for deals and groups
This commit is contained in:
@@ -320,13 +320,16 @@ const Content: FC<Props> = ({ deal }) => {
|
||||
disabled
|
||||
/>
|
||||
<Checkbox
|
||||
label={"Сделка завершена"}
|
||||
{...form.getInputProps("isCompleted")}
|
||||
label={"Учет выручки"}
|
||||
{...form.getInputProps("isAccounted", { type: "checkbox" })}
|
||||
/>
|
||||
|
||||
<Checkbox
|
||||
label={"Сделка удалена"}
|
||||
{...form.getInputProps("isDeleted")}
|
||||
label={"Завершена"}
|
||||
{...form.getInputProps("isCompleted", { type: "checkbox" })}
|
||||
/>
|
||||
<Checkbox
|
||||
label={"Удалена"}
|
||||
{...form.getInputProps("isDeleted", { type: "checkbox" })}
|
||||
/>
|
||||
</Flex>
|
||||
</Flex>
|
||||
|
||||
Reference in New Issue
Block a user