get(self::ORDER_CONF_DISPLAY_LOCKER); } public function setDisplayOrderConfirmationLocker($display) { return $this->set(self::ORDER_CONF_DISPLAY_LOCKER, (bool) $display); } public function shouldChangeOrderStateOnShipmentLabelPrinted() { return (bool) $this->get(self::CHANGE_OS_SHIPMENT_LABEL_PRINTED); } public function setChangeOrderStateOnShipmentLabelPrinted($change) { return $this->set(self::CHANGE_OS_SHIPMENT_LABEL_PRINTED, (bool) $change); } public function getShipmentLabelPrintedOrderStateId() { return (int) $this->get(self::SHIPMENT_LABEL_PRINTED_OS_ID); } public function setShipmentLabelPrintedOrderStateId($orderStateId) { return $this->set(self::SHIPMENT_LABEL_PRINTED_OS_ID, (int) $orderStateId); } public function shouldChangeOrderStateOnShipmentDelivered() { return (bool) $this->get(self::CHANGE_OS_SHIPMENT_DELIVERED); } public function setChangeOrderStateOnShipmentDelivered($change) { return $this->set(self::CHANGE_OS_SHIPMENT_DELIVERED, (bool) $change); } public function getShipmentDeliveredOrderStateId() { return (int) $this->get(self::SHIPMENT_DELIVERED_OS_ID); } public function setShipmentDeliveredOrderStateId($orderStateId) { return $this->set(self::SHIPMENT_DELIVERED_OS_ID, (int) $orderStateId); } }