stone-kit 0.0.512 → 0.0.514
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -223,6 +223,8 @@ export interface ILot {
|
|
|
223
223
|
isDecoration?: boolean | null;
|
|
224
224
|
/** С мокрой точкой */
|
|
225
225
|
isWaterPipes?: boolean | null;
|
|
226
|
+
/** id проекта */
|
|
227
|
+
projectId?: number | null;
|
|
226
228
|
/** Данные всего проекта */
|
|
227
229
|
project?: IProject | null;
|
|
228
230
|
/** Забронировано или нет????? */
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
const s = (r,
|
|
2
|
-
if (!r &&
|
|
3
|
-
return "";
|
|
1
|
+
const s = (r, t, o) => {
|
|
2
|
+
if (!r && o === 2)
|
|
3
|
+
return " ";
|
|
4
4
|
if (!r)
|
|
5
5
|
return "Цена по запросу";
|
|
6
|
-
const e =
|
|
6
|
+
const e = t ? " ₽/м²" : " ₽";
|
|
7
7
|
return Number(r).toLocaleString() + e;
|
|
8
8
|
};
|
|
9
9
|
export {
|