- Data:
- 2009-10-22 14:16:57 (16 years ago)
- Lokalizacja:
- trunk
- Pliki:
-
- 6 zmodyfikowane
-
BazaReklam/Baza Reklam.csproj (zmodyfikowane) (2 diffs)
-
BazaReklam/Docs/versioninfo.html (zmodyfikowane) (1 diff)
-
BazaReklam/OrderDetails.cs (zmodyfikowane) (1 diff)
-
BazaReklam/OrderViewer.cs (zmodyfikowane) (4 diffs)
-
BazaReklam/Properties/AssemblyInfo.cs (zmodyfikowane) (1 diff)
-
BazaReklamSetup/BazaReklamSetup.vdproj (zmodyfikowane) (2 diffs)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
trunk/BazaReklam/Baza Reklam.csproj
r834 r862 33 33 <WebPage>index.htm</WebPage> 34 34 <OpenBrowserOnPublish>false</OpenBrowserOnPublish> 35 <ApplicationVersion>1.1.3 1.0</ApplicationVersion>35 <ApplicationVersion>1.1.33.0</ApplicationVersion> 36 36 <BootstrapperEnabled>false</BootstrapperEnabled> 37 37 </PropertyGroup> … … 754 754 <PublishFile Include="ADODB"> 755 755 <Visible>False</Visible> 756 <PublishState>Exclude</PublishState> 756 757 <Group> 757 758 </Group> 758 759 <TargetPath> 759 760 </TargetPath> 760 <PublishState>Exclude</PublishState>761 761 <FileType>Assembly</FileType> 762 762 </PublishFile> 763 763 <PublishFile Include="Microsoft.ReportViewer.Common"> 764 764 <Visible>False</Visible> 765 <PublishState>Include</PublishState> 765 766 <Group> 766 767 </Group> 767 768 <TargetPath> 768 769 </TargetPath> 769 <PublishState>Include</PublishState>770 770 <FileType>Assembly</FileType> 771 771 </PublishFile> 772 772 <PublishFile Include="Microsoft.ReportViewer.ProcessingObjectModel"> 773 773 <Visible>False</Visible> 774 <PublishState>Include</PublishState> 774 775 <Group> 775 776 </Group> 776 777 <TargetPath> 777 778 </TargetPath> 778 <PublishState>Include</PublishState>779 779 <FileType>Assembly</FileType> 780 780 </PublishFile> 781 781 <PublishFile Include="Microsoft.ReportViewer.WinForms"> 782 782 <Visible>False</Visible> 783 <PublishState>Include</PublishState> 783 784 <Group> 784 785 </Group> 785 786 <TargetPath> 786 787 </TargetPath> 787 <PublishState>Include</PublishState>788 788 <FileType>Assembly</FileType> 789 789 </PublishFile> -
trunk/BazaReklam/Docs/versioninfo.html
r834 r862 6 6 <body> 7 7 <h1>Baza reklam - Informacje o wersji</h1> 8 <div> 9 <a id="1.1.33" /> 10 <h2>Wersja 1.1.33 (2009-10-22)</h2> 11 <p>Opis zmian wprowadzonych do wersji 1.1.33</p> 12 <ul> 13 <li>Poprawiono dane zleceniobierocy na zamówieniach dla Auto Shoppera</li> 14 <li>Poprawiono problem z nieaktywnym polem wybory tytułu w oknie reklama</li> 15 <li>Dodano podpis wystawcy na fakturach dla Poznania i Katowic</li> 16 </ul> 17 </div> 8 18 <div> 9 19 <a id="1.1.31" /> -
trunk/BazaReklam/OrderDetails.cs
r829 r862 836 836 public void DodajNoweZamowienie(int custId, string kodKlienta) 837 837 { 838 tYTULComboBox.Enabled = true; 838 839 nowyRekord = true; 839 840 bylyZmiany = false; -
trunk/BazaReklam/OrderViewer.cs
r732 r862 13 13 using System.Reflection; 14 14 15 using Baza_Reklam.Classes.Helpers; 16 using Baza_Reklam.Classes.Interfaces; 17 using Baza_Reklam.Classes.Model; 18 using Baza_Reklam.Classes.Repositories; 19 15 20 namespace Baza_Reklam 16 21 { 17 22 public partial class OrderViewer : Form 18 23 { 19 private readonly InvoiceProviderTableAdapter invoiceProviderTableAdapter;20 24 private int reklamaId; 21 25 DataSet ds; … … 62 66 public OrderViewer(int idZamowienia, int a) 63 67 { 64 invoiceProviderTableAdapter = new InvoiceProviderTableAdapter();65 invoiceProviderTableAdapter.ClearBeforeFill = true;66 67 68 InitializeComponent(); 68 69 reklamaId = idZamowienia; … … 71 72 72 73 zamowienie2TableAdapter.Connection.ConnectionString = ConnString.getConnString().Value; 73 invoiceProviderTableAdapter.Connection.ConnectionString = ConnString.getConnString().Value;74 74 75 75 reportViewer1.LocalReport.ReportEmbeddedResource = "Baza_Reklam.Raporty.zamowienie2.rdlc"; … … 82 82 reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("zamowienie2", dt)); 83 83 84 int invoiceProviderId = (int) invoiceProviderTableAdapter.GetDataByIdZamowienia(idZamowienia).Rows[0]["Id"]; 85 84 TitleRepository repository = new TitleRepository(ConnString.getConnString().Value); 85 List<Title> _titles = repository.FindAllActive(); 86 87 Title title = _titles.Find(delegate(Title t) { return t.ShortName == dt.Rows[0]["TYTU£"].ToString(); }); 88 86 89 reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("Baza_Reklam_InvoiceProvider", 87 InvoiceProviderFactory.GetInvoiceProvidersById( invoiceProviderId)));90 InvoiceProviderFactory.GetInvoiceProvidersById(title.InvoiceProvider))); 88 91 89 92 jezykComboBox.SelectedIndex = 0; -
trunk/BazaReklam/Properties/AssemblyInfo.cs
r834 r862 30 30 // 31 31 [assembly: AssemblyVersion("1.0.0.0")] 32 [assembly: AssemblyFileVersion("1.1.3 1")]32 [assembly: AssemblyFileVersion("1.1.33")] -
trunk/BazaReklamSetup/BazaReklamSetup.vdproj
r834 r862 656 656 "Name" = "8:Microsoft Visual Studio" 657 657 "ProductName" = "8:Baza Reklam" 658 "ProductCode" = "8:{ 1CFF966D-8387-4AFE-9F80-D8E5082FBA7A}"659 "PackageCode" = "8:{B 1AEB694-BA8A-4D58-9DEF-D159BCFCFF68}"658 "ProductCode" = "8:{27C7FF33-D0F7-453C-AC4E-03F23CCDF24B}" 659 "PackageCode" = "8:{B76A3CEE-151D-4004-ABA2-AC1A9989F523}" 660 660 "UpgradeCode" = "8:{4E2DBBA4-3139-4790-8DDB-7AADFC963A7D}" 661 661 "RestartWWWService" = "11:FALSE" … … 663 663 "DetectNewerInstalledVersion" = "11:TRUE" 664 664 "InstallAllUsers" = "11:TRUE" 665 "ProductVersion" = "8:1.1.3 1"665 "ProductVersion" = "8:1.1.33" 666 666 "Manufacturer" = "8:AACT" 667 667 "ARPHELPTELEPHONE" = "8:"
