Browse Source

Fix RemoteService names

pull/103/head
gdlcf88 5 years ago
parent
commit
02b8b5c85f
  1. 2
      modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.HttpApi/EasyAbp/EShop/Orders/Orders/OrderController.cs
  2. 2
      modules/EasyAbp.EShop.Payments/src/EasyAbp.EShop.Payments.HttpApi/EasyAbp/EShop/Payments/Payments/PaymentController.cs
  3. 2
      modules/EasyAbp.EShop.Payments/src/EasyAbp.EShop.Payments.HttpApi/EasyAbp/EShop/Payments/Refunds/RefundController.cs
  4. 2
      modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/Categories/CategoryController.cs
  5. 2
      modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/ProductCategories/ProductCategoryController.cs
  6. 2
      modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/ProductDetailHistories/ProductDetailHistoryController.cs
  7. 2
      modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/ProductDetails/ProductDetailController.cs
  8. 2
      modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/ProductHistories/ProductHistoryController.cs
  9. 2
      modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/ProductInventories/ProductInventoryController.cs
  10. 2
      modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/Products/ProductController.cs
  11. 2
      modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.HttpApi/EasyAbp/EShop/Stores/StoreOwners/StoreOwnerController.cs
  12. 2
      modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.HttpApi/EasyAbp/EShop/Stores/Stores/StoreController.cs
  13. 4
      modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.HttpApi/EasyAbp/EShop/Stores/Transactions/TransactionController.cs
  14. 2
      plugins/Baskets/src/EasyAbp.EShop.Plugins.Baskets.Domain.Shared/EasyAbp/EShop/Plugins/Baskets/Localization/BasketsResource.cs
  15. 2
      plugins/Baskets/src/EasyAbp.EShop.Plugins.Baskets.HttpApi/EasyAbp/EShop/Plugins/Baskets/BasketItems/BasketItemController.cs
  16. 2
      plugins/Baskets/src/EasyAbp.EShop.Plugins.Baskets.Web/Pages/EShop/Plugins/Baskets/BasketItems/BasketItem/index.js

2
modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.HttpApi/EasyAbp/EShop/Orders/Orders/OrderController.cs

