Skip to content

Commit

Permalink
Merge pull request #80 from agritheory/disable_overconsumption_check
Browse files Browse the repository at this point in the history
fix: disable overconsumption check
  • Loading branch information
HKuz committed Nov 29, 2023
2 parents 5780b16 + 90c4be9 commit 964f4fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions beam/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"beam.beam.handling_unit.generate_handling_units",
],
"validate": [
"beam.beam.handling_unit.validate_handling_unit_overconsumption",
# "beam.beam.handling_unit.validate_handling_unit_overconsumption",
],
},
"Purchase Invoice": {
Expand All @@ -134,20 +134,20 @@
},
"Stock Entry": {
"validate": [
"beam.beam.handling_unit.validate_handling_unit_overconsumption",
# "beam.beam.handling_unit.validate_handling_unit_overconsumption",
],
"before_submit": [
"beam.beam.handling_unit.generate_handling_units",
],
},
"Sales Invoice": {
"validate": [
"beam.beam.handling_unit.validate_handling_unit_overconsumption",
# "beam.beam.handling_unit.validate_handling_unit_overconsumption",
],
},
"Delivery Note": {
"validate": [
"beam.beam.handling_unit.validate_handling_unit_overconsumption",
# "beam.beam.handling_unit.validate_handling_unit_overconsumption",
],
},
}
Expand Down

0 comments on commit 964f4fc

Please sign in to comment.