javascript 写策略模式,商场收银打折优惠策略
[Decode error - output not utf-8]
-----------------------------
购物清单 方便面 : 100 x 50 = 5000 | 4000
菊花茶 : 10 x 50 = 500 | 500
-----------------------------
优惠使用 : 国庆1折优惠
购物合计 4500 -> 450 [Finished in 0.6s]
首先封装收银机类,怎么把商品设进,怎么把收银金额输出。
然后封装商品,和金额独立
然后进行收银策略编写。打折,满返针对的是最后的结果。
收银机添加设置策略接口,调用原生金额接口,调用策略接口,获得策略后金额接口
下个需求到商品的具体折扣,譬如买几送几
封装策略到商品处,商品创建的时候根据自己的名字到工厂去领取自己的“福利”
后续还想实施,组合折扣,譬如买牙膏同时买牙刷,减5块钱
架构要大改了(・-・*) ,暂时搁置
/**
* by JackChen 2016-3-15 19.20.01
* 看完马士兵老师策略模式后作业
*
* 原文是讲解comparable接口 和 compareTo
*
* 所有实现了comparable接口的类都可以用于比较。
*
* 而更高级的是,我不同场景需要不同的比较时,通过定制本类的比较器,
* 借用比较器的compareTo,得到不同的比较结果
*
* 已实现
* 1. 单个物品多个数量
* 2. 多个物品多个数量
* 3. 多个物品结算打印
* 4. 多个物品总金额折扣策略(几折、满返)
* 5. 单个物品优惠策略(多少个送多少个)
*
* 待实现
* 6. 单个物品 买多个送多个 跟购物物品无关
* 7. 组合购买
*/ ////////////////////////////////////////////////////////////////////////
/// 收银策略类 //普通收钱
var NormalStrategy = function() {
var self = this;
self.type = "total";
self.description = "没有使用优惠";
};
NormalStrategy.prototype = {};
NormalStrategy.prototype.constructor = NormalStrategy;
NormalStrategy.prototype.desc = function() {
return this.description;
};
NormalStrategy.prototype.discount = function(money) {
return money;
}; //折扣策略
var PrecentOffStrategy = function(description, precent) {
var self = this;
self.type = "total";
self.precent = precent;
self.description = description + (precent*10) + "折优惠";
};
PrecentOffStrategy.prototype = new NormalStrategy();
PrecentOffStrategy.prototype.constructor = PrecentOffStrategy;
PrecentOffStrategy.prototype.desc = function() {
return this.description;
};
PrecentOffStrategy.prototype.discount = function(money) {
return money * this.precent;
}; //满返策略
var GivebackStrategy = function(description, enough, giveback) {
var self = this;
self.type = "total";
self.enough = enough;
self.giveback = giveback;
self.description = description + "满"+ enough + "返" + giveback + "优惠";
};
GivebackStrategy.prototype = new NormalStrategy();
GivebackStrategy.prototype.constructor = GivebackStrategy;
GivebackStrategy.prototype.desc = function() {
return this.description;
};
GivebackStrategy.prototype.discount = function(money) {
if (money >= this.enough) {
money -= this.giveback;
};
return money;
}; ////////////////////////////////////////////////////////////////////////
/// 销售品种折扣工厂 var SaleItemStrategyFactory = function() {
};
SaleItemStrategyFactory.prototype = {};
SaleItemStrategyFactory.prototype.constructor = SaleItemStrategyFactory;
SaleItemStrategyFactory.prototype.getInstance = function(name) {
var self = this;
var strategy = null; switch (name) {
case "方便面":
strategy = new BuyMoreStrategy("特惠",4,1);
break;
default:
// statements_def
break;
} return strategy;
}; //普通
var ItemNormalStrategy = function() {
var self = this;
self.type = "total";
self.description = "没有优惠";
};
ItemNormalStrategy.prototype = {};
ItemNormalStrategy.prototype.constructor = ItemNormalStrategy;
ItemNormalStrategy.prototype.desc = function() {
return this.description;
};
ItemNormalStrategy.prototype.discount = function(money) {
return money;
}; //买几送几
var BuyMoreStrategy = function(description, buy, free) {
var self = this;
self.type = "total";
self.buy = buy;
self.free = free;
self.description = description + "买"+ buy + "送" + free;
};
BuyMoreStrategy.prototype = new ItemNormalStrategy();
BuyMoreStrategy.prototype.constructor = BuyMoreStrategy;
BuyMoreStrategy.prototype.desc = function() {
return this.description;
};
BuyMoreStrategy.prototype.discount = function(item) {
var give = item.num / (this.buy + this.free);
var left = item.num % (this.buy + this.free);
money = (give* this.buy + left)*item.price;
return money;
}; ////////////////////////////////////////////////////////////////////////
/// 销售品种 var SaleItem = function(name , price) {
var self = this;
self.name = name;
self.price = price;
self.num = 1;
self.strategy = factory.getInstance(self.name);
};
SaleItem.prototype = {};
SaleItem.prototype.constructor = SaleItem;
SaleItem.prototype.clone = function() {
var self = this;
var cloneItem = new SaleItem();
cloneItem.name = self.name;
cloneItem.price = self.price;
cloneItem.num = self.num;
cloneItem.strategy = self.strategy;
return cloneItem;
};
SaleItem.prototype.count = function() {
return this.price * this.num;
};
SaleItem.prototype.discountProcess = function(money) {
if (this.strategy) {
money = this.strategy.discount(this);
};
return money;
};
SaleItem.prototype.discount = function() {
return this.discountProcess(this.count());
}; ////////////////////////////////////////////////////////////////////////
/// 收银策略类 var CashRegister = function() {
var self = this;
self.totalDiscountStrategy = new NormalStrategy();
self.arr = [];
};
CashRegister.prototype = {};
CashRegister.prototype.constructor = CashRegister; //添加商品
CashRegister.prototype.add = function(item, num) {
var self = this;
if (num) {
item.num = num;
}; self.arr.push(item);
};
//添加折扣策略
CashRegister.prototype.setTotalDiscountStrategy = function(strategy) {
this.totalDiscountStrategy = strategy;
}; //总计金额
CashRegister.prototype.count = function() {
var self = this;
var totalMoney = 0;
self.arr.forEach( function(item, index) {
totalMoney += item.discount();
});
return totalMoney;
};
//折扣加入
CashRegister.prototype.discountProcess = function(money) {
var self = this;
if (self.totalDiscountStrategy) {
money = self.totalDiscountStrategy.discount(money);
};
return money;
};
//折后金额
CashRegister.prototype.discount = function() {
var self = this;
var totalMoney = self.count();
return self.discountProcess( totalMoney );
}; //结算清单
CashRegister.prototype.print = function() {
var self = this;
console.log('-----------------------------');
console.log(' 购物清单 ');
console.log(''); var totalMoney = 0;
self.arr.forEach(function(item, index) {
console.log(" %s : %s x %s = %s | ",item.name, item.price, item.num, item.count(),item.discount());
}); console.log('-----------------------------');
console.log(' 优惠使用 : ' + self.totalDiscountStrategy.desc())
console.log(' 购物合计 ' + self.count() +" -> "+ self.discount() );
console.log('');
}; ////////////////////////////////////////////////////////////////////////
/// 测试类 var factory = new SaleItemStrategyFactory(); var cashRegister = new CashRegister();
cashRegister.setTotalDiscountStrategy(new PrecentOffStrategy("国庆",0.1));
// cashRegister.setTotalDiscountStrategy(new GivebackStrategy("劳动节",500,300));
// cashRegister.setTotalDiscountStrategy(new GivebackStrategy("劳动节",1000,500)); cashRegister.add(new SaleItem("方便面",100),50);
cashRegister.add(new SaleItem("菊花茶",10),50); cashRegister.print();
javascript 写策略模式,商场收银打折优惠策略的更多相关文章
- [Python设计模式] 第2章 商场收银软件——策略模式
github地址: https://github.com/cheesezh/python_design_patterns 题目 设计一个控制台程序, 模拟商场收银软件,根据客户购买商品的单价和数量,计 ...
- php 商场收银收费系统,使用的策略模式
<?php//策略模式就是你有很多的方法,选择一种适合自己的,// 单例模式就是只有一个实例对象,不需要每个文件都要加载,比如连接数据库,// 工厂模式就是 //策略模式 优惠系统.工资计算系统 ...
- 读《大话设计模式》——应用工厂模式的"商场收银系统"(WinForm)
要做的是一个商场收银软件,营业员根据客户购买商品单价和数量,向客户收费.两个文本框,输入单价和数量,再用个列表框来记录商品的合计,最终用一个按钮来算出总额就可以了,还需要一个重置按钮来重新开始. 核心 ...
- 在商城系统中使用设计模式----策略模式之在spring中使用策略模式
1.前言: 这是策略模式在spring中的使用,对策略模式不了解对同学可以移步在商城中简单对使用策略模式. 2.问题: 在策略模式中,我们创建表示各种策略的对象和一个行为,随着策略对象改变而改变的 c ...
- 智能ERP收银统计-优惠统计计算规则
1.报表统计->收银统计->优惠统计规则 第三方平台优惠:(堂食订单:支付宝口碑券优惠)+(外卖订单:商家承担优惠) 自平台优惠:(堂食订单:商家后台优 ...
- 读《大话设计模式》——应用策略模式的"商场收银系统"(WinForm)
策略模式的结构 这个模式涉及到三个角色: 环境(Context)角色:持有一个 Strategy 类的引用.抽象策略(Strategy)角色:这是一个抽象角色,通常由一个接口或抽象类实现.此角色给出所 ...
- javascript 写状态模式
写了状态模式的切换,以及分支循环.but 怎么实现子状态嵌套呢? /** * by JackChen 2016-3-26 11.51.20 * * 状态模式: * 一个状态到另一个状态的变换.其实可以 ...
- JavaScript设计模式之策略模式(学习笔记)
在网上搜索“为什么MVC不是一种设计模式呢?”其中有解答:MVC其实是三个经典设计模式的演变:观察者模式(Observer).策略模式(Strategy).组合模式(Composite).所以我今天选 ...
- 商场促销-策略模式(和简单工厂模式很像的哇) C#
还是那几句话: 学无止境,精益求精 十年河东,十年河西,莫欺少年穷 学历代表你的过去,能力代表你的现在,学习代表你的将来 废话不多说,直接进入正题: 首先按照大话设计模式的解释,在这里也总结下策略模式 ...
随机推荐
- Oracle Tnsping慢
http://www.linuxidc.com/Linux/2014-02/96167.htm http://www.askmaclean.com/archives/dns%E8%AE%BE%E7%B ...
- linux中删除目录
在linux中删除一个目录很简单,很多人还是习惯用rmdir,不过一旦目录非空,就陷入深深的苦恼之中,现在使用rm -rf命令即可解决. 直接rm就可以了,不过要加两个参数-rf 即:rm -rf 目 ...
- SCVMM问题汇总
1.在分配虚机到Hyper-V主机时,提示可用内存不足: 可能是虚机分配使用了动态内存,动态内存的最大值太大导致,将其改为固定内存大小即可.
- css z-index详解
写css z-index的时候经常会出现很多莫名其妙的问题,下面对z-index属性做彻底的剖析,本文参考了<一个css中z-index的用法>,并做了很多demo,方便了解z-index ...
- spinner中的onNothingSelected方法到底什么时候调用?
这个东东大家在开发中可能不太能用到,所以总是容易被忽略,由于工作原因,我最近琢磨了一下onNothingSelected方法的调用时机问题,其实很简单,只要我们稍微看一下源码就明白了: /** * C ...
- 微信小程序的一些限制
小程序的一些限制: 不支持HTML.没有 Dom.网页用的 JS.CSS 基本要全部重写,WXML 的语法和 HTML 差异还挺大,基本是一个个照着手册的属性去改.CSS 选择器不支持级联. 小程序源 ...
- 无法从“object”转换为“string”
就我在项目中遇到的问题,和大家分享一下“无法从“object”转换为“string” 在把我出错的代码复制上来, Guid userid = new Guid(Membership.GetUser( ...
- TCL 双引号和花括号的区别
用了很一段时间的Modelsim,用TCL脚本仿真,开始注意起来它,看了些资料,有一个问题始终让我很困惑,那就是花括号 的用法,今天Google了一下,觉得有一点豁然了,记录一下.为了不让自己的翻译影 ...
- 混合文件系统(ramdisk+jffs)
背景知识: 一.Ramdisk文件系统: 1.掉电丢失 2.读写速度高 3.数据存储到内存 二.jffs文件系统 1.掉电不丢失 2.可存储于NOR NAND,但是适用于NOR 3.数据存储于flas ...
- css所有选择器的详解
----------------------------------------css 选择器---------------------------------------- 1,组合选择器: 1)e ...