示例#1
0
        public void TestUpdateDocumento()
        {
            Documento doc = docRepository.GetById(3320);
            List <Documento_Articulo> lstDocArticulo = new List <Documento_Articulo>();

            for (int i = 0; i < 11; i++)
            {
                Documento_Articulo docArt = new Documento_Articulo();
                Articulo           art    = artRepository.GetById(i);
                if (art != null)
                {
                    docArt.Articulo    = art;
                    docArt.Id_Articulo = art.Id_Articulo;
                    Empresa emp = empresaRespository.GetById(2);
                    docArt.Empresa    = emp;
                    docArt.Id_Empresa = 2;
                    //docArt.empr = "KD DEVELOPERS";
                    docArt.RazonSocial         = "KD UPDATE";
                    docArt.RUC                 = "20153045021";
                    docArt.DescripcionArticulo = "MONITOR 2000";
                    docArt.CodArea             = "test AREA";
                    docArt.UnidadMedida        = "TEST UM";
                    docArt.Cantidad            = 200;
                    docArt.PrecioUnitario      = 20;
                    docArt.Importe             = 2000;
                    docArt.UsuarioCreacion     = "KD.RMALDONADO";
                    docArt.FechaCreacion       = DateTime.Now;
                    lstDocArticulo.Add(docArt);
                }
            }
            docService.Update(doc, lstDocArticulo);
        }