View | Details | Raw Unified | Return to bug 19120
Collapse All | Expand All

(-)a/C4/Acquisition.pm (-2 / +1 lines)
Lines 264-270 sub ReopenBasket { Link Here
264
        UPDATE aqorders
264
        UPDATE aqorders
265
        SET orderstatus = 'new'
265
        SET orderstatus = 'new'
266
        WHERE basketno = ?
266
        WHERE basketno = ?
267
        AND orderstatus != 'complete'
267
        AND orderstatus NOT IN ( 'complete', 'cancelled' )
268
        }, {}, $basketno);
268
        }, {}, $basketno);
269
    return;
269
    return;
270
}
270
}
271
- 

Return to bug 19120