### 根据商品ID获取商品库存
**位置:** Common\Common\function.php
**参数:**
* @param $goods_id int 商品ID(必填)
* @param $type int 商品ID类型(必填)1、款号ID,2、SKC的ID,3、SKU的ID
* @param $place_id 位置ID
* @param $p_type int 1、门店查指定门店库存,2、门店查指定仓库库存,3、电商查指定门店库存,4、电商查指定仓库库存
**调用:**
门店人员根据SKUID查询皇庭店库存(皇庭店ID为5)
> Controller 控制器调用:
> get_sale_inventory ($sku_id, 3, 5, 1)
> View 模版调用:
> {$goods['id']|get_sale_inventory=3, 5, 1}
**完整代码:**
~~~
/**
* 根据商品ID查询库存
* @param $goods_id int 商品ID(必填)
* @param $type int 商品ID类型(必填)1、款号ID,2、SKC的ID,3、SKU的ID
* @param $place_id 位置ID
* @param $p_type int 1、门店查指定门店库存,2、门店查指定仓库库存,3、电商查指定门店库存,4、电商查指定仓库库存
* @return $count 库存数
*/
function get_sale_inventory($goods_id, $type, $place_id, $p_type) {
//1、搜索唯一码的条件
if (!empty($place_id)) {
if ($p_type == 1) { // 门店查指定门店
$where['it.inventory_status'] = array('in', array(1, 2)); // 库存状态:0.不可销售、1.可销售、2.门店可销售、3.网店可销售、4.已销售、5.已下架
$where['it.delivery_status'] = array('not in',array(4, 6, 8, 10)); // 物流状态:物流状态:0.未入库、1.已入库(在仓库)、2.已出库/已入店(在门店)、3.待配货、4.配货中、5.待调货、6.调货中、7.待退仓、8.退仓中、9.待移库、10.移库中、11.待入库
$where['it.shops_id'] = array('eq', $place_id);
} elseif($p_type == 2) { // 门店查仓库
$where['it.inventory_status'] = array('in', array(1, 2)); // 库存状态:0.不可销售、1.可销售、2.门店可销售、3.网店可销售、4.已销售、5.已下架
$where['it.delivery_status'] = array('not in',array(4, 6, 8, 10)); // 物流状态:物流状态:0.未入库、1.已入库(在仓库)、2.已出库/已入店(在门店)、3.待配货、4.配货中、5.待调货、6.调货中、7.待退仓、8.退仓中、9.待移库、10.移库中、11.待入库
$where['it.warehouse_id'] = array('eq', $place_id);
} elseif($p_type == 3) { // 电商查指定门店
$where['it.inventory_status'] = array('in', array(1, 2, 3)); // 库存状态:0.不可销售、1.可销售、2.门店可销售、3.网店可销售、4.已销售、5.已下架
$where['it.shops_id'] = array('eq', $place_id);
} else { // 电商查指定仓库
$where['it.inventory_status'] = array('in', array(1, 2, 3)); // 库存状态:0.不可销售、1.可销售、2.门店可销售、3.网店可销售、4.已销售、5.已下架
$where['it.warehouse_id'] = array('eq', $place_id);
}
} else {
$where['it.inventory_status'] = array('in', array(1, 2, 3)); // 库存状态:0.不可销售、1.可销售、2.门店可销售、3.网店可销售、4.已销售、5.已下架
}
//2、如果是款号ID
if ($type == 1) {
$where['spu.id'] = $goods_id;
$count = M('goods_spu as spu')
->join('coscia_goods_item as it on it.spu_id = spu.id','left')
->where($where)
->count();
}
//3、如果是SKC的ID
if ($type == 2) {
$where['skc.id'] = $goods_id;
$count = M('goods_skc as a')
->join('coscia_goods_item as it on it.skc_id = skc.id','left')
->where($where)
->count();
}
//4、如果是SKU的ID
if ($type == 3) {
$where['sku.id'] = $goods_id;
$count = M('goods_sku as a')
->join('coscia_goods_item as it on it.sku_id = sku.id','left')
->where($where)
->count();
}
return $count;
}
~~~
- 模版
- 前言
- 项目架构
- 项目规范
- HTML
- CSS
- Javascript
- PHP
- MySQL
- 注意规范
- 开发版本管理
- 开发流程
- 系统配置
- 阿里云服务器配置
- 计划任务配置说明
- 开发示例
- Page分页
- Search_param搜索结果赋值
- Add新增
- Edit编辑
- Ajax表单验证
- Ajax二级联动
- Excel 导出数据首位不去0的方法
- POS总部控制
- 下载CSV格式的模板
- 订单唯一码表和订单SKU表实收金额生成
- 快捷日期选择
- JS函数
- ajax_send
- ajax_result
- createQrCodes
- createBarCodes
- printTpl
- JS插件
- BootstrapValidator表单验证插件
- Address省市区插件
- Bootstrap-datepicker日期插件
- Bootstrap-select多选框插件
- Toastr消息提示插件
- PalyAudit扫描声音提示插件
- WebUploader多图片上传插件
- Ueditor富文本编辑器插件
- Function
- alert
- object_to_array
- array_to_object
- get_address
- set_param_url
- get_shops_name
- get_user_name
- get_warehouse
- get_cheapest_sku
- print_attr(新)
- print_img(新)
- get_spu_no(新)
- get_type_name(新)
- get_brand_en(新)
- get_cat_name(新)
- get_attr_name(新)
- spu_cat_info(新)
- get_time_event_price
- get_vendors
- check_total_reduce
- check_total_discount
- get_inventory
- get_delivery
- get_sale_inventory
- get_customer_name
- phone_protection
- get_order_no
- get_event_name
- get_order_status
- get_item_status
- get_ditch_name
- get_card_no
- get_shop_sales
- get_pay_name
- get_season
- amt_format
- get_cat_parent
- print_attr_id
- round_bcadd
- round_bcsub
- round_bcmul
- round_bcdiv
- get_account_name
- Controller
- Common_BaseController
- check_membership_card
- get_menu_list
- importErrorMassage
- Wpos_IndexController
- get_customer_vip_card
- get_shops_id
- calculate_active_integral
- check_numbers_active
- check_goods_active
- Woms_IndexController
- Model
- View
- category
- cycle_date.html
- shop_select门店多选搜索框
- 品牌A-Z排序多选brand_mc.html
- 供应商代码A-Z排序vendor_no_mc.html
- Lib
- BuyerLib
- WarehouseLib
- EventLib
- getTimeEventPrice
- getVipType
- getEvent
- orderTotalEvent
- orderTimeEvent
- getTotalReduce
- getTotalDiscount
- SaleLib
- CustomerLib
- addCustomerService
- GiftcardLib
- WechatLib
- wxRefund
- OrdersLib
- orderLog
- calculatePayinAmount
- calculateSubtotal
- correctPayinAmount
- saveOrderAddress
- getOrderAddress
- setDeliveryNo
- SyncLib
- updateOuterStock
- UserLib
- createCommission
- FlowLib
- orderList
- addOrder
- addLog
- orderInfo
- checkSku
- orderSave
- orderStop
- orderExecute
- skuEdit
- orderPrinta
- scanGoods
- boxClose
- orderOut
- take
- bview
- check
- deliveryStatus
- checkGoods
- GoodsLib
- createGoodsNo
- createNewGoodsNo
- getSystemStyleNo
- getDim
- MallLib
- smsLog
- GoodsBaseLib
- getBrandInfo
- getBrandsInfo
- getAttrIdArray
- getPrintAttr
- getMustAttr
- getCatIdInfo
- valTypeId
- valsTypeId
- getCatNoInfo
- getCatInfo
- getAttrArr
- getAttrInfo
- getValInfo
- getAttrId
- getValId
- getAttrSeaon
- getValueId
- PointsLog
- pointsIn
- pointsUp
- EcGoodsLib
- getSkuInventory
- Tools
- CsvTools
- csvImport
- csvExport
- ExcelTools
- importExcel
- exportExcel
- exportHeadExcel
- MailTools
- SmsTools
- sendMessage
- UploadTools
- ExportTools
- exportData
- TaobaoTools
- getOnsaleItems
- getSkusItems
- PicturesTools
- uploadPicture
- Plugins
- WxBase
- Taobao
- 问题反馈