|
@@ -1693,7 +1693,13 @@ class Systemprint extends Start_Controller {
|
|
|
}
|
|
|
}elseif(($fullorder['printcode'] == "3PE_XB") || ($fullorder['printcode'] == "3PE_NONBOX")){
|
|
|
if($fullorder['printnumber'] > 0){
|
|
|
- $this->itsxb->cancel_order($fullorder['number']);
|
|
|
+ $tmp_number = $fullorder['number'];
|
|
|
+ $tmp_printnumber = $fullorder['printnumber'] - 1;
|
|
|
+
|
|
|
+ if($tmp_printnumber > 0){
|
|
|
+ $tmp_number = $tmp_number."_".$tmp_printnumber;
|
|
|
+ }
|
|
|
+ $this->itsxb->cancel_order($tmp_number);
|
|
|
}
|
|
|
$barcode = $this->itsxb->get_data($fullorder);
|
|
|
if($barcode['x'] == 1)
|