7 | =__('Sendcloud | The Number 1 Shipping Tool | Contact ');?> 8 | Sendcloud =__('for support and more information.');?> 9 |
├── Checkout ├── Repository │ └── .gitkeep ├── Services │ ├── ProxyService.php │ ├── CurrencyService.php │ ├── DeliveryZoneSetupService.php │ └── DeliveryMethodSetupService.php ├── Contracts │ ├── CheckoutServiceFactoryInterface.php │ └── CheckoutConfiguratorFactoryInterface.php └── Factories │ └── CheckoutConfiguratorFactory.php ├── view ├── adminhtml │ ├── web │ │ ├── css │ │ │ ├── servicepoint.less │ │ │ ├── branding.css │ │ │ └── style.css │ │ ├── js │ │ │ └── form │ │ │ │ └── elements │ │ │ │ └── container.js │ │ └── images │ │ │ └── sendcloud-menu.svg │ ├── templates │ │ └── system │ │ │ └── config │ │ │ ├── form │ │ │ ├── general_message.phtml │ │ │ └── plugin_version.phtml │ │ │ ├── branding.phtml │ │ │ ├── button │ │ │ └── button.phtml │ │ │ └── modal │ │ │ └── data.phtml │ ├── layout │ │ ├── default.xml │ │ ├── sales_order_view.xml │ │ └── sendcloud_configuration_index.xml │ └── ui_component │ │ └── shipping_rates.xml └── frontend │ ├── web │ ├── template │ │ ├── checkout │ │ │ └── shipping │ │ │ │ ├── checkout.html │ │ │ │ └── servicePoint.html │ │ ├── sc-method-list-template.html │ │ └── sc-method-item-template.html │ ├── js │ │ ├── model │ │ │ ├── shipping-rates-validation-rules.js │ │ │ ├── shipping-save-processor │ │ │ │ ├── payload-extender-mixin.js │ │ │ │ └── mageplaza.js │ │ │ └── shipping-rates-validator.js │ │ ├── checkout │ │ │ ├── nominatedDay │ │ │ │ ├── placeOrder.js │ │ │ │ ├── validate.js │ │ │ │ └── shipping.js │ │ │ ├── servicePoint │ │ │ │ ├── placeOrder.js │ │ │ │ ├── validate.js │ │ │ │ └── shipping.js │ │ │ ├── action │ │ │ │ └── reset-service-point.js │ │ │ ├── amasty.js │ │ │ ├── payload-extender.js │ │ │ └── mageplaza.js │ │ ├── servicePoint │ │ │ ├── mixins │ │ │ │ ├── placeOrder.js │ │ │ │ ├── validate.js │ │ │ │ ├── shipping.js │ │ │ │ ├── payload-extender.js │ │ │ │ ├── amasty-servicepoint.js │ │ │ │ └── mageplaza-servicepoint.js │ │ │ └── action │ │ │ │ └── reset-service-point.js │ │ ├── view │ │ │ └── shipping-rates-validation │ │ │ │ ├── sendcloud.js │ │ │ │ └── sendcloud-checkout.js │ │ ├── action │ │ │ └── select-shipping-method-mixin.js │ │ └── mixins │ │ │ ├── view │ │ │ └── review │ │ │ │ └── placeOrder.js │ │ │ └── checkout │ │ │ └── view │ │ │ ├── shipping-information.js │ │ │ └── shipping-mixin.js │ └── css │ │ └── source │ │ └── _module.less │ ├── layout │ ├── sales_order_view.xml │ ├── sc_sales_email_order_shipment_track.xml │ ├── multishipping_checkout_shipping.xml │ └── multishipping_checkout_overview.xml │ ├── templates │ ├── checkout │ │ └── multishipping.phtml │ ├── js.phtml │ └── email │ │ └── shipment │ │ └── track.phtml │ └── requirejs-config.js ├── Exceptions └── SendcloudException.php ├── Api ├── ModuleInformationInterface.php ├── SettingsInterface.php ├── DeliveryMethodNames.php ├── ServicePointInterface.php ├── ConfigInterface.php └── CheckoutConfigurationInterface.php ├── registration.php ├── CheckoutCore ├── Contracts │ ├── Utility │ │ └── WeightUnits.php │ ├── SchemaProviders │ │ └── SchemaProvider.php │ ├── Services │ │ ├── CurrencyService.php │ │ ├── DeliveryZoneSetupService.php │ │ ├── DeliveryMethodSetupService.php │ │ ├── DeliveryZoneService.php │ │ └── DeliveryMethodService.php │ ├── Proxies │ │ └── CheckoutProxy.php │ ├── Validators │ │ └── RequestValidator.php │ └── Facades │ │ └── CheckoutService.php ├── Exceptions │ ├── Unit │ │ └── UnitNotSupportedException.php │ ├── BaseException.php │ ├── HTTP │ │ └── HttpException.php │ ├── DTO │ │ └── DTOValidationException.php │ ├── Domain │ │ ├── FailedToDeleteCheckoutConfigurationException.php │ │ └── FailedToUpdateCheckoutConfigurationException.php │ └── ValidationException.php ├── Domain │ ├── Interfaces │ │ ├── Identifiable.php │ │ ├── Comparable.php │ │ ├── Updateable.php │ │ └── DTOInstantiable.php │ ├── Delivery │ │ ├── Availability │ │ │ ├── AvailabilityPolicy │ │ │ │ ├── NullAvailabilityPolicy.php │ │ │ │ ├── CompositeAvailabilityPolicy.php │ │ │ │ ├── StandardAvailabilityPolicy.php │ │ │ │ └── WeightAvailabilityPolicy.php │ │ │ ├── Weight.php │ │ │ ├── AvailabilityPolicy.php │ │ │ ├── OrderItem.php │ │ │ ├── Order.php │ │ │ └── AvailabilityPolicyFactory.php │ │ ├── FreeShipping.php │ │ ├── ServicePointData.php │ │ ├── Country.php │ │ └── Carrier.php │ └── Search │ │ └── Query.php ├── Validators │ └── NullRequestValidator.php ├── Utility │ ├── ArrayToHashMap.php │ ├── CollectionComparator.php │ └── UnitConverter.php ├── API │ └── Checkout │ │ └── Delivery │ │ ├── Method │ │ ├── DeliveryMethods │ │ │ ├── DeliveryMethodFactory.php │ │ │ └── ServicePointDelivery.php │ │ ├── ServicePointData.php │ │ └── FreeShipping.php │ │ └── Zone │ │ └── Location.php ├── HTTP │ └── Request.php └── Configurator.php ├── Logger └── SendCloudHandler.php ├── Block ├── Adminhtml │ ├── Form │ │ ├── Save.php │ │ └── Field │ │ │ ├── Import.php │ │ │ ├── Configuration.php │ │ │ └── Export.php │ ├── AbstractOrder.php │ └── Form.php ├── System │ └── Config │ │ └── Form │ │ ├── Branding.php │ │ ├── DynamicCheckoutDeprecatedMessage.php │ │ ├── PluginVersion.php │ │ ├── Save.php │ │ └── Button.php ├── Order │ └── Info.php └── Checkout │ └── Overview.php ├── etc ├── webapi_rest │ └── di.xml ├── adminhtml │ ├── menu.xml │ └── routes.xml ├── frontend │ └── routes.xml ├── email_templates.xml ├── module.xml ├── events.xml ├── config.xml ├── csp_whitelist.xml └── webapi.xml ├── Controller ├── Adminhtml │ ├── System │ │ └── Config │ │ │ └── Save.php │ ├── Configuration │ │ ├── Index.php │ │ └── Save.php │ └── Exportrates │ │ └── Exportrates.php ├── Support │ ├── Display.php │ └── Modify.php └── Multishipping │ └── Index.php ├── Model ├── AbstractDomen.php ├── SendcloudDeliveryZone.php ├── SendcloudDeliveryMethod.php ├── ResourceModel │ ├── AbstractDomen │ │ └── Collection.php │ ├── Carrier │ │ └── Servicepointrate │ │ │ └── Collection.php │ └── SendcloudDeliveryMethod │ │ └── StoreViewCollection.php ├── Settings.php ├── Config │ ├── Source │ │ └── Servicepointrate.php │ └── Backend │ │ └── Servicepointrate.php └── Config.php ├── Plugin ├── Quote │ └── Address │ │ └── Rate.php ├── Carrier │ └── ExtensionAttributes.php ├── Webapi │ ├── Rest │ │ └── Response.php │ └── ServiceOutputProcessor.php ├── Model │ └── AdminAccessTokenServicePlugin.php └── CurrencyConfigurationChange.php ├── composer.json ├── Ui └── Component │ └── Form │ └── ModalDataProvider.php ├── Helper ├── Data.php ├── WeightConverter.php └── Checkout.php ├── README.md ├── Observer └── TransformOrderMultishippingData.php └── Setup └── Patch └── Data ├── UpdateConfigValues.php └── AddResourcesToRole.php /Checkout/Repository/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /view/adminhtml/web/css/servicepoint.less: -------------------------------------------------------------------------------- 1 | .service-point-information { 2 | margin: 10px 0; 3 | } -------------------------------------------------------------------------------- /view/frontend/web/template/checkout/shipping/checkout.html: -------------------------------------------------------------------------------- 1 |
7 | =__('Sendcloud | The Number 1 Shipping Tool | Contact ');?> 8 | Sendcloud =__('for support and more information.');?> 9 |
| 6 | | 7 | | 8 | | 9 | |
|---|
| = $block->escapeHtml(__('Shipped By')) ?> | 26 |= $block->escapeHtml(__('Tracking Number')) ?> | 27 |
|---|---|
| = $block->escapeHtml($_item->getTitle()) ?>: | 33 |34 | isCustom()): ?> 35 | 41 | 42 | 43 | 44 | = $block->escapeHtml($_item->getNumber()) ?> 45 | 46 | | 47 |
| 17 | Carriers 18 | | 19 |
|---|
|
25 | = $carrier; ?>
26 | |
27 |
| 37 | Weight class 38 | | 39 |40 | Shipping rate 41 | | 42 |
|---|---|
|
48 | = $rate['weight']; ?>
49 | |
50 |
51 | = $rate['rate']; ?>
52 | |
53 |