@Wahson
2020-10-19T02:28:46.000000Z
字数 1000
阅读 767
周报
Wanbo周报
- 运营系统优化
- 采购端货损已完成,测试中
- 付款指令,使用资金账户,已完成,测试中
- 采购商列表可按未跟进、未成交排序已上线
- 删除产品经理已上线
- 单据明细接口,增加未税装卸费已上线
- 发票统计,增加发票更新完成提醒,推送仍有未回票需跟进的交易员已上线
- 专场、一口价 增加最大可售数量已上线
- 税前毛利累加产品经理税前毛利已上线
- 物流签收增加物流亏损字段已上线
- 大树金融初步产品对接方案完成
- dapeng-mesh 网关调研、demo完成
- 采购货损功能、付款指令使用资金余额测试 梁华生
- 运营系统优化 曹佳林 陈均活 梁荣生
- 单据明细,采购付款状态查询、显示
- bug: 资源单拆单,未校验发票状态
- 客户领用变化,更新wx_user.kf_staff_id
- 关联申请、审核时,校验所有抬头领用人是否一致
- 采购详情增加销售单、客户公司
- 预售供应商订单解绑后,采购单自动删除
- 单据明细增加采购回票日期,多次回票去最大值
- 系统管理,增加员工Kpi列表查询、新增、修改
- 盈亏统计,增加tab【目标完成情况】,查询条件:月份、员工,列表
- 大树金融对接,需求整理,产品设计 梁华生
- 公众号、小程序服务端业务、代码结构持续了解 梁荣生
create table admin_db.staff_kpi(
id bigint not null primary key,
staff_id bigint not null comment '业务员id',
expected_customer_cnt smallint(2) not null default 0 comment '目标客户数',
expected_pretax_profit decimal(8, 2) not null default 0.00 comment '目标税前毛利',
month char(7) not null comment '月份',
remark varchar(64) null comment '备注',
created_at timestamp default current_timestamp() not null,
created_by int default 0 not null,
updated_at timestamp default current_timestamp() not null,
updated_by int default 0 not null
) engine = innoDb charset = utf8mb4 comment '员工kpi';