1.库存管理->设置->库存->库存模型组->设置 选项卡->分类账集成 组
选中 过账物理库存
2.应收账款->设置->参数设置->更新 选项卡->装箱单组
选中 装箱单记入分类账
另外物料需要当前成本价不能为零
在设置上面三个方面后依然不能产生凭证,看教程也没找到答案,只能去跟代码了,在产生凭证的时候会调用类InventMov_Sales的mustBeBookedPhysically方法:
boolean mustBeBookedPhysically()
{
;
if (SalesParameters::find().PostPackingSlip)
return super();
else
return false;
}
可以看出if里的代码就是2中提到的参数{
;
if (SalesParameters::find().PostPackingSlip)
return super();
else
return false;
}
查看super的代码
boolean mustBeBookedPhysically()
{
return this.inventModelGroup().PostOnhandPhysical && !InventParameters::find().PostEstimatesPeriodic;
}
其中&&前面部分判断的就是1中提到的参数{
return this.inventModelGroup().PostOnhandPhysical && !InventParameters::find().PostEstimatesPeriodic;
}
这里要提到的后面那个参数,这个参数对应界面的界面如下:
库存管理->设置->参数设置->常规 选项卡->实际过账组 期间暂估入账
从代码来看只有这个参数不选中的时候才会产生凭证。
至于这个参数是做什么用的,一时还真没头绪,等忙完这段时间再看吧。