This commit is contained in:
nflnkr 2023-07-03 13:31:46 +03:00
parent 0572d31178
commit 0620beeaeb
4 changed files with 4 additions and 4 deletions

@ -143,7 +143,7 @@ export default function CreateTariff() {
labelId="privilege-select-label"
id="privilege-select"
value={privilegeIdField}
label="Привелегия"
label="Привилегия"
onChange={(e) => setPrivilegeIdField(e.target.value)}
sx={{
color: theme.palette.secondary.main,

@ -6,7 +6,7 @@ import { addMergedPrivileges } from "@root/stores/mergedPrivileges";
const columns: GridColDef[] = [
{ field: "id", headerName: "id", width: 40 },
{ field: "name", headerName: "Привелегия", width: 150 },
{ field: "name", headerName: "Привилегия", width: 150 },
{ field: "description", headerName: "Описание", width: 550 }, //инфо из гитлаба.
{ field: "type", headerName: "Тип", width: 150 },
{ field: "price", headerName: "Стоимость", width: 100 },

@ -71,7 +71,7 @@ export default function Tariffs() {
alignItems: "center",
}}
>
<Typography variant="h6">Список привелегий</Typography>
<Typography variant="h6">Список привилегий</Typography>
<Privileges />

@ -102,7 +102,7 @@ export default function TariffsDG({ selectedTariffs, handleSelectionChange, getT
{ field: "name", headerName: "Название тарифа", width: 150 },
{ field: "amount", headerName: "Количество", width: 110 },
{ field: "serviceName", headerName: "Сервис", width: 150 }, //инфо из гитлаба.
{ field: "privilegeName", headerName: "Привелегия", width: 150 },
{ field: "privilegeName", headerName: "Привилегия", width: 150 },
{ field: "type", headerName: "Единица", width: 100 },
{ field: "pricePerUnit", headerName: "Цена за ед.", width: 100 },
{ field: "customPricePerUnit", headerName: "Кастомная цена", width: 130 },