summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMqdd <ahmadmiqdad27@gmail.com>2026-01-19 22:26:55 +0700
committerMqdd <ahmadmiqdad27@gmail.com>2026-01-19 22:26:55 +0700
commit7e52c025439a8614a1ec6ae77dfdda934989a09b (patch)
tree90e4ca45af0de249e20aff0bd4c0ba068f9cf337
parentbbffc7f7092ad28994d511b3b7022e55b07ec2a8 (diff)
<Miqdad> change string
-rw-r--r--indoteknik_custom/models/gudang_service.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/indoteknik_custom/models/gudang_service.py b/indoteknik_custom/models/gudang_service.py
index e401a65c..d4f7397c 100644
--- a/indoteknik_custom/models/gudang_service.py
+++ b/indoteknik_custom/models/gudang_service.py
@@ -29,7 +29,7 @@ class GudangService(models.Model):
done_date = fields.Datetime(string='Date Done', copy=False, tracking=True)
gudang_service_lines = fields.One2many('gudang.service.line', 'gudang_service_id', string='Gudang Service Lines')
- remaining_date = fields.Char('Remaining Date', compute='_compute_remaining_date')
+ remaining_date = fields.Char('Unprocessed Since', compute='_compute_remaining_date')
state = fields.Selection([('draft', 'Backlog'), ('onprogress', 'On Progress'),('done', 'Done'), ('cancel', 'Cancel')], default='draft', tracking=True)
cancel_reason = fields.Text('Cancel Reason', tracking=True)
@@ -117,7 +117,7 @@ class GudangService(models.Model):
end = today
days = (end - start).days
- rec.remaining_date = _("Since %s days") % days
+ rec.remaining_date = _("%s days") % days