public void updateInvAdjStatus(string vocID, string itemCode)
 {
     Inv_Adjustment_Voucher_DetailEnt invAdVoDE = new Inv_Adjustment_Voucher_DetailEnt();
     Inventory_Adjustment_Voucher_Detail inAdjDe = new Inventory_Adjustment_Voucher_Detail();
     inAdjDe.Voucher_ID = vocID;
     inAdjDe.Item_Code = itemCode;
     inAdjDe.Status = true;
     invAdVoDE.updateInvAVD(inAdjDe);
 }