@Wahson
2021-02-22T01:31:20.000000Z
字数 1212
阅读 899
周报
Wanbo周报
- 运营系统优化下周上线
- 增加物流商管理,物流商增删改查
- OA报销,自动带入员工银行信息
- 采购端物流费用算进订单盈亏
- 员工列表接口重构,返回角色、部门字段
- 物流单冗余税率字段
- 增加调货记录
- 公众号命令参数,牌号中带空格处理
报价单 -p"BOCC+BG-LD 2420E02"
- 运营系统优化 梁荣生 陈均活
- 敞口额度控制(空单,库存)
- 新建库存、修改产品经理时检查产品经理库存额度是否超出
- 订单审批、修改业务员时检查业务员空单额度是否超出
- 采购物流物流确认司机信息选填,另增加司机信息修改入口
- 物流对账
- 增加物流对账列表(已签收、万博配送物流单),显示列:字段同物流签收页面,操作:已对账
- 增加上传对账单操作,系统按照模板,根据物流商、仓库、下家、数量匹配未结算物流单,如果物流费用一致,物流单状态改为已对账,不一致记为已对账不一致,未匹配,返回前端
- 对账模板下载
- 在线商城
- 商城小程序UI继续完善 陈均活
- 领域服务框架搭建 梁华生 梁荣生
- 开发文档、任务细分 梁华生
alter table delivery_db.delivery
add column settle_status tinyint(2) unsigned not null default 1 comment '结算状态,1:未对账(unchecked);2:已对账不一致(checked_with_diff);3:已对账(checked);10:未结算(unsettled);20:已结算(settled)' after settle_type;
create table admin_db.staff_exposure_limit
(
id bigint unsigned not null auto_increment primary key,
staff_id bigint unsigned not null comment '业务员id',
type tinyint(2) unsigned not null default 1 comment '类型,1:空单(pre_sale);2:库存(stock)',
`limit` decimal(13,2) unsigned not null default 0.00 comment '额度',
created_at timestamp default current_timestamp() not null,
created_by int unsigned default 0 not null,
updated_at timestamp default current_timestamp() not null,
updated_by int unsigned default 0 not null,
remark varchar(64) null comment '备注',
unique key uk_staff_type(staff_id, type)
) comment '业务员敞口额度' charset = utf8mb4 engine = innoDb;