123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- 省份
- php think crud -t p_province -c general/province -u 1 --force=true
- 自己公司
- php think crud -t p_company -c pig/company -u 1 --force=true --relation=province --relationforeignkey=province_id
- 客户公司
- php think crud -t p_company -c pig/customer -u 1 --force=true --relation=province --relationforeignkey=province_id
- 供应商公司
- php think crud -t p_company -c pig/supplier -u 1 --force=true --relation=province --relationforeignkey=province_id
- 订单
- php think crud -t p_order -c pig/order -u 1 --force=true --relationmodel=general/province --relationforeignkey=supplier_id --relationforeignkey=customer_id --relation=p_province --relationforeignkey=province_id
- code
- php think crud -t p_code -c pig/code -u 1 --force=true
- code order
- php think crud -t p_code_order -c pig/codeorder -u 1 --force=true
- code create
- php think crud -t p_code_order -c pig/codecreate -u 1 --force=true
- 入市猪肉
- php think crud -t p_order -c pig/market -u 1 --force=true --relationmodel=pig/company --relationforeignkey=province_id --relationforeignkey=supplier_id --relationforeignkey=customer_id
- 压缩
- css
- uglifycss animate.css iconfont.css index.css reset.css swiper.min.css > all.min.css
- js
- #uglifyjs base.js checkurl.js common.js flexible.js hm.js jquery-1.8.3.min.js swiper.min.js > all.min.js
- uglifyjs base.js checkurl.js common.js flexible.js jquery-1.8.3.min.js swiper.min.js > all.min.js
- 淘宝店铺 shop
- php think crud -t shop -c shop/shop -u 1
- 淘宝店铺列表
- php think crud -t shop -c shop/shoplist -u 1 --force=true --force=true --relation=admin --relationforeignkey=admin_id
- PDD账户
- php think crud -t shop_pdd -c shop/shoppdd -u 1
- 店铺订单
- php think crud -t shop_order -c shop/shoporder -u 1 --force=true
- 店铺订单(全量)
- php think crud -t shop_order_all -c shop/shoporderall -u 1 --force=true
- 物流处理
- php think crud -t shop_order -c express/shoporder -u 1 --force=true
- 同步订单管理
- php think crud -t shop_order -c sync/shoporder -u 1 --force=true
- 店铺费用订单
- php think crud -t order -c shop/order -u 1 --force=true
- 店铺供应商查看商品
- php think crud -t goods -c shop/goods -u 1
- php think crud -t goods -c shop/goods -u 1 --relation=specs --relationforeignkey=specs_id --relationmodel=supplier/specs --force=true
- 店铺供应商下单
- php think crud -t goods_order -c shop/goodsorder -u 1 --force=true
- pdd 地址
- php think crud -t pdd_address -c shop/pddaddres -u 1
- 商品快捷链接
- php think crud -t taobao_product -c shop/product -u 1 --force=true
- 供应商-----------------------------------------------------------------------------------------------------
- 供应商货源 supplier
- php think crud -t goods -c supplier/goods -u 1 --relation=specs --relationforeignkey=specs_id --relationmodel=supplier/specs --force=true
- 供应商订单
- php think crud -t goods_order -c supplier/goodsorder -u 1 --force=true
- 供应商货源分类
- php think crud -t classs -c supplier/classs -u 1
- 供应商货源规格
- php think crud -t specs -c supplier/specs -u 1
- 覆盖
- --force=true
- 报错
- php think crud -t error -c auth/error -u 1 --relation=admin --relationforeignkey=admin_id --relationmode=shop/shop --relationforeignkey=shop_id --force=true
- 交易记录
- php think crud -t admin_money_log -c auth/moneylog -u 1 --force=true --relation=admin --relationforeignkey=admin_id
- 统计
- php think crud -t statistics -c general/statistics -u 1 --relation=admin --relationforeignkey=admin_id --force=true
- js
- //刷新表格
- $("#table").bootstrapTable('refresh');
- //获取当前数据
- $("#table").bootstrapTable('getData');
- #新系统需要清空的数据
- TRUNCATE TABLE `tb_admin_log`;
- TRUNCATE TABLE `tb_crontab_log`;
- TRUNCATE TABLE `tb_goods_order`;
- TRUNCATE TABLE `tb_order`;
- TRUNCATE TABLE `tb_shop_order`;
- TRUNCATE TABLE `tb_shop_pdd`;
- TRUNCATE TABLE `tb_taobao_product`;
- TRUNCATE TABLE `tb_webmsg`;
- TRUNCATE TABLE `tb_shop`;
- #TRUNCATE TABLE `tb_goods`;
- #TRUNCATE TABLE `tb_classs`;
- #TRUNCATE TABLE `tb_specs`;
- 一键轮询策略以及步骤
- 1、登录第一个店铺
- 2、开始同步店铺 当前时间之前的“12小时-- 48小时”可发货订单
- 3、开始发当前店铺可发货的订单
- 4、登录下一个店铺
- 5、进行 2、3 步骤操作
- 6、登录最后一个店铺完成2、3步操作,重复进行1-6步骤
- 中断轮询事件:
- 一、淘宝店铺登录
- 1、登录滑动条
- 2、登录需要短信校验
- 二、已卖出订单列表
- 1、进入需要短信验证码
- 2、翻页需要滑动验证条
- 三、订单详情读取
- 1、需要滑动验证条
- 当有中断时候人工介入处理,处理完成后重新点击一键轮询按钮。
|