active) { $this->webserviceParameters['fields']['inpost_point'] = [ 'getter' => 'getWsInPostPoint', 'setter' => false, ]; } return parent::getWebserviceParameters($ws_params_attribute_name); } /* * module: inpostshipping * date: 2022-11-17 14:33:55 * version: 1.12.0 */ public function getWsInPostPoint() { if (class_exists('InPostCartChoiceModel')) { $choice = new InPostCartChoiceModel($this->id_cart); if (Validate::isLoadedObject($choice) && 'inpost_locker_standard' === $choice->service) { return $choice->point; } } return null; } }