- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发 cakephp 项目,我必须在其中生成报告。我有两个表,一个表存储客户的值(value),另一个表存储分配给每个用户的潜在客户的值(value)。每个线索都有地位。如果状态为0,我想增加progressleads的计数器,如果status为1,则wonleads的计数器应该增加,依此类推...
我正在连接两个表并获取像这样的数组=>
Array
(
[0] => Array
(
[Customer] => Array
(
[id] => 14
[name] => ABC
)
[Opportunity] => Array
(
[status] => 0
[value] => 50000
)
)
[1] => Array
(
[Customer] => Array
(
[id] => 14
[name] => ABC
)
[Opportunity] => Array
(
[status] => 1
[value] => 10000
)
)
[2] => Array
(
[Customer] => Array
(
[id] => 14
[name] => ABC
)
[Opportunity] => Array
(
[status] => 1
[value] => 7500
)
)
[3] => Array
(
[Customer] => Array
(
[id] => 15
[name] => DEF
)
[Opportunity] => Array
(
[status] => 0
[value] => 45000
)
)
[4] => Array
(
[Customer] => Array
(
[id] => 19
[name] => ST
)
[Opportunity] => Array
(
[status] => 2
[value] => 50000
)
)
[5] => Array
(
[Customer] => Array
(
[id] => 16
[name] => TEST
)
[Opportunity] => Array
(
[status] => 2
[value] => 1000000
)
)
[6] => Array
(
[Customer] => Array
(
[id] => 19
[name] => ST
)
[Opportunity] => Array
(
[status] => 0
[value] => 1000
)
)
[7] => Array
(
[Customer] => Array
(
[id] => 14
[name] => ABC
)
[Opportunity] => Array
(
[status] => 0
[value] =>
)
)
)
从这个数组中,我希望为每个用户提供一条记录,其中包含总潜在客户、正在进行的潜在客户、赢得的潜在客户计数器。我尝试过以下代码:-
$customerdetails = array();
$totalopp = 0;
$progressopp = 0;
$oppval = 0;
$wonopp = 0;
$lostopp = 0;
$billedopp = 0;
$onholdopp = 0;
$newcustid = NULL;
foreach($customer as $k => $val){
$custid = $val["Customer"]["id"];
if($newcustid != $custid){
$oppstatus = $val["Opportunity"]["status"];
$oppval += $val["Opportunity"]["opo_value"];
$totalopp++;
if($oppstatus == 0){
$progressopp++;
}
if($oppstatus == 1){
$wonopp++;
}
if($oppstatus == 2){
$lostopp++;
}
if($oppstatus == 3){
$billedopp++;
}
if($oppstatus == 4){
$onholdopp++;
}
$newcustid = $custid;
}
$customerdetails[$custid]["customername"] = $val["Customer"]["customer_name"];
$customerdetails[$custid]["opportunities"] = $totalopp;
$customerdetails[$custid]["value"] = $oppval;
$customerdetails[$custid]["inprogress"] = $progressopp;
$customerdetails[$custid]["won"] = $wonopp;
$customerdetails[$custid]["lost"] = $lostopp;
$customerdetails[$custid]["billed"] = $billedopp;
$customerdetails[$custid]["onhold"] = $onholdopp;
}
打印 $customerdetails 数组后,我得到以下结果 =>
Array
(
[14] => Array
(
[customername] => ABC
[opportunities] => 6
[value] => 1146000
[inprogress] => 4
[won] => 0
[lost] => 2
[billed] => 0
[onhold] => 0
)
[15] => Array
(
[customername] => DEF
[opportunities] => 2
[value] => 95000
[inprogress] => 2
[won] => 0
[lost] => 0
[billed] => 0
[onhold] => 0
)
[19] => Array
(
[customername] => ST
[opportunities] => 5
[value] => 1146000
[inprogress] => 3
[won] => 0
[lost] => 2
[billed] => 0
[onhold] => 0
)
[16] => Array
(
[customername] => TEST
[opportunities] => 4
[value] => 1145000
[inprogress] => 2
[won] => 0
[lost] => 2
[billed] => 0
[onhold] => 0
)
)
正如您所看到的,只有 4 个线索分配给 ABC,但它显示的机会为 6 个,类似地,其他计数器也显示不正确。谁能帮助我我在这里做错了什么?
最佳答案
我认为您在这里应用了错误的逻辑。 array_column会成功的。请参阅以下代码。
<?php
$customers=array_column($result,'customer');
$opportunity=array_column($result,'opportunity');
$finalResult=array();
foreach($customers as $k=>$customer) {
$opp=$opportunity[$k];
if(!array_key_exists($customer["id"],$finalResult)) {
$finalResult[$customer["id"]]=array();
$finalResult[$customer["id"]]["opportunities"]=0;
$finalResult[$customer["id"]]["value"]=0;
$finalResult[$customer["id"]]["inprogress"]=0;
$finalResult[$customer["id"]]["won"]=0;
$finalResult[$customer["id"]]["lost"]=0;
$finalResult[$customer["id"]]["billed"]=0;
$finalResult[$customer["id"]]["onhold"]=0;
}
$finalResult[$customer["id"]]["customerid"]=$customer["id"];
$finalResult[$customer["id"]]["customername"]=$customer["name"];
$finalResult[$customer["id"]]["opportunities"]++;
$finalResult[$customer["id"]]["value"]+=$opp["value"];
if($opp["status"]==0) {
$finalResult[$customer["id"]]["inprogress"]++;
}
if($opp["status"]==1) {
$finalResult[$customer["id"]]["won"]++;
}
if($opp["status"]==2) {
$finalResult[$customer["id"]]["lost"]++;
}
if($opp["status"]==3) {
$finalResult[$customer["id"]]["billed"]++;
}
if($opp["status"]==4) {
$finalResult[$customer["id"]]["onhold"]++;
}
}
?>
您只需分别获取客户列和机会列,然后遍历客户列即可。
现在,当您遍历时,首先通过将值保存在 $finalResult
数组中来检查您是否已经找到该客户。如果是,则相应地增加计数器,如果不创建数组,则相应地增加计数器。
我认为这会成功。
输出数组可能如下所示:
Array
(
[14] => Array
(
[opportunities] => 4
[value] => 13500
[inprogress] => 2
[won] => 2
[lost] => 0
[billed] => 0
[onhold] => 0
[customerid] => 14
[customername] => ABC
)
[15] => Array
(
[opportunities] => 1
[value] => 45000
[inprogress] => 1
[won] => 0
[lost] => 0
[billed] => 0
[onhold] => 0
[customerid] => 15
[customername] => DEF
)
[19] => Array
(
[opportunities] => 2
[value] => 51000
[inprogress] => 1
[won] => 0
[lost] => 1
[billed] => 0
[onhold] => 0
[customerid] => 19
[customername] => ST
)
[16] => Array
(
[opportunities] => 1
[value] => 100000
[inprogress] => 0
[won] => 0
[lost] => 1
[billed] => 0
[onhold] => 0
[customerid] => 16
[customername] => TEST
)
)
关于php - 在 php foreach 中明智地增加计数器状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37740286/
我需要从 1024 增加 FD_SETSIZE 值至 4096 .我知道最好使用 poll()/epoll()但我想了解什么是优点/缺点。主要问题是:我要重新编译glibc吗? ?我读了几个线程,其中
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我在 HTML 文件中有这样的内容: var value = 0; add(x){ x++; do
有没有办法在用户向上滚动时增加变量,并在用户使用 JavaScript 向下滚动时减少变量?变量没有最大值或最小值,如果能够调整灵敏度就好了。我不知道从哪里开始,感谢您的帮助! 编辑:没有滚动条,因为
我是 ios 新手,遇到以下问题。 我想根据表格 View 中元素的数量增加和减少表格 View 的高度大小。如果在输入时客户端在输出时给出 3 个或超过 3 个元素,我希望看到一个比默认行大 2 行
所以我一直在四处搜索,似乎大多数人认为以下列方式递增 indexPath 是正确的方法: NSIndexPath *newIndexPath = [NSIndexPath indexPathForRo
我有一个关于 connSupervisionTimeout 的问题。 我正在使用 CoreBluetooth 编写应用程序。我检查了连接参数和 connSupervisionTimeout = 720
我正在尝试根据页面的滚动位置更改元素的填充;当用户向下滚动页面时,填充会增加,而当他们向上滚动时,填充会减少。 我的主要问题是滚动不是很流畅,有时如果我滚动到页面顶部太快,每次元素的填充大小都不一样。
我正在尝试计算 18456 个基因的相关性度量,但编译器 (Dev C) 在将宏 GENE 或 INDEX 增加到 4000 到 5000 之间的值后退出或大。例如,它适用于: # define GE
我有一个带有 position: absolute 和 CSS3 过渡的圆形元素(a 元素)。在 hover 事件中,我想增加圆的高度和宽度,但我想在所有边上添加像素,而不仅仅是在左侧或右侧。 示例如
为了改善用户体验,我计划在我网站的所有页面(A-、A、A+)上增加/减少/重置字体大小 我面临的问题是页面上不同元素使用的字体大小不统一。有些是 14px,有些是 18px,有些是 12px,有些是
本文实例讲述了Yii框架数据库查询、增加、删除操作。分享给大家供大家参考,具体如下: Yii 数据库查询 模型代码: ?
sql替换语句,用该命令可以整批替换某字段的内容,也可以批量在原字段内容上加上或去掉字符。 命令总解:update 表的名称 set 此表要替换的字段名=REPLACE(此表要替换的字段名, '原
sql不常用函数总结以及事务,增加,删除触发器 distinct 删除重复行 declare @x 申明一个变量 convert(varchar(20),t
要增加我使用的最大可用内存: export SPARK_MEM=1 g 或者我可以使用 val conf = new SparkConf() .setMaster("loca
我正在尝试将文本(自定义文本按钮)放入 AppBar 的前导属性中。但是,当文本太长时,文本会变成多行 Scaffold( appBar: AppBar( centerTi
我正在使用最新版本的 NetBeans,我需要增加输出和菜单的字体大小(不是代码部分)。我试过: netbeans_default_options=".... --fontsize 16" 但是当我将
我必须将 180000 个点绘制到一个 EPS 文件中。 使用标准 gnuplot 输出尺寸点彼此太接近,这使得它们无法区分。有没有办法增加图像的宽度和高度? 最佳答案 是的。 set termina
我有一个带有输入字段的 twitter bootstrap 3 导航栏。我想增加输入字段的宽度。我已尝试设置 col 大小,但它不起作用。 html比较长,请引用bootply http://www.
我正在尝试增加 ggplot 标题中下划线的大小/宽度/厚度。我曾尝试使用大小、宽度和长度,但没有成功。 这是我所做的一个例子。 test <- tibble(x = 1:5, y = 1, z =
我是一名优秀的程序员,十分优秀!