This repository has been archived on 2026-06-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
EDT/plugin/client_bb/report_sx_1w.php
T
wsh5485 7e47ce238b chore: 添加多个图片和资源文件
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
2025-06-15 13:04:37 +08:00

205 lines
7.4 KiB
PHP

<?php
//色系报表
//可配置参数:zd1|sx|字段1,icon|menu_icon_bb_xw_ms|菜单图标,select_zd1||搜索1,select_zd2||搜索2,select_zd3||搜索3
//2020-07-10 by hzz
//-----参数配置start
//菜单图标
$icon=get_plugin_set("icon","menu_icon_bb_xw_ms");//支持以下目录的图标ipad/images/menu_icon_*.png
//字段
$zd1=get_plugin_set("zd1","sx");
//
$select_client_type="y";//dp:允许筛选店铺
$use_layui_datatable="n";//使用标准layui datatable格式数据
$s_key=$s_key?$s_key:$_key;
//搜索
$search_arr=array();
$searh_select1=get_plugin_set("select_zd1","");
$searh_select2=get_plugin_set("select_zd2","");
$searh_select3=get_plugin_set("select_zd3","");
array_push($search_arr,$searh_select1,$searh_select2,$searh_select3);
//
$str_select="";
for($i=0;$i<count($search_arr);$i++){
$arr_val=$search_arr[$i];
if($arr_val){
if($arr_val=="s_spk"){
$str_select.="{\"name\":\"s_spk\",\"title\":\"是否饰品款\",\"value\":\"".$s_spk."\",\"op\":[{\"no\":\"y\",\"title\":\"\"},{\"no\":\"n\",\"title\":\"\"}]},";
}else if($arr_val=="s_ka"){
$str_select.="{\"name\":\"s_ka\",\"title\":\"是否删除款\",\"value\":\"".$s_ka."\",\"op\":[{\"no\":\"y\",\"title\":\"\"},{\"no\":\"n\",\"title\":\"\"}]},";
}else{
$str_op="";
$sql_select="select no,title from web_keyword where cate='".$arr_val."' order by ord";
$res_select=$db->query($sql_select);
while($msg_select=$db->fetch_array($res_select)){
$str_op.="{\"no\":\"".$msg_select["no"]."\",\"title\":\"".$msg_select["title"]."\"},";
}
$str_select.="{\"name\":\"".$arr_val."\",\"title\":\"".get_cate_title_no("arr_select",$arr_val)."\",\"value\":\"".$$arr_val."\",\"op\":[".substr($str_op,0,-1)."]},";
}
}
}
$json_data.="\"select_report\":[".substr($str_select,0,-1)."],";
//end
//-------------------------条件
//-------con为web_order
//-------con1为web_kh
$con=$con1="";
if($searh_select1!="s_ka" && $searh_select2!="s_ka" && $searh_select3!="s_ka"){
//没有删除款搜索时
$con.=" and ka<>'y' ";
$con1.=" and ka<>'y' ";
}else{
if($s_ka){
$con.=" and ka='".$s_ka."' ";
$con1.=" and ka='".$s_ka."' ";
}
}
if($searh_select1!="s_spk" && $searh_select2!="s_spk" && $searh_select3!="s_spk"){
//没有饰品款搜索时
$con.=" and is_sp<>'y' ";
$con1.=" and is_sp<>'y' ";
}else{
if($s_spk){
$con.=" and is_sp='".$s_spk."' ";
$con1.=" and is_sp='".$s_spk."' ";
}
}
if($s_key){
if($s_key=="all"){
$con.="";
}else{
$con.=" and _key='".$s_key."'";
}
}
//其他
for($i=0;$i<count($search_arr);$i++){
$arr_val=$search_arr[$i];
if($arr_val && $arr_val!="s_spk" && $arr_val!="s_ka"){
if($$arr_val){
$con.=" and ".$arr_val."='".$$arr_val."' ";
$con1.=" and ".$arr_val."='".$$arr_val."' ";
}
}
}
//店铺查询条件
if($msg_client["face"]=="4"){
$s_username=$msg_client["username"];
$con.=" and uid='".$msg_client["id"]."'";
}else{
if($s_username){
$m2=get_db_msg("select id,face,path from ".$table_pre."client where username='".$s_username."'");
if($m2["face"]=="4"){
$con.=" and uid='".$m2["id"]."'";
}else{
$con.=" and (upath='".$m2["path"]."-".$m2["id"]."' or upath like '".$m2["path"]."-".$m2["id"]."-%')";
}
}else if($msg_client["face"]=="2"){
//区经角色所有客户
$con.=get_qj_ucon_all($msg_client["charge_path_real"]);
}else if($msg_client["face"]=="1"){
//区经角色所有客户
}else{
//代理角色所有客户
$con.=" and (upath='".$msg_client["path"]."-".$msg_client["id"]."' or upath like '".$msg_client["path"]."-".$msg_client["id"]."-%')";
}
}
//---------------------------------------------
if($zd1==""){
//请求数据有误
$content_data="<div align='center'>请先配置参数!</div>";
$json_data.="\"sys_bb_type\":\"report_null\",";
}else{
//---------------------------------------一维报表
$json_data.="\"sys_bb_type\":\"report_1w\",";
$s_group_by=$zd1;
//取得总款色数
$total_sku=0;
$q2="select no,color,color_ka from ".$table_pre."kh where no<>''".$con1;
$r2=$db->query($q2);
while($m2=$db->fetch_array($r2)){
$arr1=explode(",",$m2["color"]);
$arr2=explode(",",$m2["color_ka"]);
for($i1=0;$i1<count($arr1);$i1++){
if($s_ka=="y"){
if(in_array($arr1[$i1],$arr2))
$total_sku++;
}else{
if(!in_array($arr1[$i1],$arr2))
$total_sku++;
}
}
}
//取得已订总件数和金额
$q="select sum(num) 'num',sum(je) 'je' from ".$table_pre."order where ".$s_group_by."<>'' ".$con;
$tmp=get_db_msg($q);
$total_yd_js=$tmp["num"];
$total_yd_je=$tmp["je"];
//取得已订总款色数
$tmp1=get_db_msg("select count(distinct no,color) 'num' from ".$table_pre."order where ".$s_group_by."<>'' ".$con);
$total_yd_sku=$tmp1["num"];
//
$content_data="";
$content_data.="<table id='tabledetail' class='cell-border nowrap' width='100%' lay-filter='layui_table' cellspacing='0' cellpadding='0' border='0' class='layui-table'>";
$content_data.="<thead><tr style='background-color:#f2f2f2' align=center><td rowspan=2>色系</td><td colspan=2>设计款色</td><td colspan=2>已订款色</td><td colspan=2>已订件数</td><td colspan=2>吊牌金额</td></tr>";
$content_data.="<tr style='background-color:#f2f2f2' align=center><td>款数</td><td>占比</td><td>款数</td><td>占比</td><td>件数</td><td>占比</td><td>金额</td><td>占比</td></tr>";
$content_data.="</thead>";
$content_data.="<tbody>";
//
$tb_data_x="";
$tb_data_y=",";
//
$tbody_str="";
$q="select * from ".$table_pre."keyword where cate='".$s_group_by."' order by no";
$r=$db->query($q);
$count=$total_num=$total_money=0;
while($m=$db->fetch_array($r)){
$list=$count+1;
$gtitle=get_cate_title_no($s_group_by,$m[$s_group_by]);
//取得设计款色
$tmp=get_db_msg("select * from ".$table_pre."sx where no='".$m["no"]."'");
$arr_color=explode(",",$tmp["_v"]);
$n1=0;
for($i1=0;$i1<count($arr_color);$i1++){
$tmp=get_db_msg("select count(*) 'num' from ".$table_pre."kh where concat(',',color,',') like '%,".$arr_color[$i1].",%'".$con1);
$n1+=$tmp["num"];
}
$tmp_sku=$n1;
//取得款色
$tmp=get_db_msg("select count(distinct no,color) 'num' from ".$table_pre."order where ".$s_group_by."='".$m["no"]."'".$con);
$tmp_yd_sku=$tmp["num"];
//取得数量
$tmp=get_db_msg("select sum(num) 'num',sum(je) 'je' from ".$table_pre."order where id>0 and ".$s_group_by."='".$m["no"]."'".$con);
$tmp_yd_js=$tmp["num"];
$tmp_yd_je=$tmp["je"];
//
$content_data.="<tr align=center><td>".$m["title"]."</td><td>".deel_01($tmp_sku)."</td><td>".deel_bfb($tmp_sku,$total_sku)."</td><td>".deel_01($tmp_yd_sku)."</td><td>".deel_bfb($tmp_yd_sku,$total_yd_sku)."</td><td>".deel_01($tmp_yd_js)."</td><td>".deel_bfb($tmp_yd_js,$total_yd_js)."</td><td>".deel_01($tmp_yd_je)."</td><td>".deel_bfb($tmp_yd_je,$total_yd_je)."</td></tr>";
$count++;
//
$tb_data_x.=$m["title"].",";
$tb_data_y.=str_replace("%","",deel_bfb($tmp_yd_js,$total_yd_js)).",";
}
$content_data.="</tbody>";
$content_data.="<tfoot>";
$content_data.="<tr align=center style='background-color:#f2f2f2'><td>合计</td><td>".$total_sku."</td><td></td><td>".$total_yd_sku."</td><td></td><td>".$total_yd_js."</td><td></td><td>".$total_yd_je."</td><td></td></tr>";
$content_data.="</tfoot>";
$content_data.="</table>";
//图
$tb_data_y=deel_end($tb_data_y);
$tb_data_x=deel_end($tb_data_x);
$json_data.="\"chart_title\":\"\",";
$json_data.="\"chart_type\":\"pie\",";
$json_data.="\"chart_data_x\":\"".$tb_data_x."\",";
$json_data.="\"chart_data_y\":\"".$tb_data_y."\",";
}
$json_data.="\"table_html\":\"".$content_data."\",";
?>