Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

一、单块面积字段公式是 : 【宽】/1000* 【高】/1000;

如果商品是玻璃层板,单块面积不足0.4时,按0.4算;

如果商品是玻璃门时,单块面积不足0.5时按0.5算。

其他情况取0

if( 【商品名称】 == '玻璃层板' and 【宽】/1000* 【高】/1000<0.4 ) 0.4 ;
else if( 【商品名称】 == '玻璃门' and 【宽】/1000* 【高】/1000<0.5 ) 0.5 ;
else 0

二、销售报表设置公式,利润小于30000提成百分之15 利润小于100000提成按百分之35 100000以上都是百分之50

if( 【毛利】<30000 ) 【毛利】 *0.15 ; else if( 【毛利】 >=30000 and 【毛利】<=99999 ) 【毛利】 *0.35 ; else 【毛利】 *0.5

  • No labels