diff options
| author | trisusilo48 <tri.susilo@altama.co.id> | 2025-04-16 14:33:31 +0700 |
|---|---|---|
| committer | trisusilo48 <tri.susilo@altama.co.id> | 2025-04-16 14:33:31 +0700 |
| commit | fb50d10576f2e5d16faba612dfd1565f7168f655 (patch) | |
| tree | 4732e28fe569e6adbdf621f5f54b9b80d4a0ccb1 /indoteknik_custom | |
| parent | b3e915fa8d2f280d76ca1afb19e729804aeed6e6 (diff) | |
FEEDBACK
Diffstat (limited to 'indoteknik_custom')
| -rw-r--r-- | indoteknik_custom/models/stock_picking.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indoteknik_custom/models/stock_picking.py b/indoteknik_custom/models/stock_picking.py index 4a200ac5..f2b69b55 100644 --- a/indoteknik_custom/models/stock_picking.py +++ b/indoteknik_custom/models/stock_picking.py @@ -1406,7 +1406,10 @@ class StockPicking(models.Model): "delivered": status } - return manifests + return { + "manifests": [], + "delivered": False + } except Exception as e : _logger.error(f"Error fetching Biteship order for picking {self.id}: {str(e)}") return { 'error': str(e) } |
