随笔分类 -  电商

[转]微信支付模式
摘要:本文转自:https://pay.weixin.qq.com/wiki/doc/api/wxa/wxa_api.php?chapter=2_1 支付模式 1、 刷卡支付 刷卡支付是用户展示微信钱包内的“刷卡条码/二维码”给商户系统扫描后直接完成支付的模式。主要应用线下面对面收银的场景。 2、 扫码支 阅读全文

posted @ 2017-11-10 16:23 freeliver54 阅读(394) 评论(0) 推荐(0)

[转]nopCommerce 3.9 版本发行
摘要:本文转自:http://www.cnblogs.com/xoray007/p/nopCommerce-39-release.html NopCommerce中文信息地址:http://www.nopcn.com/nopcommerce39-blog-release-notes.html NopCom 阅读全文

posted @ 2017-04-06 10:29 freeliver54 阅读(310) 评论(0) 推荐(0)

[转]NopCommerce How to add a menu item into the administration area from a plugin
摘要:本文转自:http://docs.nopcommerce.com/display/nc/How+to+code+my+own+shipping+rate+computation+method Go to start of metadata In nopCommerce, administration 阅读全文

posted @ 2016-12-27 16:03 freeliver54 阅读(331) 评论(0) 推荐(0)

[转]nopCommerce Widgets and How to Create One
摘要:本文转自:https://dzone.com/articles/what-are-nopcommerce-widgets-and-how-to-create-one A widget is a stand-alone application that can be embedded into thi 阅读全文

posted @ 2016-12-27 11:27 freeliver54 阅读(365) 评论(0) 推荐(0)

NopCommerce 在Category 显示 Store List列表
摘要:实现效果如下: 1.在前台Web的Category Menu显示 Store; 2.点击 Store 显示 Store List列表; 3.点击 列表Store 的 Company Name 进入该Store的单页查看; 主要调整步骤: 代码层面Nop.Web 项目 1.路由 Infrastruct 阅读全文

posted @ 2016-12-23 11:40 freeliver54 阅读(719) 评论(0) 推荐(0)

NopCommerce 在Category 显示Vendor List列表
摘要:实现效果如下: 1.在前台Web的Category Menu显示 Vendor; 2.点击Vendor 显示Vendor List列表; 主要配置步骤: 1.运行网站 Admin 后台 Categorys 增加 Vendor 并配置其SEO 如vendor-all 2.代码层面 Nop.Web In 阅读全文

posted @ 2016-12-23 09:42 freeliver54 阅读(448) 评论(0) 推荐(0)

[转]教你一招 - 如何给nopcommerce增加一个类似admin的area
摘要:本文转自:http://www.cnblogs.com/wucf2004/p/nopcommerce-area.html asp.net mvc里面的area是什么,点击这里查看 如果在nopcommerce里面加入类似admin的area,步骤如下: 1、新建一个mvc空项目MvcApplicat 阅读全文

posted @ 2016-12-23 09:19 freeliver54 阅读(387) 评论(0) 推荐(0)

[转]nopcommerce商城系统--如何编写一个插件
摘要:本文转自:http://www.cnblogs.com/ganqiyin/p/3680771.html 原址:http://www.nopcommerce.com/docs/77/how-to-write-a-nopcommerce-plugin.aspx plug-in (或 plugin)是一个 阅读全文

posted @ 2016-12-20 11:06 freeliver54 阅读(301) 评论(0) 推荐(0)

[转]ASP.NET MVC IOC 之AutoFac攻略
摘要:本文转自:http://www.cnblogs.com/WeiGe/p/3871451.html 一、为什么使用AutoFac? 之前介绍了Unity和Ninject两个IOC容器,但是发现园子里用AutoFac的貌似更为普遍,于是捯饬了两天,发现这个东东确实是个高大上的IOC容器~ Autofac 阅读全文

posted @ 2016-12-20 10:30 freeliver54 阅读(593) 评论(0) 推荐(0)

NopCommerce Alipay 支付插件
摘要:NopCommerce Alipay 支付插件 1.查找及下载NopCommerce Alipay插件 http://www.nopcommerce.com/p/963/alipay-payment-module-nopcommerce-team.aspx 2.解压并添加到项目 按照Readme.t 阅读全文

