[关闭]
@Wahson 2019-12-01T23:31:11.000000Z 字数 781 阅读 595

技术--工作周报(2019-12-01)

周报 Wanbo周报


上周回顾

  • 付款指令开发完成,预计周一上线
  • 销项发票联调完成,预计周一上线
  • 进项发票ocr开发完成

用户访问量,本周成交无在线订单

时间 访问人数(除内部员工)
11-25 20
11-26 14
11-27 14
11-28 7
11-29 13

下周计划

  • F_Product_Offer_V1.0 测试上线 梁华生
  • 付款指令、销项发票录入测试上线 (需录入供应商账号)
  • 发票管理 预计下周上线
    • 进项发票页面、联调
    • 进项认领接口 曹佳林
  • 流水认领增加批量自动匹配,审核提交功能 曹佳林
  • 库存管理
    • 采购模块增加可用库存查询,页面已开发完成 曹佳林
  • 供应端需求持续整理 梁华生
  • 订单收款提醒 待定
  • 逾期统计 statistics 曹佳林
  1. -- 逾期统计
  2. select o.sales_by, o.order_no, oi.designation, oi.weight, oi.total_amount,oi.payed_amount ,
  3. oi.total_amount - oi.payed_amount as '待收款',
  4. date(oc.pay_due_date) as '收款期限',
  5. if(datediff(current_date, oc.pay_due_date) < 0, 0, datediff(current_date, oc.pay_due_date) )as '逾期天数'
  6. from order_db.order_item oi left join `order` o on oi.order_id = o.id inner join order_contract oc on o.id = oc.order_id
  7. where oi.status not in (90, 91) and oi.payment_status in (10, 20) and o.status in (50,51) and o.created_at > '2019-07-01' and o.sales_by = 4;
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注