问题现象: 库存管理12月份结帐时提示限额领料单没有审核
问题原因: 因为限额领料单的审核只是清空本次出库数量,
并没有其他实用意义,但是系统又不提供批审功能,所以只能通过sql语句来批审
解决方案: Update matchvouchs set iActiQuantity=null
跟踪出的审核跟踪语句如下:例如
UpdateMatchVouchsSet iActiQuantity = NULL,iActiNum = NULL,
iSignQuantity=NULL,iSignNum=NULL,cCode=NULL,iACost=NULL,iPCost=NULL,
dPrintDate=NULL,dDisDate=NULL,dMadeDate=NULL,cBatch=NULL,RdsID=NULL,
cInVouchCode=NULL,cDivisionCode=NULL WhereMatchVouchs.ID=75----此处ID所指为本次出库数量不为零的限额领料单据
所以只要执行此语句:UpdateMatchVouchsSet iActiQuantity = NULL,iActiNum = NULL,
iSignQuantity=NULL,iSignNum=NULL,cCode=NULL,iACost=NULL,iPCost=NULL,
dPrintDate=NULL,dDisDate=NULL,dMadeDate=NULL,cBatch=NULL,RdsID=NULL,
cInVouchCode=NULL,cDivisionCode=NULL
就可以将所有没审核的全部审核,将本次出库数量不为零的全部清零,月末即可正常处理