public object GetTakestockByinputBarcode([FromBody] JObject requestParams)
        {
            string storeId    = requestParams.Property("storeId", true);
            string checkBatch = requestParams.Property("checkBatch", true);
            string barcode    = requestParams.Property("barcode", true);

            return(TakeStockService.GetTakestockByinputBarcode(storeId, checkBatch, barcode));
        }