If the site does not want to complete the remaining picks do the following:
1. Update the carton status to 65.
> update carton set status =65 where status =0;
81 row(s) updated.
2. Update the orderl status to 1.
> select unique status from orderl;
status
0
1
11
3 row(s) retrieved.
> update orderl set status =1 where status =0;
81 row(s) updated.
3. Update the eporder status to 71.
> select unique status from eporder;
status
3
71
2 row(s) retrieved.
> update eporder set status =71 where status =3;
39 row(s) updated.
> select unique status from eporder;
status
71
1 row(s) retrieved.