Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
DocumentationGroup
DocumentationBackend
Commits
4fe4b79c
Commit
4fe4b79c
authored
2 weeks ago
by
Andrey Galan
Browse files
Options
Downloads
Patches
Plain Diff
фикс калькулятора объемов
parent
8a622f9e
Branches
main
No related merge requests found
Pipeline
#1320
passed with stages
in 2 minutes and 42 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/com/documentation/volume/service/strategyVolume/CalculationPracticeVolume.java
+3
-3
...ume/service/strategyVolume/CalculationPracticeVolume.java
with
3 additions
and
3 deletions
src/main/java/com/documentation/volume/service/strategyVolume/CalculationPracticeVolume.java
+
3
−
3
View file @
4fe4b79c
...
...
@@ -52,9 +52,9 @@ public class CalculationPracticeVolume implements CalculationVolumeStrategy {
volumePracticeDTO
.
setNumberSubgroups
(
contingent
.
getNumberSubgroups
());
volumePracticeDTO
.
setNumberLectureStreams
(
contingent
.
getNumberLectureStreams
());
volumePracticeDTO
.
setContingentContract
(
contingent
.
getContingentContract
());
volumePracticeDTO
.
setContingentBudget
(
contingent
.
getContingentBudget
());
volumePracticeDTO
.
setContingentForeign
(
contingent
.
getContingentForeign
());
volumePracticeDTO
.
setContingentContract
(
contingent
.
getContingentContract
()
!=
null
?
contingent
.
getContingentContract
()
:
0
);
volumePracticeDTO
.
setContingentBudget
(
contingent
.
getContingentBudget
()
!=
null
?
contingent
.
getContingentBudget
()
:
0
);
volumePracticeDTO
.
setContingentForeign
(
contingent
.
getContingentForeign
()
!=
null
?
contingent
.
getContingentForeign
()
:
0
);
volumePracticeDTO
.
setCourse
(
practice
.
getCourse
());
volumePracticeDTO
.
setSemester
(
practice
.
getSemester
());
volumePracticeDTO
.
setDisciplineHours
(
practice
.
getDisciplineHours
());
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets