Newspaper 1 年之前
父节点
当前提交
d865290c68

+ 1 - 1
huimv-farm-datacenter-egg/huimv-farm-environ/src/main/resources/mapper/FeedEggDetailMapper.xml

@@ -40,7 +40,7 @@
             e.date,
             e.total_egg_weight AS 'totalEggWeight',
             COALESCE(ROUND(u.total_feed_consume / 1000, 2), 0) AS 'totalFeedConsume',
-            ROUND(CASE WHEN e.egg_production = 0 THEN NULL ELSE u.total_feed_consume / e.egg_production END, 2) AS 'totalFeedEggRate'
+            ROUND(CASE WHEN e.egg_production = 0 THEN 0 ELSE u.total_feed_consume / e.egg_production END, 2) AS 'totalFeedEggRate'
         FROM
             (SELECT
                 DATE AS DATE,