@chevre/domain 28.0.0-alpha.1 → 28.0.0-alpha.2
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/lib/chevre/repo/order.js +3 -1
- package/package.json +1 -1
package/lib/chevre/repo/order.js
CHANGED
|
@@ -613,7 +613,9 @@ class OrderRepo {
|
|
|
613
613
|
orderNumber: params.orderNumber,
|
|
614
614
|
project: { id: params.project.id },
|
|
615
615
|
inclusion: [
|
|
616
|
-
'project', 'typeOf', 'orderNumber',
|
|
616
|
+
'project', 'typeOf', 'orderNumber',
|
|
617
|
+
'orderStatus', // すでに変更済かどうか検証するので必要
|
|
618
|
+
'dateReturned',
|
|
617
619
|
'customer', 'returner', 'seller', 'price', 'priceCurrency', 'orderDate'
|
|
618
620
|
]
|
|
619
621
|
});
|
package/package.json
CHANGED