Esempio n. 1
0
        public async Task <IActionResult> CreateReceiveBill(int objectId, string deviceCode)
        {
            var client = await _clientAppService.GetClient(deviceCode);

            var result = await _billAppService.CreateReceiveBill(client.PlaceId, objectId, CurrentUser.UserId,
                                                                 CurrentUser.DepartmentId);

            return(Json(result));
        }