123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <?php
- $status = array
- (
- 1 => '待审',
- 2 => '已审核',
- 3 => '未通过',
- );
- return array
- (
- # 表名
- 'name' => 'buy_order_goods',
- # 显示给用户看的名称
- 'lang' => '订单商品表',
- 'menu' => false,
- 'status' => $status,
- 'end' => array
- (
- 'insert' => 'scm/lib/order.updateGoods?table=scm_seller/buy_order_goods',
- 'update' => 'scm/lib/order.updateGoods?table=scm_seller/buy_order_goods',
- ),
- # 数据结构
- 'struct' => array
- (
-
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
- 'update' => 'hidden',
- //'list' => true,
- ),
- 'order_id' => array
- (
- 'type' => 'int-11',
- 'name' => '订单表id',
- 'default' => '',
- 'desc' => '订单表id',
- 'match' => 'is_numeric',
- ),
- 'goods' => array
- (
- 'type' => 'varchar-2000',
- 'name' => '商品',
- 'default' => '',
- 'desc' => '商品',
- 'match' => 'option',
- 'update' => 'select',
- 'update_search' => 'scm_product/lib/manage.searchProduct?{seller_id}',
- 'bind' => array('onchange', 'loading', array('url' => Dever::url('lib/manage.showInfo?cash_col=buy_price', 'scm_product'), 'col' => 'seller_id,seller_shop_id')),
- ),
- 'goods_id' => array
- (
- 'type' => 'int-11',
- 'name' => '库存',
- 'default' => '',
- 'desc' => '商品',
- 'match' => 'is_numeric',
- 'update' => 'show',
- 'value' => '暂无',
- ),
- 'sku_id' => array
- (
- 'type' => 'int-11',
- 'name' => 'sku_id',
- 'default' => '-1',
- 'desc' => 'sku_id',
- 'match' => 'is_numeric',
- ),
- 'unit_id' => array
- (
- 'type' => 'int-11',
- 'name' => '单位',
- 'default' => '',
- 'desc' => '单位',
- 'match' => 'is_numeric',
- 'update' => 'select',
- 'option' => array(0 => '请先选择商品'),
- 'bind' => array('onchange', 'loading', array('url' => Dever::url('lib/manage.showPriceByUnit?cash_col=buy_price', 'scm_product'), 'col' => 'seller_id,seller_shop_id,goods')),
- ),
- 'cash' => array
- (
- 'type' => 'decimal-11,2',
- 'name' => '单价',
- 'default' => '',
- 'desc' => '单价',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'num' => array
- (
- 'type' => 'decimal-11,2',
- 'name' => '数量',
- 'default' => '1',
- 'desc' => '数量',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'status' => array
- (
- 'type' => 'int-11',
- 'name' => '状态',
- 'default' => '1',
- 'desc' => '状态',
- 'match' => 'is_numeric',
- //'update' => 'select',
- 'option' => $status,
- 'search' => 'select',
- 'list' => true,
- 'edit' => true,
- ),
- 'state' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '状态',
- 'default' => '1',
- 'desc' => '请选择状态',
- 'match' => 'is_numeric',
- ),
-
- 'cdate' => array
- (
- 'type' => 'int-11',
- 'name' => '创建时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- # 只有insert时才生效
- 'insert' => true,
- 'search' => 'date',
- 'list' => 'date("Y-m-d H:i:s", {cdate})',
- ),
- ),
- 'manage' => array
- (
- 'insert' => false,
- 'delete' => false,
- 'page_list' => 'order_goods',
- ),
- 'request' => array
- (
-
- ),
- );
|