diff options
| author | Indoteknik . <it@fixcomart.co.id> | 2025-05-19 09:10:28 +0700 |
|---|---|---|
| committer | Indoteknik . <it@fixcomart.co.id> | 2025-05-19 09:10:28 +0700 |
| commit | 5ef4a7e21e3dc3fc3ddebf002586c9e39c42a64b (patch) | |
| tree | a254896e65760a4e4af159ac3d091b8300f18dc4 /indoteknik_api/controllers/api_v1 | |
| parent | 0f7e05108336ea9de64348783cbec6e97edd1d64 (diff) | |
| parent | 847a025e889ae9dcfe9ff97c913c9310695fc2c5 (diff) | |
Merge branch 'feature/feedback_bitehisp' of https://bitbucket.org/altafixco/indoteknik-addons into select-shipping
Diffstat (limited to 'indoteknik_api/controllers/api_v1')
| -rw-r--r-- | indoteknik_api/controllers/api_v1/product.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indoteknik_api/controllers/api_v1/product.py b/indoteknik_api/controllers/api_v1/product.py index ecd37cda..e97a7ff8 100644 --- a/indoteknik_api/controllers/api_v1/product.py +++ b/indoteknik_api/controllers/api_v1/product.py @@ -50,7 +50,8 @@ class Product(controller.Controller): jakarta = pytz.timezone("Asia/Jakarta") start_date = datetime.now(jakarta) - additional_days = request.env['sale.order'].get_days_until_next_business_day(start_date) + offset, is3pm = request.env['sale.order'].get_days_until_next_business_day(start_date) + additional_days = offset include_instant = True |
