中扬CRM客户关系管理系统
#
luxiaotao1123
2023-07-25 c7884cb7dd4b50b1ae37fc956493e577a8535aed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.zy.crm.common.web;
 
import com.core.common.R;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * Created by vincent on 2023/7/25
 */
@RestController
public class DatavController {
 
    @GetMapping("/1test")
    public R test1() {
        /**
         * select
         * (case  when A.org='1002208180000267' then '嘉善'
         *        when A.org='1002208180000506' then '广德'
         *        else '' end) as 组织,
         * A.DocNo as 单号,A3.Code as 项目号,
         * (case  when A.DocState='0' then '开立'
         *        when A.DocState='1' then '已审核'
         *        when A.DocState='2' then '开工'
         *        when A.DocState='3' then '完工'
         *        when A.DocState='4' then '核准中'
         *        ELSE''  end) as 状态,
         * A.StartDate as 计划开工日,
         * A.CompleteDate as 计划完工日,A2.Code as 料号,A2.name as 品名,A2.SPECS as 规格 , a.ProductQty as 生产数量,TotalCompleteQty as 完工数量
         * from MO_MO as A
         * left join CBO_ItemMaster as A2 on (A.ItemMaster = A2.ID)
         * left join CBO_Project as A3 on (A.Project = A3.ID)
         * where
         * A.MODocType != '1002306121624435'  --过滤内部研发项目
         * and A.IsWBSTask!=1                 --过滤现场施工任务
         * and A.DocState != '3'              --过滤完工状态的订单
         * ORDER BY A.CompleteDate
         */
        return R.ok();
    }
 
}