Skip links

Form üzerinde ItemId çoğaltmak


Notice: Trying to access array offset on value of type bool in /var/www/vhosts/dmrbt.com/httpdocs/wp-content/themes/boo/rella/extensions/aq_resizer/aq_resizer.php on line 117

Notice: Trying to access array offset on value of type bool in /var/www/vhosts/dmrbt.com/httpdocs/wp-content/themes/boo/rella/extensions/aq_resizer/aq_resizer.php on line 118

Notice: Trying to access array offset on value of type bool in /var/www/vhosts/dmrbt.com/httpdocs/wp-content/themes/boo/rella/extensions/aq_resizer/aq_resizer.php on line 117

Notice: Trying to access array offset on value of type bool in /var/www/vhosts/dmrbt.com/httpdocs/wp-content/themes/boo/rella/extensions/aq_resizer/aq_resizer.php on line 118
Form üzerinde ItemId çoğaltmak

Merhaba
InventTable (Madde kartları) formuda bir stok kodunu çoğaltmak isterseniz bir kaç tabloda kayıt oluşturmanız gerekir. Forda bu işlemler için metodlar mevcut. Bizde formda Create() metodunu kullanarak madde kodu hariç bütün alanları aynı olan bir kayıt oluşturuyoruz. Madde kodunu kullanıcının girmesini bekliyoruz kaydettiğinde Madde kodu hariç bire bir aynı kayıtları elde ediyoruz.
Bunun için inventTable a bir buton ekleyelim ve Clicked() metodundan şu metodu çağıralım.
Burada copyTableFields metodumu kullandım. Şu yazımda bu metottan bahsetmiştim.

 void ItemCopy()
{
    InventTable inventTableCopy;
    InventTableModule InventTableModulePurch ,InventTableModuleInvent, InventTableModuleSales;   
    ;   
    inventTableCopy.data(InventTable);
    InventTableModulePurch.data(Purch);
    InventTableModuleInvent.data(Invent);
    InventTableModuleSales.data(sales); 
    InventTable_ds.create();
    Purch_ds.create();
    Sales_ds.create();
    Invent_ds.create();   
    copyTableFields(inventTableCopy , InventTable);
    copyTableFields(InventTableModulePurch , Purch );
    copyTableFields(InventTableModuleInvent , Invent);
    copyTableFields(InventTableModuleSales , sales);     
    InventTable.ItemId          = “”; 
  }
 
Selamlar.

Join the Discussion