@pinelab/vendure-plugin-qls-fulfillment 1.0.0-beta.21 → 1.0.0-beta.22
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.
|
@@ -174,6 +174,7 @@ let QlsOrderService = class QlsOrderService {
|
|
|
174
174
|
* Update the status of an order in QLS based on the given order code and status
|
|
175
175
|
*/
|
|
176
176
|
async handleOrderStatusUpdate(ctx, body) {
|
|
177
|
+
core_2.Logger.info(`Handling QLS order status update for order '${body.customer_reference}' with status '${body.status} and amount_delivered '${body.amount_delivered}' and amount_total '${body.amount_total}'`, constants_1.loggerCtx);
|
|
177
178
|
const orderCode = body.customer_reference;
|
|
178
179
|
const order = await this.orderService.findOneByCode(ctx, orderCode, []);
|
|
179
180
|
if (!order) {
|