zoukankan      html  css  js  c++  java
  • Find out the different MOQ of purchase price

    static void Jimmy_priceDiscTableFromMOQ(Args _args)
    {
        priceDiscTable  priceDiscTable;
        test            test;
        int             i;
    ;
        ttsbegin;
        test.selectForUpdate(true);
        while select test order by test.ItemId
        {
            test.VendAccount = "";
            test.Currency    = "";
            test.Price2     = 0;
            test.Price01    = 0;
            test.Price02    = 0;
            test.Price03    = 0;
            test.Price04    = 0;
            test.Name       = InventTable::find(test.ItemId).ItemName;
            
            while select priceDiscTable
                where priceDiscTable.ItemCode       == TableGroupAll::Table
                &&    priceDiscTable.AccountCode    == TableGroupAll::Table
                &&    priceDiscTable.relation       == PriceType::PricePurch
                &&    priceDiscTable.Module         == ModuleInventCustVend::Vend
                &&    priceDiscTable.ItemRelation   == test.ItemId
                &&   (systemdateget() >= priceDiscTable.fromDate || !priceDiscTable.fromDate) &&
                     (systemdateget() <= priceDiscTable.toDate   || !priceDiscTable.toDate  )
                &&   (priceDiscTable.QuantityAmount == 1         ||  priceDiscTable.QuantityAmount == 2000
                ||    priceDiscTable.QuantityAmount == 5000      ||  priceDiscTable.QuantityAmount == 10000
                ||    priceDiscTable.QuantityAmount == 20000)
             {
                i++;
                test.VendAccount = priceDiscTable.AccountRelation;
                test.Currency    = priceDiscTable.Currency;
                switch(priceDiscTable.QuantityAmount)
                {
                    case 1 :
                        test.Price2  = priceDiscTable.Amount;break;
                    case 2000 :
                        test.Price01 = priceDiscTable.Amount;break;
                    case 5000 :
                        test.Price02 = priceDiscTable.Amount;break;
                    case 10000 :
                        test.Price03 = priceDiscTable.Amount;break;
                    case 20000 :
                        test.Price04 = priceDiscTable.Amount;break;
                    default :
                        break;
                }
             }
             test.doupdate();
         }
         ttscommit;
         info(strfmt("Total updated %1 records!",i));
    }
    
  • 相关阅读:
    sublime开启vim模式
    git命令行界面
    搬进Github
    【POJ 2886】Who Gets the Most Candies?
    【UVA 1451】Average
    【CodeForces 625A】Guest From the Past
    【ZOJ 3480】Duck Typing
    【POJ 3320】Jessica's Reading Problemc(尺取法)
    【HDU 1445】Ride to School
    【HDU 5578】Friendship of Frog
  • 原文地址:https://www.cnblogs.com/Fandyx/p/1886645.html
Copyright © 2011-2022 走看看