Sunday, 17 October 2010

Week-06-CRM

17 Oct 2010
Total: 4 hours

  1. <Group meeting> 2hours We discussed about the presentation structure. My part is ERD. So I think it is not so difficult. But I have to write down script. We reviewed ERD, it becomes good diagram, so now it is time to start developing database.
  2. <Research> 2hours I researched about chart. Actually I don't want to use ASP.net package, because if I use open source, I can reuse it another language, but I understand ASP.net is difficult that kids of things. So I need to use their package.  

16 Oct 2010
Total: 5hours
  1. <Group meeting> 3hours We discussed about the presentation structure and invoice page image. We realized we don't know many things so we have to ask the client to get more information.
  2. <Research> 2hours I researched about chart and google mail. ASP.net is not flexible and not enough references. Anyway, today I feel tired, so I want to try to find tomorrow.  


15 Oct 2010
Total: 6hours
This morning, we played some sports, which is good for our health.
  1. <Documentation> 1 hour I updated my blog and Journal. There are many documentations, which we have to do. We need more time to do project.
  2. <Sequence Diagram> 2.5 hours I created two sequence diagrams, after that we discussed and created more sequence diagrams. So maybe we will find more classes.
  3. <Group Meeting> 1 hour Today we have reviewed the UML diagram from our teacher. This time it is no problem, and we can start to prepare the presentation.
  4. <Coding for chart> 1.5 hour Today I still searched the coding for chart function. But I cannot find good resource, so I thought it is better to refer original Google page. Tomorrow, I want to do it.

14 Oct 2010
Total: 5hours
In the morning, I have done my work to develop flash contents. This week I don't have work instead of going to her office.
  1.  <Coding for chart> 2hours I still try to find coding for the chart. First I try to make a flash application but it is easy to use google chart tool. So I want to develop using cart tool. And I found JSON format source code. The following source code is a result.
  2. <Group Meeting> 1hour We discuss about next presentation. This time we don't use power point slide. So it will become difficult for me.
  3. <Update Class Diagram> 2hours I tried to update class diagram. However, it is hard to imagine about the class. Therefore, I realized we had better to discuss sequence diagram, and then we also update the class diagram. This way is easy to find the class.
Customer.cs (This is Customer class)
public class Customer
{
    private int id;
    private string name;

    public int ID {
        get { return id; }
        set { id = value; }
    }

    public string Name {
        get { return name; }
        set { name = value; }
    }

    public Customer() { }
 public Customer(int id, string name)
 {
        this.id=id;
        this.name = name;
 }
}

json.aspx.cs (C# behind code for .aspx file)
Customer myPerson = new Customer(1, "Pietschmann"); 
System.Runtime.Serialization.Json.DataContractJsonSerializer serializer = new System.Runtime.Serialization.Json.DataContractJsonSerializer(myPerson.GetType());
            MemoryStream ms = new MemoryStream();
            serializer.WriteObject(ms, myPerson);
            string json = Encoding.Default.GetString(ms.ToArray());

            Label1.Text = myPerson.ID.ToString();

13 Oct 2010
Total: 8hours
  1. <Research> 3hours I researched for Gmail API and Chart function. I found the library for Gmail, but I could not download here. The Wi-fi is very very strict. I think they have to consider about this problem. We requested many times, however this is never changed. Next, I try
  2. <Update UML Usecase> 3hours We discussed about Usecase diagram. Maybe we found the way of drawing. So, we will update description also.
  3. <Coding for chart> 2hours I search internet for the chart. I found the coding for converting to JSON format.


12 Oct 2010
Total: 8hours
  1. <Network documentation> 3hours We requested about improving network. After that, Teacher offered to think about configure Web Sever, which is running in ASP, PHP and JSP. So I started the documentation. The most big concern is security. I'm not sure, we can create secure web server.
  2. <Update Sitemap> 1hour I updated sitemap based on the page image. First, I finished the update sitemap, however before saving, data was gone. I learned the saving is very important.
  3. <Presentation> 2.5hours Today, we studied UML diagram. The teacher explained very well, so I understood finally. But we have to modify every UML diagrams.
  4. <Research> 1.5hour I researched Login status and Google mail API. I think about how to deal with mails more deaply.

11 Oct 2010
Total: 6hours

  1. <Group Meeting> 3hours I asked the project manager that I want to have a time to research and to improve my skill. I wondered I was selfish and I had too many requests, because he has also his plan. So next time, I wanted to reduce my comments.
  2. <Research> 3hours I got one more project, which is to develop web server for our project and client.This is good for us, but I don't know I took time or not. Anyway, I tried to do this project also.

No comments:

Post a Comment