From 3005e34b8ec65bef44f722a9a0576227a41690fc Mon Sep 17 00:00:00 2001 From: mrfoxygmfr Date: Sun, 4 May 2025 11:56:37 +0300 Subject: feat: operation creation, view and manage --- src/main/resources/templates/operationEdit.html | 10 --- .../resources/templates/operationProductEdit.html | 28 +++++++ .../resources/templates/operationProductNew.html | 85 ++++++++++++++++++++++ .../resources/templates/operationProducts.html | 48 ++++++++++++ src/main/resources/templates/operationView.html | 58 +++++++++++++++ 5 files changed, 219 insertions(+), 10 deletions(-) delete mode 100644 src/main/resources/templates/operationEdit.html create mode 100644 src/main/resources/templates/operationProductEdit.html create mode 100644 src/main/resources/templates/operationProductNew.html create mode 100644 src/main/resources/templates/operationProducts.html create mode 100644 src/main/resources/templates/operationView.html (limited to 'src/main/resources/templates') diff --git a/src/main/resources/templates/operationEdit.html b/src/main/resources/templates/operationEdit.html deleted file mode 100644 index 566549b..0000000 --- a/src/main/resources/templates/operationEdit.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - - Title - - - - - \ No newline at end of file diff --git a/src/main/resources/templates/operationProductEdit.html b/src/main/resources/templates/operationProductEdit.html new file mode 100644 index 0000000..f764c80 --- /dev/null +++ b/src/main/resources/templates/operationProductEdit.html @@ -0,0 +1,28 @@ + + +
+ + +
+ +
+
+ + + + +

+ +

+ + +
+
+ + +
+
+
+ + + \ No newline at end of file diff --git a/src/main/resources/templates/operationProductNew.html b/src/main/resources/templates/operationProductNew.html new file mode 100644 index 0000000..c5f68b7 --- /dev/null +++ b/src/main/resources/templates/operationProductNew.html @@ -0,0 +1,85 @@ + + +
+ + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Фильтры
Название + +
Высота + от + до +
Ширина + от + до +
Глубина + от + до +
+
+ + + + + + + + + + + + + + + + + + + +
НазваниеГабариты (В*Ш*Г)Добавить
Данному фильтру не удовлетворяет ни одного продукта.
+ + + + + + + + + +
+
+ +
+
+ + \ No newline at end of file diff --git a/src/main/resources/templates/operationProducts.html b/src/main/resources/templates/operationProducts.html new file mode 100644 index 0000000..f3997b4 --- /dev/null +++ b/src/main/resources/templates/operationProducts.html @@ -0,0 +1,48 @@ + + +
+ + +
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + +
НазваниеГабариты (В*Ш*Г)Количество
В операции нет ни одного продукта.
+ + + + + + + + + +
+
+ +
+
+ + \ No newline at end of file diff --git a/src/main/resources/templates/operationView.html b/src/main/resources/templates/operationView.html new file mode 100644 index 0000000..37631b8 --- /dev/null +++ b/src/main/resources/templates/operationView.html @@ -0,0 +1,58 @@ + + +
+ + +
+ +
+ + +
+ + +

+ +

+ + +

+
+ + +

+ + +

+ +

+

+

+ + +
+
+ + +
+
+
+ + + \ No newline at end of file -- cgit mrf-deployment