sql
```
ALTER TABLE `ims_ewei_shop_goods`
ADD COLUMN `isbonus` tinyint(2) NULL DEFAULT 0 ;
```
php
```
$data["isbonus"] = intval($_GPC["isbonus"]);
```
页面
```
<div class="form-group">
<label class="col-sm-2 control-label">商品类型</label>
<div class="col-sm-9 col-xs-12">
<label class="radio-inline">
<input type="radio" value="0" name="isbonus" {if $item['isbonus']==0}checked{/if} /> 普通商品
</label>
<label class="radio-inline">
<input type="radio" value="1" name="isbonus" {if $item['isbonus']==1}checked{/if} /> 报单商品
</label>
<span class="help-block">报单商品不参与团队分红,普通商品参与分红</span>
</div>
</div>
```
应用
```
$hasokgoods = false;
$ordergoods = pdo_fetchall("select og.id,g.isbonus from " . tablename('ewei_shop_order_goods') . ' og left join ' . tablename('ewei_shop_goods') . ' g on g.id = og.goodsid where og.orderid=:orderid and og.uniacid=:uniacid', array(':orderid' => $orderid, ':uniacid' => $_W['uniacid']));
foreach($ordergoods as $v){
if($v['isbonus']==1){
$hasokgoods = true;
}
}
```
- php调试
- php记录
- 常用循环
- 日期时间转换
- 时间格式
- mktime获取今日昨日本月时间戳
- http_build_query生成请求字符串
- PHP取整的几种方法
- 微擎记录
- W全局变量
- Http请求
- 人人商城二开记录
- 数据处理
- 常用查询
- 会员信息
- 确认收货处理
- 维权处理
- 设置读取和配置
- 报单商品类型属性
- 团队佣金
- 自动升级
- 业绩分红
- 前端html和js
- html按钮提交处理
- 引用js传参
- 表单
- 表单判断
- 任务执行
- 提示跳转页
- 全局变量
- 订单交易
- DIY设置
- 系统菜单
- mysql记录
- 创建表-14
- html和js
- 模板中使用js变量传参
- js表单处理
- 表单判断
- js页面跳转刷新
- thinkphp帮助
- 导入导出excel