posted @ 2016-12-14 15:37 freeliver54 阅读(4670) 评论(0) 推荐(0)

NopCommerce 增加 Customer Field
摘要:预期效果: Customer表新增一个Column 该新增字段可以在Admin段 新增 修改 列表查询及显示 示例步骤: 0.数据库表修改 alter table [Customer] add MemberType nvarchar(2) ; 1.Entity处理 Libraries\Nop.Cor 阅读全文

posted @ 2016-12-14 14:43 freeliver54 阅读(820) 评论(0) 推荐(0)

NopCommerce 增加 Customer Settings
摘要:预期: 仿照Customer 的 Phone number enabled 和 required 增加MemberType 相关步骤如下: 1.运行站点 Admin -> Settings -> All settings(advanced) -> Add new record 仿照 customer 阅读全文

posted @ 2016-12-14 09:48 freeliver54 阅读(744) 评论(0) 推荐(0)

NopCommerce 增加 Customer Attributes
摘要:预期: Customer 新增一个自定义属性 运行站点 1.Admin -> Settings -> Customer settings -> Customer form fields -> Custom customer attrbutes -> Add New 2.查看效果 3.在Custome 阅读全文

posted @ 2016-12-14 09:46 freeliver54 阅读(282) 评论(0) 推荐(0)

[转]How to add new table in NopCommerce
摘要:本文转自:http://www.tech-coder.com/2015/07/how-to-add-new-table-in-nopcommerce.html Hey guys I am back after a long time near about 2 year. And hope my pr 阅读全文

posted @ 2016-12-13 18:14 freeliver54 阅读(291) 评论(0) 推荐(0)

[转]教你一招 - 如何给nopcommerce增加新闻类别模块
摘要:本文转自:http://www.nopchina.net/post/nopchina-teach-newscategory.html nopcommerce的新闻模块一直都没有新闻类别,但是很多情况下都会使用到类别,怎么办呢,自己动手吧。 1、首先创建新闻类别表,脚本如下: ? 1 2 3 4 5 阅读全文

posted @ 2016-12-13 18:10 freeliver54 阅读(849) 评论(0) 推荐(0)

NopCommerce 发布时 Could not load file or assembly 'file:///...\Autofac.3.5.2\lib\net40\Autofac.dll' or one of its dependencies
摘要:本文转自:http://www.nopcommerce.com/boards/t/33637/4-errors.aspx 问题: The 3.5 solution compiles fine, and Nop.Web also compile fine, however when I try to 阅读全文

posted @ 2016-12-09 16:39 freeliver54 阅读(455) 评论(0) 推荐(0)

NopCommerce 关于Customer的会员类别及会员价处理 的尝试途径
摘要:示例效果: 当Customer是某个会员级别或内部员工时, 购物结算时享受一定的折扣; 相关设定如下: Step1.新增会员类别 Admin - Customers - Customer roles - Add New Step2.新增销售折扣 如10% Admin - Promotions - D 阅读全文

posted @ 2016-12-08 16:10 freeliver54 阅读(471) 评论(0) 推荐(0)

[转]NopCommerce How to code my own payment method
摘要:本文转自:http://docs.nopcommerce.com/display/nc/How+to+code+my+own+payment+method Payment methods are implemented as plugins in nopCommerce. We recommend 阅读全文

posted @ 2016-12-06 10:16 freeliver54 阅读(448) 评论(0) 推荐(0)

[转]KendoUI系列:Grid
摘要:本文转自:http://www.cnblogs.com/libingql/p/3774879.html 1、基本使用 效果预览: 说明:pageSizes设置可选择每页显示的条数,buttonCount设置最多显示的页数,超出时则显示...。以上实现方式第一次从服务端加载出全部的数据,Kendo U 阅读全文

posted @ 2016-12-05 17:36 freeliver54 阅读(892) 评论(0) 推荐(0)

[转][MVC] 剖析 NopCommerce 的 Theme 机制
摘要:本文转自:http://www.cnblogs.com/coolite/archive/2012/12/28/NopTheme.html?utm_source=tuicool&utm_medium=referral 前言 目前开源的CMS、Blog或者电子商务站点,他们都有一个共同的亮点,无疑就是可 阅读全文

posted @ 2016-12-02 14:09 freeliver54 阅读(450) 评论(0) 推荐(0)

导航