Skip to content

Commit

Permalink
Fixed inkind entitlement issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkumar-02 committed Jan 17, 2024
1 parent 724d854 commit 21d908e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion g2p_entitlement_in_kind/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"website": "https://openg2p.org",
"license": "Other OSI approved licence",
"development_status": "Alpha",
"depends": ["spp_programs", "spp_entitlement_in_kind"],
"depends": ["spp_programs", "spp_entitlement_in_kind", "spp_service_points"],
"data": [
"views/in_kind.xml",
],
Expand Down
2 changes: 1 addition & 1 deletion g2p_programs/models/entitlement.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def _generate_code(self):

ern = fields.Char(
compute="_compute_generate_ern",
string="ERN",
string="ERN",
readonly=True,
copy=False,
store=True,
Expand Down
2 changes: 1 addition & 1 deletion g2p_programs/models/payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,4 +177,4 @@ class G2PPaymentBatchTag(models.Model):

domain = fields.Text(default="[]")

max_batch_size = fields.Integer(default=500)
max_batch_size = fields.Integer(default=500)

0 comments on commit 21d908e

Please sign in to comment.