@ -7,7 +7,7 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Orders.Orders
{
[RemoteService(Name = "EShopOrders")]
[RemoteService(Name = "EasyAbpEShopOrders")]
[Route("/api/eShop/orders/order")]
public class OrderController : OrdersController, IOrderAppService
{

2
modules/EasyAbp.EShop.Payments/src/EasyAbp.EShop.Payments.HttpApi/EasyAbp/EShop/Payments/Payments/PaymentController.cs

@ -7,7 +7,7 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Payments.Payments
{
[RemoteService(Name = "EShopPayments")]
[RemoteService(Name = "EasyAbpEShopPayments")]
[Route("/api/eShop/payments/payment")]
public class PaymentController : PaymentsController, IPaymentAppService
{

2
modules/EasyAbp.EShop.Payments/src/EasyAbp.EShop.Payments.HttpApi/EasyAbp/EShop/Payments/Refunds/RefundController.cs

@ -7,7 +7,7 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Payments.Refunds
{
[RemoteService(Name = "EShopPayments")]
[RemoteService(Name = "EasyAbpEShopPayments")]
[Route("/api/eShop/payments/refund")]
public class RefundController : PaymentsController, IRefundAppService
{

2
modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/Categories/CategoryController.cs

@ -7,7 +7,7 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Products.Categories
{
[RemoteService(Name = "EShopProducts")]
[RemoteService(Name = "EasyAbpEShopProducts")]
[Route("/api/eShop/products/category")]
public class CategoryController : ProductsController, ICategoryAppService
{

2
modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/ProductCategories/ProductCategoryController.cs

@ -7,7 +7,7 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Products.ProductCategories
{
[RemoteService(Name = "EShopProducts")]
[RemoteService(Name = "EasyAbpEShopProducts")]
[Route("/api/eShop/products/productCategory")]
public class ProductCategoryController : ProductsController, IProductCategoryAppService
{

2
modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/ProductDetailHistories/ProductDetailHistoryController.cs

@ -7,7 +7,7 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Products.ProductDetailHistories
{
[RemoteService(Name = "EShopProducts")]
[RemoteService(Name = "EasyAbpEShopProducts")]
[Route("/api/eShop/products/productDetailHistory")]
public class ProductDetailHistoryController : ProductsController, IProductDetailHistoryAppService
{

2
modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/ProductDetails/ProductDetailController.cs

@ -7,7 +7,7 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Products.ProductDetails
{
[RemoteService(Name = "EShopProducts")]
[RemoteService(Name = "EasyAbpEShopProducts")]
[Route("/api/eShop/products/productDetail")]
public class ProductDetailController : ProductsController, IProductDetailAppService
{

2
modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/ProductHistories/ProductHistoryController.cs

@ -7,7 +7,7 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Products.ProductHistories
{
[RemoteService(Name = "EShopProducts")]
[RemoteService(Name = "EasyAbpEShopProducts")]
[Route("/api/eShop/products/productHistory")]
public class ProductHistoryController : ProductsController, IProductHistoryAppService
{

2
modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/ProductInventories/ProductInventoryController.cs

@ -7,7 +7,7 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Products.ProductInventories
{
[RemoteService(Name = "EShopProducts")]
[RemoteService(Name = "EasyAbpEShopProducts")]
[Route("/api/eShop/products/productInventory")]
public class ProductInventoryController : ProductsController, IProductInventoryAppService
{

2
modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi/EasyAbp/EShop/Products/Products/ProductController.cs

@ -7,7 +7,7 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Products.Products
{
[RemoteService(Name = "EShopProducts")]
[RemoteService(Name = "EasyAbpEShopProducts")]
[Route("/api/eShop/products/product")]
public class ProductController : ProductsController, IProductAppService
{

2
modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.HttpApi/EasyAbp/EShop/Stores/StoreOwners/StoreOwnerController.cs

@ -7,7 +7,7 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Stores.StoreOwners
{
[RemoteService(Name = "EShopStoreOwners")]
[RemoteService(Name = "EasyAbpEShopStores")]
[Route("/api/eShop/stores/storeOwner")]
public class StoreOwnerController : StoresController
{

2
modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.HttpApi/EasyAbp/EShop/Stores/Stores/StoreController.cs

@ -7,7 +7,7 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Stores.Stores
{
[RemoteService(Name = "EShopStores")]
[RemoteService(Name = "EasyAbpEShopStores")]
[Route("/api/eShop/stores/store")]
public class StoreController : StoresController, IStoreAppService
{

4
modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.HttpApi/EasyAbp/EShop/Stores/Transactions/TransactionController.cs

@ -7,8 +7,8 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Stores.Transactions
{
[RemoteService(Name = "TransactionService")]
[Route("/api/stores/transaction")]
[RemoteService(Name = "EasyAbpEShopStores")]
[Route("/api/eShop/stores/transaction")]
public class TransactionController : StoresController, ITransactionAppService
{
private readonly ITransactionAppService _service;

2
plugins/Baskets/src/EasyAbp.EShop.Plugins.Baskets.Domain.Shared/EasyAbp/EShop/Plugins/Baskets/Localization/BasketsResource.cs

@ -2,7 +2,7 @@
namespace EasyAbp.EShop.Plugins.Baskets.Localization
{
[LocalizationResourceName("EShopPluginsBaskets")]
[LocalizationResourceName("EasyAbpEShopPluginsBaskets")]
public class BasketsResource
{

2
plugins/Baskets/src/EasyAbp.EShop.Plugins.Baskets.HttpApi/EasyAbp/EShop/Plugins/Baskets/BasketItems/BasketItemController.cs

@ -8,7 +8,7 @@ using Volo.Abp.Application.Dtos;
namespace EasyAbp.EShop.Plugins.Baskets.BasketItems
{
[RemoteService(Name = "EShopPluginsBaskets")]
[RemoteService(Name = "EasyAbpEShopPluginsBaskets")]
[Route("/api/eShop/plugins/baskets/basketItem")]
public class BasketItemController : BasketsController, IBasketItemAppService
{

2
plugins/Baskets/src/EasyAbp.EShop.Plugins.Baskets.Web/Pages/EShop/Plugins/Baskets/BasketItems/BasketItem/index.js

@ -1,6 +1,6 @@
$(function () {
var l = abp.localization.getResource('EShopPluginsBaskets');
var l = abp.localization.getResource('EasyAbpEShopPluginsBaskets');
var service = easyAbp.eShop.plugins.baskets.basketItems.basketItem;
var createModal = new abp.ModalManager(abp.appPath + 'EShop/Plugins/Baskets/BasketItems/BasketItem/CreateModal');

Loading…
Cancel
Save