Zbiór zmian 783 dla branches/Emisje
- Data:
- 2009-07-27 18:03:43 (17 years ago)
- Lokalizacja:
- branches/Emisje/BazaReklam
- Pliki:
-
- 3 dodane
- 6 zmodyfikowane
-
Baza Reklam.csproj (zmodyfikowane) (2 diffs)
-
EditAdIssue.Designer.cs (dodane)
-
EditAdIssue.cs (dodane)
-
EditAdIssue.resx (dodane)
-
KalendarzEmisji.cs (zmodyfikowane) (4 diffs)
-
OrderDetails.Designer.cs (zmodyfikowane) (13 diffs)
-
OrderDetails.cs (zmodyfikowane) (7 diffs)
-
OrderDetails.resx (zmodyfikowane) (3 diffs)
-
Properties/Resources.Designer.cs (zmodyfikowane) (3 diffs)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
branches/Emisje/BazaReklam/Baza Reklam.csproj
r778 r783 185 185 <DependentUpon>AgentAddForm.cs</DependentUpon> 186 186 </Compile> 187 <Compile Include="EditAdIssue.cs"> 188 <SubType>Form</SubType> 189 </Compile> 190 <Compile Include="EditAdIssue.Designer.cs"> 191 <DependentUpon>EditAdIssue.cs</DependentUpon> 192 </Compile> 187 193 <Compile Include="FakturowaniePoznanKatowice.cs"> 188 194 <SubType>Form</SubType> … … 586 592 <SubType>Designer</SubType> 587 593 <DependentUpon>CenaEmisji.cs</DependentUpon> 594 </EmbeddedResource> 595 <EmbeddedResource Include="EditAdIssue.resx"> 596 <SubType>Designer</SubType> 597 <DependentUpon>EditAdIssue.cs</DependentUpon> 588 598 </EmbeddedResource> 589 599 <EmbeddedResource Include="FakturowaniePoznanKatowice.resx"> -
branches/Emisje/BazaReklam/KalendarzEmisji.cs
r777 r783 4 4 using System.Drawing; 5 5 using System.Windows.Forms; 6 using Baza_Reklam.Classes.Model; 6 7 7 8 namespace Baza_Reklam … … 16 17 string _tytul; 17 18 18 int? _dzial; 19 int? _rozdzial; 20 int _lokalizacja; 19 NavigationColumn _dzial; 20 NavigationSubColumn _rozdzial; 21 21 bool _doDruku; 22 23 private AdLocation _adLocation; 22 24 23 25 … … 40 42 41 43 42 public KalendarzEmisji(REKLAMADataSet.REKLAMARow reklama, REKLAMADataSet.UKAZE_SIE_W_NRDataTable emisje, int? dzial, int? rozdzial, int lokalizacja, bool doDruku)44 public KalendarzEmisji(REKLAMADataSet.REKLAMARow reklama, REKLAMADataSet.UKAZE_SIE_W_NRDataTable emisje, NavigationColumn dzial, NavigationSubColumn rozdzial, AdLocation adLocation, bool doDruku) 43 45 { 44 46 _dzial = dzial; 45 47 _rozdzial = rozdzial; 46 _ lokalizacja = lokalizacja;48 _adLocation = adLocation; 47 49 _doDruku = doDruku; 48 50 … … 114 116 em.dataDodania = DateTime.Today; 115 117 em.Nr_Wydania = Convert.ToInt16(row.Cells[0].Value); 116 em.LokalizacjaId = _lokalizacja; 117 if (_dzial.HasValue) 118 em.DzialId = _dzial.Value; 119 if (_rozdzial.HasValue) 120 em.RozdzialId = _rozdzial.Value; 118 em.LokalizacjaId = _adLocation.Id; 119 em.Lokalizacja = _adLocation.Text; 120 if (_dzial != null) 121 { 122 em.DzialId = _dzial.Id; 123 em.Dzial = _dzial.Name; 124 } 125 if (_rozdzial != null) 126 { 127 em.RozdzialId = _rozdzial.Id; 128 em.Rozdzial = _rozdzial.Name; 129 } 130 121 131 em.DoDruku = _doDruku; 122 132 -
branches/Emisje/BazaReklam/OrderDetails.Designer.cs
r781 r783 70 70 System.Windows.Forms.Label label14; 71 71 System.Windows.Forms.Label label15; 72 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); 73 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); 74 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); 72 75 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); 73 76 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); 74 77 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle(); 75 System.Windows.Forms.DataGridViewCellStyle dzialColumnCellStyle = new System.Windows.Forms.DataGridViewCellStyle();76 System.Windows.Forms.DataGridViewCellStyle rozdzialColumnCellStyle = new System.Windows.Forms.DataGridViewCellStyle();77 System.Windows.Forms.DataGridViewCellStyle lokalizacjaColumnCellStyle = new System.Windows.Forms.DataGridViewCellStyle();78 78 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OrderDetails)); 79 79 this.rEKLAMADataSet = new Baza_Reklam.REKLAMADataSet(); … … 112 112 this.zafakturowana = new System.Windows.Forms.DataGridViewCheckBoxColumn(); 113 113 this.netto = new System.Windows.Forms.DataGridViewTextBoxColumn(); 114 this.ReklamaId Column= new System.Windows.Forms.DataGridViewTextBoxColumn();115 this.Dzial Column= new System.Windows.Forms.DataGridViewTextBoxColumn();116 this.Rozdzial Column= new System.Windows.Forms.DataGridViewTextBoxColumn();117 this.Lokalizacja Column= new System.Windows.Forms.DataGridViewTextBoxColumn();114 this.ReklamaId = new System.Windows.Forms.DataGridViewTextBoxColumn(); 115 this.Dzial = new System.Windows.Forms.DataGridViewTextBoxColumn(); 116 this.Rozdzial = new System.Windows.Forms.DataGridViewTextBoxColumn(); 117 this.Lokalizacja = new System.Windows.Forms.DataGridViewTextBoxColumn(); 118 118 this.rEKLAMAUKAZESIEWNRBindingSource = new System.Windows.Forms.BindingSource(this.components); 119 119 this.uKAZE_SIE_W_NRTableAdapter = new Baza_Reklam.REKLAMADataSetTableAdapters.UKAZE_SIE_W_NRTableAdapter(); … … 194 194 this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components); 195 195 this.btnSaveClose = new System.Windows.Forms.Button(); 196 this.editMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 196 197 sYMBOL_AKWIZYTORALabel = new System.Windows.Forms.Label(); 197 198 tYTULLabel = new System.Windows.Forms.Label(); … … 933 934 this.ukazeSieDataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; 934 935 this.ukazeSieDataGridView.BackgroundColor = System.Drawing.Color.White; 935 dataGridViewCellStyle 4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;936 dataGridViewCellStyle 4.BackColor = System.Drawing.SystemColors.Control;937 dataGridViewCellStyle 4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));938 dataGridViewCellStyle 4.ForeColor = System.Drawing.SystemColors.WindowText;939 dataGridViewCellStyle 4.SelectionBackColor = System.Drawing.SystemColors.Highlight;940 dataGridViewCellStyle 4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;941 dataGridViewCellStyle 4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;942 this.ukazeSieDataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle 4;936 dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; 937 dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control; 938 dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); 939 dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText; 940 dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight; 941 dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText; 942 dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 943 this.ukazeSieDataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1; 943 944 this.ukazeSieDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; 944 945 this.ukazeSieDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { … … 946 947 this.zafakturowana, 947 948 this.netto, 948 this.ReklamaId Column,949 this.Dzial Column,950 this.Rozdzial Column,951 this.Lokalizacja Column});949 this.ReklamaId, 950 this.Dzial, 951 this.Rozdzial, 952 this.Lokalizacja}); 952 953 this.ukazeSieDataGridView.DataSource = this.rEKLAMAUKAZESIEWNRBindingSource; 953 954 this.ukazeSieDataGridView.Location = new System.Drawing.Point(435, 9); … … 969 970 this.nrWydaniaDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; 970 971 this.nrWydaniaDataGridViewTextBoxColumn.DataPropertyName = "Nr Wydania"; 971 dataGridViewCellStyle 5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;972 this.nrWydaniaDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle 5;972 dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; 973 this.nrWydaniaDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle2; 973 974 this.nrWydaniaDataGridViewTextBoxColumn.FillWeight = 149.2386F; 974 975 this.nrWydaniaDataGridViewTextBoxColumn.HeaderText = "Nr wyd."; … … 992 993 this.netto.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; 993 994 this.netto.DataPropertyName = "netto"; 994 dataGridViewCellStyle 6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;995 dataGridViewCellStyle 6.Format = "C";996 this.netto.DefaultCellStyle = dataGridViewCellStyle 6;995 dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; 996 dataGridViewCellStyle3.Format = "C"; 997 this.netto.DefaultCellStyle = dataGridViewCellStyle3; 997 998 this.netto.HeaderText = "Wartoæ"; 998 999 this.netto.Name = "netto"; … … 1002 1003 // ReklamaId 1003 1004 // 1004 this.ReklamaIdColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; 1005 this.ReklamaIdColumn.DataPropertyName = "ReklamaId"; 1006 this.ReklamaIdColumn.HeaderText = "ReklamaId"; 1007 this.ReklamaIdColumn.Name = "ReklamaId"; 1008 this.ReklamaIdColumn.ReadOnly = true; 1009 this.ReklamaIdColumn.Visible = false; 1010 // 1011 // DzialColumn 1012 // 1013 dzialColumnCellStyle.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; 1014 dzialColumnCellStyle.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 1015 this.DzialColumn.DefaultCellStyle = dzialColumnCellStyle; 1016 this.DzialColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; 1017 this.DzialColumn.DataPropertyName = "Dzial"; 1018 this.DzialColumn.HeaderText = "Dzia³"; 1019 this.DzialColumn.Name = "Dzial"; 1020 this.DzialColumn.ReadOnly = true; 1021 this.DzialColumn.Visible = true; 1022 this.DzialColumn.Width = 100; 1023 // 1024 // RozdzialColumn 1025 // 1026 rozdzialColumnCellStyle.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; 1027 rozdzialColumnCellStyle.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 1028 this.RozdzialColumn.DefaultCellStyle = rozdzialColumnCellStyle; 1029 this.RozdzialColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; 1030 this.RozdzialColumn.DataPropertyName = "Rozdzial"; 1031 this.RozdzialColumn.HeaderText = "Rozdzia³"; 1032 this.RozdzialColumn.Name = "Rozdzial"; 1033 this.RozdzialColumn.ReadOnly = true; 1034 this.RozdzialColumn.Visible = true; 1035 this.RozdzialColumn.Width = 100; 1036 // 1037 // LokalizacjaColumn 1038 // 1039 lokalizacjaColumnCellStyle.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; 1040 lokalizacjaColumnCellStyle.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 1041 this.LokalizacjaColumn.DefaultCellStyle = lokalizacjaColumnCellStyle; 1042 this.LokalizacjaColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; 1043 this.LokalizacjaColumn.DataPropertyName = "Lokalizacja"; 1044 this.LokalizacjaColumn.HeaderText = "Lokalizacja"; 1045 this.LokalizacjaColumn.Name = "Lokalizacja"; 1046 this.LokalizacjaColumn.ReadOnly = true; 1047 this.LokalizacjaColumn.Visible = true; 1048 this.LokalizacjaColumn.Width = 100; 1005 this.ReklamaId.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; 1006 this.ReklamaId.DataPropertyName = "ReklamaId"; 1007 this.ReklamaId.HeaderText = "ReklamaId"; 1008 this.ReklamaId.Name = "ReklamaId"; 1009 this.ReklamaId.ReadOnly = true; 1010 this.ReklamaId.Visible = false; 1011 // 1012 // Dzial 1013 // 1014 this.Dzial.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; 1015 this.Dzial.DataPropertyName = "Dzial"; 1016 dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; 1017 dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 1018 this.Dzial.DefaultCellStyle = dataGridViewCellStyle4; 1019 this.Dzial.HeaderText = "Dzia³"; 1020 this.Dzial.Name = "Dzial"; 1021 this.Dzial.ReadOnly = true; 1022 // 1023 // Rozdzial 1024 // 1025 this.Rozdzial.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; 1026 this.Rozdzial.DataPropertyName = "Rozdzial"; 1027 dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; 1028 dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 1029 this.Rozdzial.DefaultCellStyle = dataGridViewCellStyle5; 1030 this.Rozdzial.HeaderText = "Rozdzia³"; 1031 this.Rozdzial.Name = "Rozdzial"; 1032 this.Rozdzial.ReadOnly = true; 1033 // 1034 // Lokalizacja 1035 // 1036 this.Lokalizacja.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; 1037 this.Lokalizacja.DataPropertyName = "Lokalizacja"; 1038 dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; 1039 dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 1040 this.Lokalizacja.DefaultCellStyle = dataGridViewCellStyle6; 1041 this.Lokalizacja.HeaderText = "Lokalizacja"; 1042 this.Lokalizacja.Name = "Lokalizacja"; 1043 this.Lokalizacja.ReadOnly = true; 1049 1044 // 1050 1045 // rEKLAMAUKAZESIEWNRBindingSource … … 1809 1804 this.zmienToolStripMenuItem, 1810 1805 this.usunToolStripMenuItem, 1811 this.anulujToolStripMenuItem}); 1806 this.anulujToolStripMenuItem, 1807 this.editMenuItem}); 1812 1808 this.emisjeContextMenuStrip.Name = "emisjeContextMenuStrip"; 1813 this.emisjeContextMenuStrip.Size = new System.Drawing.Size(1 16, 70);1809 this.emisjeContextMenuStrip.Size = new System.Drawing.Size(153, 114); 1814 1810 // 1815 1811 // zmienToolStripMenuItem 1816 1812 // 1817 1813 this.zmienToolStripMenuItem.Name = "zmienToolStripMenuItem"; 1818 this.zmienToolStripMenuItem.Size = new System.Drawing.Size(1 15, 22);1814 this.zmienToolStripMenuItem.Size = new System.Drawing.Size(152, 22); 1819 1815 this.zmienToolStripMenuItem.Text = "Zmieñ"; 1820 1816 // … … 1822 1818 // 1823 1819 this.usunToolStripMenuItem.Name = "usunToolStripMenuItem"; 1824 this.usunToolStripMenuItem.Size = new System.Drawing.Size(1 15, 22);1820 this.usunToolStripMenuItem.Size = new System.Drawing.Size(152, 22); 1825 1821 this.usunToolStripMenuItem.Text = "Usuñ"; 1826 1822 // … … 1828 1824 // 1829 1825 this.anulujToolStripMenuItem.Name = "anulujToolStripMenuItem"; 1830 this.anulujToolStripMenuItem.Size = new System.Drawing.Size(1 15, 22);1826 this.anulujToolStripMenuItem.Size = new System.Drawing.Size(152, 22); 1831 1827 this.anulujToolStripMenuItem.Text = "Anuluj"; 1832 1828 // … … 1868 1864 this.btnSaveClose.UseVisualStyleBackColor = true; 1869 1865 this.btnSaveClose.Click += new System.EventHandler(this.btnSaveClose_Click); 1866 // 1867 // editMenuItem 1868 // 1869 this.editMenuItem.Name = "editMenuItem"; 1870 this.editMenuItem.Size = new System.Drawing.Size(152, 22); 1871 this.editMenuItem.Text = "Edytuj"; 1870 1872 // 1871 1873 // OrderDetails … … 2062 2064 private System.Windows.Forms.DataGridViewTextBoxColumn dataDataGridViewTextBoxColumn; 2063 2065 private System.Windows.Forms.DataGridViewTextBoxColumn reklamaInfoDodDataGridViewTextBoxColumn; 2066 private System.Windows.Forms.DataGridViewTextBoxColumn ReklamaId; 2067 private System.Windows.Forms.DataGridViewTextBoxColumn Dzial; 2068 private System.Windows.Forms.DataGridViewTextBoxColumn Rozdzial; 2069 private System.Windows.Forms.DataGridViewTextBoxColumn Lokalizacja; 2070 private System.Windows.Forms.ToolStripMenuItem editMenuItem; 2064 2071 2065 2072 -
branches/Emisje/BazaReklam/OrderDetails.cs
r781 r783 133 133 _titles = titleRepository.FindAllActive(); 134 134 135 //NavigationColumnRepository navigationColumnRepository = new NavigationColumnRepository(ConnString.getConnString().Value);136 //_dzialy = navigationColumnRepository.FindAll();137 138 //NavigationSubColumnRepository navigationSubColumnRepository = new NavigationSubColumnRepository(ConnString.getConnString().Value);139 //_rozdzialy = navigationSubColumnRepository.FindAll();140 141 135 AdLocationRepository adPlacementRepository = new AdLocationRepository(ConnString.getConnString().Value); 142 136 ComboBoxHelper.Bind(adPlacementRepository.FindAll(), cbLocation); … … 199 193 anulujToolStripMenuItem.Click += AnulujEmisje; 200 194 zmienToolStripMenuItem.Click += ZmienEmisje; 195 editMenuItem.Click += EdytujEmisje; 201 196 202 197 walutyComboBox.SelectedIndex = 0; … … 1221 1216 rEKLAMADataSet.UKAZE_SIE_W_NR.Copy(); 1222 1217 1223 int? dzial = null; 1224 if (SelectedNavigationColumn != null) 1225 dzial = SelectedNavigationColumn.Id; 1226 1227 int? rozdzial = null; 1228 if (SelectedNavigationColumn != null) 1229 rozdzial = SelectedNavigationSubColumn.Id; 1230 1231 KalendarzEmisji kalendarz = new KalendarzEmisji(Reklama, table, dzial, rozdzial, ((AdLocation)cbLocation.SelectedItem).Id, zATWIERDZONO_DO_DRUKUCheckBox.Checked); 1218 KalendarzEmisji kalendarz = new KalendarzEmisji(Reklama, table, SelectedNavigationColumn, SelectedNavigationSubColumn, (AdLocation)cbLocation.SelectedItem, zATWIERDZONO_DO_DRUKUCheckBox.Checked); 1232 1219 1233 1220 if (kalendarz.ShowDialog() == DialogResult.OK) … … 1291 1278 usunToolStripMenuItem.Visible = false; 1292 1279 anulujToolStripMenuItem.Visible = false; 1280 editMenuItem.Visible = false; 1293 1281 1294 1282 e.ContextMenuStrip = emisjeContextMenuStrip; … … 1304 1292 usunToolStripMenuItem.Visible = false; 1305 1293 anulujToolStripMenuItem.Visible = emisjaRow.status == 0; 1294 editMenuItem.Visible = emisjaRow.status == 0; 1306 1295 1307 1296 e.ContextMenuStrip = emisjeContextMenuStrip; … … 1316 1305 usunToolStripMenuItem.Visible = true; 1317 1306 anulujToolStripMenuItem.Visible = false; 1307 editMenuItem.Visible = false; 1318 1308 1319 1309 foreach (DataGridViewRow r in ukazeSieDataGridView.SelectedRows) … … 1397 1387 ReklamaHelper.AddUpdateIssueChange((double)emisja.ID, staraEmisja, kalendarz.NowaEmisja.Value); 1398 1388 } 1389 } 1390 1391 private void EdytujEmisje(object sender, EventArgs e) 1392 { 1393 EditAdIssue editAdIssue = new EditAdIssue(); 1394 DialogResult dialogResult = editAdIssue.ShowDialog(); 1395 if(dialogResult == DialogResult.OK) 1396 { 1397 REKLAMADataSet.UKAZE_SIE_W_NRRow issue = (REKLAMADataSet.UKAZE_SIE_W_NRRow)((DataRowView)rEKLAMAUKAZESIEWNRBindingSource.Current).Row; 1398 1399 issue.Lokalizacja = editAdIssue.Lokalizacja.Text; 1400 issue.LokalizacjaId = editAdIssue.Lokalizacja.Id; 1401 if (editAdIssue.Dzial!=null) 1402 { 1403 issue.DzialId = editAdIssue.Dzial.Id; 1404 issue.Dzial = editAdIssue.Dzial.Name; 1405 } 1406 1407 if (editAdIssue.Rozdzial != null) 1408 { 1409 issue.RozdzialId = editAdIssue.Rozdzial.Id; 1410 issue.Rozdzial = editAdIssue.Rozdzial.Name; 1411 } 1412 1413 } 1414 1399 1415 } 1400 1416 -
branches/Emisje/BazaReklam/OrderDetails.resx
r776 r783 253 253 <value>17, 54</value> 254 254 </metadata> 255 <metadata name="lISTATYPOWREKLAMYBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">256 <value>17, 54</value>257 </metadata>258 255 <metadata name="lISTA_TYPOW_REKLAMYTableAdapter.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 259 256 <value>17, 91</value> … … 270 267 <metadata name="uKAZE_SIE_W_NRTableAdapter.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 271 268 <value>443, 91</value> 272 </metadata>273 <metadata name="aGENCIBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">274 <value>1113, 91</value>275 269 </metadata> 276 270 <metadata name="aGENCIBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> … … 345 339 <value>True</value> 346 340 </metadata> 347 <metadata name="NR_WYDANIA.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">348 <value>True</value>349 </metadata>350 <metadata name="rEKLAMAReklamaInfoDodBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">351 <value>863, 91</value>352 </metadata>353 341 <metadata name="rEKLAMAReklamaInfoDodBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 354 342 <value>863, 91</value> -
branches/Emisje/BazaReklam/Properties/Resources.Designer.cs
r732 r783 2 2 // <auto-generated> 3 3 // This code was generated by a tool. 4 // Runtime Version:2.0.50727.30 534 // Runtime Version:2.0.50727.3082 5 5 // 6 6 // Changes to this file may cause incorrect behavior and will be lost if … … 78 78 /// Looks up a localized string similar to <test> 79 79 /// <jezyk id="ang"> 80 /// <numeryWydan> Numbers of the issues </numeryWydan>80 /// <numeryWydan>Issues numbers </numeryWydan> 81 81 /// <fakturaZaReklamyZgodnieZzamowieniem>Invoice for ads according to order </fakturaZaReklamyZgodnieZzamowieniem> 82 82 /// <fakturaKorygującaVATnr>Correction invoice number</fakturaKorygującaVATnr> … … 85 85 /// <przedKorekta>Before correction</przedKorekta> 86 86 /// <poKorekcie>After correction</poKorekcie> 87 /// <kwotaZwiekszenia>Increasing amount after [rest of string was truncated]";.87 /// <kwotaZwiekszenia>Increasing amount after tax</k [rest of string was truncated]";. 88 88 /// </summary> 89 89 internal static string faktura {
