@infrab4a/connect-angular 5.3.1-beta.5 → 5.3.1-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/services/order-product-review.service.mjs +5 -5
- package/fesm2015/infrab4a-connect-angular.mjs +4 -4
- package/fesm2015/infrab4a-connect-angular.mjs.map +1 -1
- package/fesm2020/infrab4a-connect-angular.mjs +4 -4
- package/fesm2020/infrab4a-connect-angular.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2996,6 +2996,10 @@ class OrderProductReviewService {
|
|
|
2996
2996
|
email: email,
|
|
2997
2997
|
},
|
|
2998
2998
|
status: OrderStatus.ENTREGUE,
|
|
2999
|
+
createdAt: {
|
|
3000
|
+
operator: Where.GTE,
|
|
3001
|
+
value: new Date(2024, 0, 0, 0, 0, 0).getTime(),
|
|
3002
|
+
},
|
|
2999
3003
|
},
|
|
3000
3004
|
orderBy: {
|
|
3001
3005
|
createdAt: 'desc',
|
|
@@ -3010,10 +3014,6 @@ class OrderProductReviewService {
|
|
|
3010
3014
|
filters: {
|
|
3011
3015
|
orderId: { operator: Where.IN, value: [order.id, order.orderNumber].filter(Boolean) },
|
|
3012
3016
|
productId: item.id,
|
|
3013
|
-
createdAt: {
|
|
3014
|
-
operator: Where.GTE,
|
|
3015
|
-
value: new Date(2024, 0, 0, 0, 0, 0),
|
|
3016
|
-
},
|
|
3017
3017
|
},
|
|
3018
3018
|
})
|
|
3019
3019
|
.then((res) => res.data.at(0));
|