| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901 |
- set feedback off
- -- 删除所有客户端字段记录
- delete from TableColumnConfig t where t.tablekey in (select d.tablekey from TableDefine d where d.tabletype = 2);
- -- 删除所有客户端表记录
- delete from TableDefine t where t.tabletype = 2;
- -- ColumnWidth 默认为0,WEB交易端自己设置宽度,如果表里赋了值则使用表的宽度
- -- AlignType 对齐方式 - 1:居中对齐 2:左对齐 3:右对齐
- -- 现货合同
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_delivery', 2, '现货合同', '', 'web端-现货合同');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'contractno', '合同编号', '250', 10, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'negative', '对手方', '250', 20, 1, 1, '', '', 'negative', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'wrstandardname', '商品', '120', 30, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'biztype', '业务类型', '120', 40, 1, 1, '', '', 'biztype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'pricetype', '定价类型', '120', 50, 1, 1, '', '', 'pricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'currencyname', '结算币种', '120', 60, 1, 1, '', '', 'currencyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'price', '价格', '120', 70, 1, 1, '', '', 'price', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'pricemove', '升贴水', '120', 80, 1, 1, '', '', 'pricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'qty', '合同量', '120', 90, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'amount', '金额', '120', 100, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'margin', '保证金', '120', 110, 1, 1, '', '', 'margin', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'saleusername', '业务员', '300', 120, 1, 1, '', '', 'saleusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'merusername', '跟单员', '300', 130, 1, 1, '', '', 'merusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'contracctstatus', '状态', '120', 140, 1, 1, '', '', 'contracctstatus', 0, 0, '');
- -- 合同待审核
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_delivery_dsh', 2, '现货合同', '', 'web端-现货合同');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'contractno', '合同编号', '250', 10, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'contracttype', '类型', '120', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'negative', '对手方', '250', 30, 1, 1, '', '', 'negative', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'subjectname', '交易主体', '120', 40, 1, 1, '', '', 'subjectname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'wrstandardname', '商品', '120', 50, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'biztype', '业务类型', '120', 60, 1, 1, '', '', 'biztype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'pricetype', '定价类型', '120', 70, 1, 1, '', '', 'pricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'currencyname', '结算币种', '120', 80, 1, 1, '', '', 'currencyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'price', '价格', '120', 90, 1, 1, '', '', 'price', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'pricemove', '升贴水', '120', 100, 1, 1, '', '', 'pricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'qty', '合同量', '120', 110, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'amount', '金额', '120', 120, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'margin', '保证金', '120', 130, 1, 1, '', '', 'margin', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'saleusername', '业务员', '300', 140, 1, 1, '', '', 'saleusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'merusername', '跟单员', '300', 150, 1, 1, '', '', 'merusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'goodscode', '点价合约', '120', 160, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'startdate', '点价期', '200', 170, 1, 1, '', '', 'startdate', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'deliverystartdate', '交收期', '200', 180, 1, 1, '', '', 'deliverystartdate', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'tradeusername', '交易用户', '300', 190, 1, 1, '', '', 'tradeusername', 0, 0, '');
- -- 合同已审核
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_delivery_ysh', 2, '现货合同', '', 'web端-现货合同');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'contracctstatus', '状态', '120', 10, 1, 1, '', '', 'contracctstatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'contractno', '合同编号', '250', 20, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'contracttype', '类型', '120', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'negative', '对手方', '250', 40, 1, 1, '', '', 'negative', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'subjectname', '交易主体', '120', 50, 1, 1, '', '', 'subjectname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'wrstandardname', '商品', '120', 60, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'biztype', '业务类型', '120', 70, 1, 1, '', '', 'biztype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'pricetype', '定价类型', '120', 80, 1, 1, '', '', 'pricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'currencyname', '结算币种', '120', 90, 1, 1, '', '', 'currencyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'price', '价格', '120', 100, 1, 1, '', '', 'price', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'pricemove', '升贴水', '120', 110, 1, 1, '', '', 'pricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'qty', '合同量', '120', 120, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'amount', '金额', '120', 130, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'margin', '保证金', '120', 140, 1, 1, '', '', 'margin', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'saleusername', '业务员', '300', 150, 1, 1, '', '', 'saleusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'merusername', '跟单员', '300', 160, 1, 1, '', '', 'merusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'goodscode', '点价合约', '120', 170, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'startdate', '点价期', '200', 180, 1, 1, '', '', 'startdate', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'deliverystartdate', '交收期', '200', 190, 1, 1, '', '', 'deliverystartdate', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'tradeusername', '交易用户', '300', 200, 1, 1, '', '', 'tradeusername', 0, 0, '');
- -- 客户资料
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_userinfo', 2, '客户资料', '', 'web端-客户资料');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'customername', '客户名称', '160', 10, 1, 1, '', '', 'customername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'nickname', '客户简称', '0', 20, 1, 1, '', '', 'nickname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'userinfotype', '客户类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'contactname', '联系人', '0', 40, 1, 1, '', '', 'contactname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'mobile', '手机号码', '0', 50, 1, 1, '', '', 'mobile', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'status', '状态', '0', 60, 1, 1, '', '', 'status', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'cardtypename', '证件类型', '0', 70, 1, 1, '', '', 'cardtypename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'cardnum', '证件号码', '0', 80, 1, 1, '', '', 'cardnum', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'attachment1', '证件照', '0', 90, 1, 1, '', '', 'attachment1', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'legalpersonname', '法定代表人', '0', 100, 1, 1, '', '', 'legalpersonname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'taxpayernum', '纳税人识别号', '0', 110, 1, 1, '', '', 'taxpayernum', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'email', '邮箱', '0', 120, 1, 1, '', '', 'email', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'address', '地址', '0', 130, 1, 1, '', '', 'address', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'remark', '备注', '0', 140, 1, 1, '', '', 'remark', 0, 0, '');
- -- 仓库信息
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_warehouse', 2, '仓库信息', '', 'web端-仓库信息');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse', 'warehousename', '仓库名称', '0', 10, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse', 'warehousecode', '仓库简称', '0', 20, 1, 1, '', '', 'warehousecode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse', 'warehousetype', '仓库类型', '0', 30, 1, 1, '', '', 'warehousetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse', 'warehousestatus', '状态', '0', 40, 1, 1, '', '', 'warehousestatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse', 'contactname', '联系人', '0', 50, 1, 1, '', '', 'contactname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse', 'contactnum', '联系电话', '0', 60, 1, 1, '', '', 'contactnum', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse', 'provinceid', '所在地区', '0', 70, 1, 1, '', '', 'provinceid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse', 'address', '详细地址', '0', 80, 1, 1, '', '', 'address', 0, 0, '');
- -- 采购合同--待点价
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_purchase_pointprice', 2, '采购_待点价', '', 'web端-采购-待点价');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'contractno', '合同编号', '0', 10, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'nickname', '销售方', '0', 20, 1, 1, '', '', 'nickname,', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'wrstandardname', '商品', '0', 30, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'biztype', '业务类型', '0', 40, 1, 1, '', '', 'biztype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'goodsid', '点价类型', '0', 50, 1, 1, '', '', 'goodsid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'pricetype', '定价类型', '0', 60, 1, 1, '', '', 'pricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'currencyname', '结算币种', '0', 70, 1, 1, '', '', 'currencyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'pricedavg', '均价', '0', 80, 1, 1, '', '', 'pricedavg', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'pricemove', '升贴水', '0', 90, 1, 1, '', '', 'pricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'qty', '合同量', '0', 100, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'pricedamount', '金额', '0', 110, 1, 1, '', '', 'pricedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'unpricedqty', '未定价量', '0', 120, 1, 1, '', '', 'unpricedqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'pricedqty', '已定价量', '0', 130, 1, 1, '', '', 'pricedqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'goodscode', '点价合约', '0', 140, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'startdate,enddate', '点价期', '0', 150, 1, 1, '', '', 'startdate,enddate', 0, 0, '');
- -- 采购合同--履约结算
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_purchase_settle', 2, '采购_履约交收', '', 'web端-采购-履约交收');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'contractno', '合同编号 ', '0', 10, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'nickname', '销售方', '0', 20, 1, 1, '', '', 'nickname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'wrstandardname', '商品', '0', 30, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'biztype', '业务类型', '0', 40, 1, 1, '', '', 'biztype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'goodsid', '点价类型', '0', 50, 1, 1, '', '', 'goodsid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'pricetype', '定价类型', '0', 60, 1, 1, '', '', 'pricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'currencyname', '结算币种', '0', 70, 1, 1, '', '', 'currencyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'price', '价格', '0', 80, 1, 1, '', '', 'price', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'qty', '合同量', '0', 90, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'pricedamount', '金额', '0', 100, 1, 1, '', '', 'pricedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'margin', '保证金', '0', 110, 1, 1, '', '', 'margin', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'pricedqty', '已定价量', '0', 120, 1, 1, '', '', 'pricedqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'reckonrealqty', '已交收量', '0', 130, 1, 1, '', '', 'reckonrealqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'orireckonrealqty', '应交收量', '0', 140, 1, 1, '', '', 'orireckonrealqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'payamount', '已付款额', '0', 160, 1, 1, '', '', 'payamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'unpayamount', '应付款额', '0', 170, 1, 1, '', '', 'unpayamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'invoiceamount', '已收票额', '0', 180, 1, 1, '', '', 'invoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'daikaiamount', '应收票额', '0', 190, 1, 1, '', '', 'daikaiAmount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'deliverystartdate,deliveryenddate', '交收期 ', '200', 200, 1, 1, '', '', 'deliverystartdate,deliveryenddate', 0, 0, '');
- -- 采购合同--全部
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_purchase_all', 2, '采购_全部', '', 'web端-采购-全部');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'contracctstatus', '状态', '0', 10, 1, 1, '', '', 'contracctstatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'nickname', '销售方', '200', 20, 1, 1, '', '', 'nickname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'contractno', '合同编号', '0', 30, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'deliverygoodsname', '现货品种' , '0', 40, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'wrstandardname', '商品' , '200', 50, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'goodscode', '点价合约', '0', 60, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'pricemove', '升贴水', '0', 70, 1, 1, '', '', 'pricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'qty', '合同量', '0', 80, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'unpricedqty', '未定价量', '0', 90, 1, 1, '', '', 'unpricedqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'pricedqty', '已定价量', '0', 100, 1, 1, '', '', 'pricedqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'unsureqty', '未交收量', '0', 110, 1, 1, '', '', 'unsureqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'payamount', '已付款额', '0', 120, 1, 1, '', '', 'payamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'unpayamount', '待付款额', '0', 130, 1, 1, '', '', 'unpayamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'invoiceamount', '已收票额', '0',140, 1, 1, '', '', 'invoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'daikaiamount', '应收票额', '0',150, 1, 1, '', '', 'daikaiAmount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'startdate,enddate', '点价期', '200', 170, 1, 1, '', '', 'startdate,enddate', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_all', 'deliverystartdate,deliveryenddate', '交收期', '200', 160, 1, 1, '', '', 'deliverystartdate,deliveryenddate', 0, 0, '');
- -- 销售--待点价
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_sales_pointprice', 2, '销售_待点价', '', 'web端-销售-待点价');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'contractno', '合同编号', '0', 10, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'nickname', '采购方', '0', 20, 1, 1, '', '', 'nickname,', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'wrstandardname', '商品', '0', 30, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'biztype', '业务类型', '0', 40, 1, 1, '', '', 'biztype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'goodsid', '点价类型', '0', 50, 1, 1, '', '', 'goodsid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'pricetype', '定价类型', '0', 60, 1, 1, '', '', 'pricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'currencyname', '结算币种', '0', 70, 1, 1, '', '', 'currencyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'pricedavg', '均价', '0', 80, 1, 1, '', '', 'pricedavg', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'pricemove', '升贴水', '0', 90, 1, 1, '', '', 'pricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'qty', '合同量', '0', 100, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'pricedamount', '金额', '0', 110, 1, 1, '', '', 'pricedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'unpricedqty', '未定价量', '0', 120, 1, 1, '', '', 'unpricedqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'pricedqty', '已定价量', '0', 130, 1, 1, '', '', 'pricedqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'goodscode', '点价合约', '0', 140, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'startdate,enddate', '点价期', '0', 150, 1, 1, '', '', 'startdate,enddate', 0, 0, '');
- -- 销售--履约交收
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_sales_settle', 2, '销售_履约交收', '', 'web端-销售-履约交收');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'contractno', '合同编号 ', '0', 10, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'nickname', '采购方', '0', 20, 1, 1, '', '', 'nickname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'wrstandardname', '商品', '0', 30, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'biztype', '业务类型', '0', 40, 1, 1, '', '', 'biztype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'goodsid', '点价类型', '0', 50, 1, 1, '', '', 'goodsid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'pricetype', '定价类型', '0', 60, 1, 1, '', '', 'pricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'currencyname', '结算币种', '0', 70, 1, 1, '', '', 'currencyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'price', '价格', '0', 80, 1, 1, '', '', 'price', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'qty', '合同量', '0', 90, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'pricedamount', '金额', '0', 100, 1, 1, '', '', 'pricedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'margin', '保证金', '0', 110, 1, 1, '', '', 'margin', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'pricedqty', '已定价量', '0', 120, 1, 1, '', '', 'pricedqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'reckonrealqty', '已交收量', '0', 130, 1, 1, '', '', 'reckonrealqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'orireckonrealqty', '应交收量', '0', 140, 1, 1, '', '', 'orireckonrealqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'payamount', '已付款额', '0', 160, 1, 1, '', '', 'payamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'unpayamount', '应付款额', '0', 170, 1, 1, '', '', 'unpayamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'invoiceamount', '已收票额', '0', 180, 1, 1, '', '', 'invoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'daikaiamount', '应收票额', '0', 190, 1, 1, '', '', 'daikaiAmount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_settle', 'deliverystartdate,deliveryenddate', '交收期 ', '200', 200, 1, 1, '', '', 'deliverystartdate,deliveryenddate', 0, 0, '');
- -- 销售--全部
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_sales_all', 2, '销售_全部', '', 'web端-销售-全部');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'contracctstatus', '状态', '0', 10, 1, 1, '', '', 'contracctstatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'nickname', '采购方', '200', 20, 1, 1, '', '', 'nickname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'contractno', '合同编号', '0', 30, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'deliverygoodsname', '现货品种', '0', 40, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'wrstandardname', '商品', '200', 50, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'goodscode', '点价合约', '0', 60, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'pricemove', '升贴水', '0', 70, 1, 1, '', '', 'pricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'qty', '合同量', '0', 80, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'unpricedqty', '未定价量', '0', 90, 1, 1, '', '', 'unpricedqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'pricedqty', '已定价量', '0', 100, 1, 1, '', '', 'pricedqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'unsureqty', '未交收量', '0', 110, 1, 1, '', '', 'unsureqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'payamount', '已收款额', '0', 120, 1, 1, '', '', 'payamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'unpayamount', '应收款额', '0', 130, 1, 1, '', '', 'unpayAmount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'invoiceamount', '已开票额', '0',140, 1, 1, '', '', 'invoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'daikaiamount', '应开票额', '0',150, 1, 1, '', '', 'daikaiAmount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'startdate,enddate', '点价期', '200', 170, 1, 1, '', '', 'startdate,enddate', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'deliverystartdate,deliveryenddate', '交收期', '200', 160, 1, 1, '', '', 'deliverystartdate,deliveryenddate', 0, 0, '');
- -- 敞口--实时敞口
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure', 2, '实时敞口', '', 'web端-实时敞口');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'MiddleGoodsName', '套保品种', '0', 10, 1, 1, '', '', 'MiddleGoodsName', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'ENUMDICNAME', '单位', '0', 20, 1, 1, '', '', 'ENUMDICNAME', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'TotalExposure', '总敞口', '0', 30, 1, 1, '', '', 'TotalExposure', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'DiffQty', '总敞口变动量', '150', 40, 1, 1, '', '', 'diffQty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'NeedHedgeExposoure', '套保敞口', '0', 50, 1, 1, '', '', 'NeedHedgeExposoure', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'DiffExposoureQty', '套保敞口变动量', '150', 60, 1, 1, '', '', 'diffExposoureQty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'TotalNeedHedgeQty', '现货应套保总量', '150', 70, 1, 1, '', '', 'TotalNeedHedgeQty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'DiffSpotHedgeQty', '现货应套保总量变动量', '200', 80, 1, 1, '', '', 'diffSpotHedgeQty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'TotalFutureQty', '期货总量', '0', 90, 1, 1, '', '', 'TotalFutureQty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'DiffFutuQty', '期货总量变动量', '0', 100, 1, 1, '', '', 'diffFutuQty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'TotalSpotQty', '现货总量', '0', 110, 1, 1, '', '', 'TotalSpotQty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'DiffSpotQty', '现货总量变动量', '150', 120, 1, 1, '', '', 'DiffSpotQty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'hedgeqty', '套保量', '0', 130, 1, 1, '', '', 'hedgeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'DiffHedgeQty', '套保变动量', '0', 140, 1, 1, '', '', 'diffHedgeQty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'MiddleGoodsHedgeRatio', '套保比例', '0', 150, 1, 1, '', 'FromatterPercent', 'MiddleGoodsHedgeRatio', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'needhedgeqty', '应套保量', '0', 160, 1, 1, '', '', 'needhedgeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'arbitrageqty', '套利量', '0', 170, 1, 1, '', '', 'arbitrageqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'DiffArbitrageQty', '套利变动量', '0', 180, 1, 1, '', '', 'diffArbitrageQty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'needarbitrageratio', '套利比例', '0', 190, 1, 1, '', 'FromatterPercent', 'needarbitrageratio', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'needarbitrageqty', '应套利量', '0', 200, 1, 1, '', '', 'needarbitrageqty', 0, 0, '');
- -- 实时敞口--现货明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure_detail', 2, '实时敞口--现货明细', '', 'web端--实时敞口--现货明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'relateNo', '合同(计划)编号 ', '0', 70, 1, 1, '', '', 'relateNo', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'middlegoodsname', '套保品种', '250', 10, 1, 1, '', '', 'middlegoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'wrstandardname', '现货商品', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'contracttype', '类型', '0', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'qty', '现货商品变动量', '0', 50, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'changeQty', '套保品种变动量', '0', 60, 1, 1, '', '', 'changeQty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'convertfactor', '折算系数', '0', 80, 1, 1, '', '', 'convertfactor', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'createtime', '时间', '0', 20, 1, 1, '', '', 'createtime', 0, 0, '');
- -- 实时敞口--期货明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure_futures_detail', 2, '实时敞口--期货明细', '', 'web端--实时敞口--期货明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'goodsname', '期货合约/代码 ', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'curqty', '当前持仓', '0', 50, 1, 1, '', '', 'curqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'diffqty', '持仓变动量', '0', 40, 1, 1, '', '', 'diffqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'diffhedgeqty', '套保品种变动量', '0', 60, 1, 1, '', '', 'diffhedgeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'convertratio', '期货品种系数 ', '0', 80, 1, 1, '', '', 'convertratio', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'ydqty', '昨日持仓', '0', 30, 1, 1, '', '', 'ydqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'agreeunit', '合约单位', '0', 70, 1, 1, '', '', 'agreeunit', 0, 0, '');
- -- 敞口--现货头寸
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure_spotposition', 2, '敞口--现货头寸', '', 'web端--敞口--现货头寸');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_spotposition', 'deliverygoodsname', '现货品种', '0', 10, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_spotposition', 'deliverygoodscode', '代码', '0', 20, 1, 1, '', '', 'wrstandardcode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_spotposition', 'oritoalspotqty', '昨日数量', '0', 30, 1, 1, '', 'FormatterUnit,enumdicname', 'oritoalspotqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_spotposition', 'increaseqty', '增加数量', '0', 40, 1, 1, '', 'FormatterUnit,enumdicname', 'increaseqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_spotposition', 'decreaseqty', '减少数量', '0', 50, 1, 1, '', '', 'decreaseqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_spotposition', 'totalspotqty', '当前数量', '0', 60, 1, 1, '', 'FormatterUnit,enumdicname', 'totalspotqty', 0, 0, '');
- -- 敞口--现货头寸--现货明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure_spotposition_detail', 2, '敞口--现货头寸--现货明细', '', 'web端-敞口--现货头寸--现货明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_spotposition_detail', 'createtime', '时间', '0', 10, 1, 1, '', '', 'createtime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_spotposition_detail', 'relatedno', '编号 ', '0', 20, 1, 1, '', '', 'relatedno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_spotposition_detail', 'logtype', '类型', '0', 30, 1, 1, '', '', 'logtype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_spotposition_detail', 'deliverygoodsname', '现货品种', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_spotposition_detail', 'qty', '数量', '0', 50, 1, 1, '', 'FormatterUnit,enumdicname', 'qty', 0, 0, '');
- -- 敞口--期货头寸
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure_futuresposition', 2, '敞口--期货头寸', '', 'web端-敞口--期货头寸');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futuresposition', 'goodsname', '期货合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futuresposition', 'goodscode', '代码 ', '0', 20, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futuresposition', 'totalydqty', '昨日数量', '0', 30, 1, 1, '', '', 'totalydqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futuresposition', 'increaseqty', '增加数量', '0', 40, 1, 1, '', '', 'increaseqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futuresposition', 'decreaseqty', '减少数量 ', '0', 50, 1, 1, '', '', 'decreaseqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futuresposition', 'totalcurqty', '当前数量', '0', 60, 1, 1, '', '', 'totalcurqty', 0, 0, '');
- -- 敞口--期货头寸--期货明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure_futuresposition_detail', 2, '敞口--现货头寸--期货明细', '', 'web端-敞口--现货头寸--期货明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futuresposition_detail', 'tradetime', '时间', '0', 10, 1, 1, '', '', 'tradetime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futuresposition_detail', 'goodsname', '期货合约 ', '0', 20, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futuresposition_detail', 'buyorsell', '方向', '0', 30, 1, 1, '', '', 'buyorsell', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futuresposition_detail', 'channelbuildtype', '开平', '0', 40, 1, 1, '', '', 'channelbuildtype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futuresposition_detail', 'tradeqty', '数量(手)', '0', 50, 1, 1, '', '', 'tradeqty', 0, 0, '');
- -- 报表-现货日报表-详情
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_report_spot_detail_day', 2, '现货日报表-详情', '', 'web端-现货日报表-详情');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_spot_detail_day', 'logdatetime', '发生时间', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_spot_detail_day', 'brandname', '商品品类 ', '0', 20, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_spot_detail_day', 'logtypename', '合同类型', '0', 30, 1, 1, '', '', 'logtypename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_spot_detail_day', 'relatedno', '合同编号 ', '0', 40, 1, 1, '', '', 'relatedno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_spot_detail_day', 'biztype', '操作类型', '0', 50, 1, 1, '', '', 'biztype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_spot_detail_day', 'logvalue', '值 ', '0', 60, 1, 1, '', '', 'logvalue', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_spot_detail_day', 'applyname', '操作人', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
- -- 报表-现货月报表-详情
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_report_spot_detail_month', 2, '现货月报表-详情', '', 'web端-现货月报表-详情');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_spot_detail_month', 'reckondate', '日期', '0', 10, 1, 1, '', '', 'reckondate', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_spot_detail_month', 'totalbuypricedqty', '采购定价量', '0', 20, 1, 1, '', '', 'totalbuypricedqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_spot_detail_month', 'totalsellpricedqty', '销售定价量 ', '0', 30, 1, 1, '', '', 'totalsellpricedqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_spot_detail_month', 'todaysellreckonqty', '采购确定量', '0', 40, 1, 1, '', '', 'todaysellreckonqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_spot_detail_month', 'todaysellreckonqty', '销售确定量 ', '0', 50, 1, 1, '', '', 'todaysellreckonqty', 0, 0, '');
- -- 报表-财务报表-款项-日报表
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_report_fincial_payment_day', 2, '报表-财务报表-款项-日报表', '', 'web端-报表-财务报表-款项-日报表');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_payment_day', 'logdatetime', '款项发生时间', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_payment_day', 'logtypename', '合同类型', '0', 20, 1, 1, '', '', 'logtypename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_payment_day', 'relatedno', '合同编号 ', '0', 30, 1, 1, '', '', 'relatedno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_payment_day', 'biztype', '类型', '0', 40, 1, 1, '', '', 'biztype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_payment_day', 'logvalue', '金额 ', '0', 50, 1, 1, '', '', 'logvalue', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_payment_day', 'applyname', '操作人', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
- -- 报表-财务报表-发票-日报表
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_report_fincial_invoice_day', 2, '报表-财务报表-发票-日报表', '', 'web端-报表-财务报表-发票-日报表');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_invoice_day', 'logdatetime', '发票发生时间', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_invoice_day', 'optypename', '合同类型', '0', 20, 1, 1, '', '', 'optypename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_invoice_day', 'relatedno', '合同编号', '0', 30, 1, 1, '', '', 'relatedno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_invoice_day', 'contracttype', '类型', '0', 40, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_invoice_day', 'logvalue', '金额 ', '0', 50, 1, 1, '', '', 'logvalue', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_invoice_day', 'applyname', '操作人', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
- -- 报表-财务报表-月报表
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_report_fincial_month', 2, '报表-财务报表-月报表', '', 'web端-报表-财务报表-月报表');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_month', 'updatetime', '日期', '0', 10, 1, 1, '', '', 'updatetime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_month', 'collectmoneycount', '收笔款数', '0', 20, 1, 1, '', '', 'collectmoneycount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_month', 'collectmoneyamount', '收款金额 ', '0', 30, 1, 1, '', '', 'collectmoneyamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_month', 'paymoneycount', '付款笔数', '0', 40, 1, 1, '', '', 'paymoneycount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_month', 'paymoneyamount', '付款金额 ', '0', 50, 1, 1, '', '', 'paymoneyamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_month', 'payinvoicecount', '收票笔数', '0', 60, 1, 1, '', '', 'payinvoicecount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_month', 'payinvoiceamount', '收票金额 ', '0', 70, 1, 1, '', '', 'payinvoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_month', 'collectinvoicecount', '开票笔数', '0', 80, 1, 1, '', '', 'collectinvoicecount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_report_fincial_month', 'collectinvoiceamount', '开票金额 ', '0', 90, 1, 1, '', '', 'collectinvoiceamount', 0, 0, '');
- -- 业务审核-点价
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_business_aduit_dj', 2, '业务审核-点价', '', 'web端-业务审核-点价');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'contractno', '合同编号', '0', 10, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'contracttype', '合同类型', '0', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'buyusernameOrsellusername', '对手方', '0', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'goodsname', '商品', '0', 40, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'pricetype', '点价类型', '0', 50, 1, 1, '', '', 'pricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'goodscode', '点价合约', '0', 60, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'pricedPrice', '点价价格', '0', 70, 1, 1, '', '', 'pricedPrice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'pricemove', '升贴水', '0', 80, 1, 1, '', '', 'pricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'pricedQty', '点价数量', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'amount', '点价金额', '0', 100, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'applyname', '登记人', '0', 110, 1, 1, '', '', 'contractstatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'applytime', '登记时间', '0', 120, 1, 1, '', '', 'audittime', 0, 0, '');
- -- 业务审核-点价-已审核
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_business_aduit_ydj', 2, '业务审核-点价', '', 'web端-业务审核-点价');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'applystatus', '状态', '0', 10, 1, 1, '', '', 'contractstatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'contractno', '合同编号', '0', 20, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'contracttype', '合同类型', '0', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'buyusernameOrsellusername', '对手方', '0', 40, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'goodsname', '商品', '0', 50, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'pricetype', '点价类型', '0', 60, 1, 1, '', '', 'pricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'goodscode', '点价合约', '0', 70, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'pricedPrice', '点价价格', '0', 80, 1, 1, '', '', 'pricedPrice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'pricemove', '升贴水', '0', 90, 1, 1, '', '', 'pricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'pricedQty', '点价数量', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'amount', '点价金额', '0', 110, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'applyname', '登记人', '0', 120, 1, 1, '', '', 'contractstatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'applytime', '登记时间', '0', 130, 1, 1, '', '', 'audittime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'auditid', '审核人', '0', 140, 1, 1, '', '', 'auditid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'audittime', '审核时间', '0', 150, 1, 1, '', '', 'audittime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'auditremark', '审核意见', '0', 160, 1, 1, '', '', 'auditremark', 0, 0, '');
- -- 业务审核-交收
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_business_aduit_js', 2, '业务审核-交收', '', 'web端-业务审核-交收');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'contractno', '合同编号', '0', 10, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'contracttype', '合同类型', '0', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'buyusernameOrsellusername', '对手方', '0', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'goodsname', '商品', '0', 40, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'operateapplytype', '点价类型', '0', 50, 1, 1, '', '', 'operateapplytype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'reckonrealqty', '交收量', '0', 60, 1, 1, '', '', 'reckonrealqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'reckonotheramount', '其它费用', '0', 70, 1, 1, '', '', 'reckonotheramount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'addmargin||decmargin', '调整保证金', '0', 80, 1, 1, '', '', 'addmargin||decmargin', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'reckonadjustamount', '调整金额', '0', 90, 1, 1, '', '', 'reckonadjustamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'applyname', '登记人', '0', 100, 1, 1, '', '', 'auditname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'applytime', '登记时间', '0', 110, 1, 1, '', '', 'audittime', 0, 0, '');
- -- 业务审核-交收-已审核
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_business_aduit_yjs', 2, '业务审核-交收', '', 'web端-业务审核-交收');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'applystatus', '状态', '0', 10, 1, 1, '', '', 'applystatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'contractno', '合同编号', '0', 40, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'contracttype', '合同类型', '0', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'buyusernameOrsellusername', '对手方', '0', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'goodsname', '商品', '0', 40, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'operateapplytype', '点价类型', '0', 60, 1, 1, '', '', 'operateapplytype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'reckonrealqty', '交收量', '0', 70, 1, 1, '', '', 'reckonrealqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'reckonotheramount', '其它费用', '0', 80, 1, 1, '', '', 'reckonotheramount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'addmargin||decmargin', '调整保证金', '0', 90, 1, 1, '', '', 'addmargin||decmargin', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'reckonadjustamount', '调整金额', '0', 100, 1, 1, '', '', 'reckonadjustamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'applyname', '登记人', '0', 120, 1, 1, '', '', 'auditname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'applytime', '登记时间', '0', 110, 1, 1, '', '', 'audittime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'auditid', '审核人', '0', 130, 1, 1, '', '', 'auditid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'audittime', '审核时间', '0', 130, 1, 1, '', '', 'audittime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'auditremark', '审核意见', '0', 130, 1, 1, '', '', 'auditremark', 0, 0, '');
- -- 财务审核-发票
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_fincial_aduit_fp', 2, '业务审核-发票', '', 'web端-业务审核-发票');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'contractno', '合同编号', '0', 10, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'buyusernameOrsellusername', '对手方', '0', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'goodsname', '商品', '0', 20, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'contracttype', '合同类型', '0', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'invoicetype', '发票类型', '0', 40, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'invoiceamount', '金额', '0', 50, 1, 1, '', '', 'invoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'applyname', '登记人', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'applytime', '登记时间', '0', 70, 1, 1, '', '', 'applytime', 0, 0, '');
- -- 财务审核-发票-已审核
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_fincial_aduit_yfp', 2, '业务审核-发票', '', 'web端-业务审核-发票');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'applystatus', '状态', '0', 10, 1, 1, '', '', 'applystatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'contractno', '合同编号', '0', 20, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'buyusernameOrsellusername', '对手方', '0', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'goodsname', '商品', '0', 40, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'contracttype', '合同类型', '0', 50, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'invoicetype', '发票类型', '0', 60, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'invoiceamount', '金额', '0', 70, 1, 1, '', '', 'invoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'applyname', '登记人', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'applytime', '登记时间', '0', 90, 1, 1, '', '', 'applytime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'auditid', '审核人', '0', 100, 1, 1, '', '', 'auditid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'audittime', '审核时间', '0', 110, 1, 1, '', '', 'audittime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'auditremark', '审核意见', '0', 120, 1, 1, '', '', 'auditremark', 0, 0, '');
- -- 财务审核-款项
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_fincial_aduit_kx', 2, '财务审核-款项', '', 'web端-财务审核-款项');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_kx', 'contractno', '合同编号', '0', 10, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_kx', 'buyusernameOrsellusername', '对手方', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_kx', 'goodsname', '商品', '0', 30, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_kx', 'contracttype', '合同类型', '0', 40, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_kx', 'kxtype', '款项类型', '0', 50, 1, 1, '', '', 'kxtype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_kx', 'payamount', '金额', '0', 60, 1, 1, '', '', 'payamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_kx', 'applyname', '登记人', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_kx', 'applytime', '登记时间', '0', 80, 1, 1, '', '', 'applytime', 0, 0, '');
- -- 财务审核-款项-已审核
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_fincial_aduit_ykx', 2, '财务审核-款项', '', 'web端-财务审核-款项');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'contractstatus', '状态', '0', 10, 1, 1, '', '', 'contractstatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'contractno', '合同编号', '0', 20, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'buyusernameOrsellusername', '对手方', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'goodsname', '商品', '0', 40, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'contracttype', '合同类型', '0', 50, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'kxtype', '款项类型', '0', 60, 1, 1, '', '', 'kxtype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'payamount', '金额', '0', 70, 1, 1, '', '', 'payamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'applyname', '登记人', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'applytime', '登记时间', '0', 90, 1, 1, '', '', 'applytime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'auditid', '审核人', '0', 100, 1, 1, '', '', 'auditid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'audittime', '审核时间', '0', 110, 1, 1, '', '', 'audittime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'auditremark', '审核意见', '0', 120, 1, 1, '', '', 'auditremark', 0, 0, '');
- -- 库存审核 - 入库
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_stock_aduit_in', 2, '库存审核-入库', '', 'web端-库存审核-入库');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'inouttype', '出入库类型', '0', 10, 1, 1, '', '', 'inouttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'contractno', '合同编号', '0', 20, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'buynicknameOrsellusername', '对手方', '0', 30, 1, 1, '', '', 'buynicknameOrsellusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'wrstandardname', '商品', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'contracttype', '合同类型', '0', 50, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'brandname', '品牌', '0', 60, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'warehousecode', '仓库', '0', 70, 1, 1, '', '', 'warehousecode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'qty', '数量', '0', 80, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'pricetype', '点价类型', '0', 90, 1, 1, '', '', 'pricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'applyname', '登记人', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'applytime', '登记时间', '0', 110, 1, 1, '', '', 'applytime', 0, 0, '');
- -- 库存审核 - 入库 - 已审核
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_stock_aduit_yin', 2, '库存审核-入库', '', 'web端-库存审核-入库');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'applystatus', '状态', '0', 10, 1, 1, '', '', 'applystatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'inouttype', '出入库类型', '0', 20, 1, 1, '', '', 'inouttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'contractno', '合同编号', '0', 30, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'buynicknameOrsellusername', '对手方', '0', 40, 1, 1, '', '', 'buynicknameOrsellusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'wrstandardname', '商品', '0', 50, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'contracttype', '合同类型', '0', 60, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'brandname', '品牌', '0', 70, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'warehousecode', '仓库', '0', 80, 1, 1, '', '', 'warehousecode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'qty', '数量', '0', 90, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'pricetype', '点价类型', '0', 100, 1, 1, '', '', 'pricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'applyname', '登记人', '0', 110, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'applytime', '登记时间', '0', 120, 1, 1, '', '', 'applytime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'auditid', '审核人', '0', 130, 1, 1, '', '', 'auditid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'audittime', '审核时间', '0', 140, 1, 1, '', '', 'audittime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'auditremark', '审核意见', '0', 150, 1, 1, '', '', 'auditremark', 0, 0, '');
- -- 库存审核-出库
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_stock_aduit_out', 2, '库存审核-出库', '', 'web端-库存审核-出库');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_out', 'applystatus', '状态', '0', 10, 1, 1, '', '', 'applystatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_out', 'inouttype', '出库类型', '0', 20, 1, 1, '', '', 'inouttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_out', 'deliverygoodsname', '现货品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_out', 'wrstandardname', '品类', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_out', 'brandname', '品牌', '0', 50, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_out', 'warehousecode', '仓库', '0', 60, 1, 1, '', '', 'warehousecode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_out', 'contracttype', '合同类型', '0', 70, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_out', 'buynicknameOrsellusername', '对手方', '0', 80, 1, 1, '', '', 'buynicknameOrsellusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_out', 'contractno', '合同编号', '0', 90, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_out', 'pricetype', '点价类型', '0', 100, 1, 1, '', '', 'pricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_out', 'applytime', '登记时间', '0', 110, 1, 1, '', '', 'applytime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_out', 'applyname', '登记人', '0', 120, 1, 1, '', '', 'applyname', 0, 0, '');
- -- 库存管理 --
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_manager_warehouse_manager', 2, '库存管理-库存管理', '', 'web端-库存管理-库存管理');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager', 'applystatus', '现货品种', '0', 10, 1, 1, '', '', 'applystatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager', 'inouttype', '商品', '0', 20, 1, 1, '', '', 'inouttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager', 'deliverygoodsname', '品牌', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager', 'wrstandardname', '仓库', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager', 'brandname', '昨日量', '0', 50, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager', 'warehousecode', '今日库存量', '0', 60, 1, 1, '', '', 'warehousecode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager', 'contracttype', '今日出库量', '0', 70, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager', 'buynicknameOrsellusername', '今日量', '0', 80, 1, 1, '', '', 'buynicknameOrsellusername', 0, 0, '');
- -- 仓库管理 -- 入库明细 --
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_manager_warehouse_manager_in', 2, '库存管理-入库明细', '', 'web端-库存管理-入库明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_in', 'applystatus', '现货品种', '0', 10, 1, 1, '', '', 'applystatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_in', 'inouttype', '商品', '200', 20, 1, 1, '', '', 'inouttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_in', 'deliverygoodsname', '品牌', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_in', 'wrstandardname', '仓库', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_in', 'brandname', '入库类型', '0', 50, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_in', 'warehousecode', '入库数量', '0', 60, 1, 1, '', '', 'warehousecode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_in', 'contracttype', '合同编号', '200', 70, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_in', 'buynicknameOrsellusername', '入库登记时间', '200', 80, 1, 1, '', '', 'buynicknameOrsellusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_in', 'buynicknameOrsellusername', '入库登记人', '0', 90, 1, 1, '', '', 'buynicknameOrsellusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_in', 'buynicknameOrsellusername', '入库审核时间', '200', 100, 1, 1, '', '', 'buynicknameOrsellusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_in', 'buynicknameOrsellusername', '入库审核人', '0', 110, 1, 1, '', '', 'buynicknameOrsellusername', 0, 0, '');
- -- 仓库管理 -- 出库明细 --
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_manager_warehouse_manager_out', 2, '库存管理-出库明细', '', 'web端-库存管理-出库明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_out', 'applystatus', '现货品种', '0', 10, 1, 1, '', '', 'applystatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_out', 'inouttype', '商品', '0', 20, 1, 1, '', '', 'inouttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_out', 'deliverygoodsname', '品牌', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_out', 'wrstandardname', '仓库', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_out', 'brandname', '出库类型', '0', 50, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_out', 'warehousecode', '出库数量', '0', 60, 1, 1, '', '', 'warehousecode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_out', 'contracttype', '合同编号', '200', 70, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_out', 'buynicknameOrsellusername', '出库登记时间', '200', 80, 1, 1, '', '', 'buynicknameOrsellusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_out', 'buynicknameOrsellusername', '出库登记人', '0', 90, 1, 1, '', '', 'buynicknameOrsellusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_out', 'buynicknameOrsellusername', '出库审核时间', '200', 100, 1, 1, '', '', 'buynicknameOrsellusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_manager_warehouse_manager_out', 'buynicknameOrsellusername', '出库审核人', '0', 110, 1, 1, '', '', 'buynicknameOrsellusername', 0, 0, '');
- -- 库存管理-当前库存
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_stock_manage_current', 2, '库存管理-当前库存', '', '手机端-库存管理-当前库存');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_current', 'userinfotype', '现货品种', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_current', 'userinfotype', '品类', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_current', 'userinfotype', '品牌', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_current', 'userinfotype', '仓库', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_current', 'userinfotype', '昨日量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_current', 'userinfotype', '今日量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_current', 'userinfotype', '今日入库量', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_current', 'userinfotype', '今日出库量', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
- -- 库存管理-申请记录
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_stock_manage_applylog', 2, '库存管理-当前库存', '', 'web端-库存管理-当前库存');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_applylog', 'userinfotype', '登记时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_applylog', 'userinfotype', '审核时间', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_applylog', 'userinfotype', '现货品种', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_applylog', 'userinfotype', '类型', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_applylog', 'userinfotype', '数量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_applylog', 'userinfotype', '状态', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_applylog', 'userinfotype', '合同编号', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_applylog', 'userinfotype', '品类', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_applylog', 'userinfotype', '品牌', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_applylog', 'userinfotype', '仓库', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_applylog', 'userinfotype', '申请人', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_manage_applylog', 'userinfotype', '审核人', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
- -- 业务 - 计划 -
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_hedging_plan', 2, '业务-套保计划', '', 'web端-业务-套保计划');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'hedgeplanno', '计划名称', '0', 10, 1, 1, '', '', 'hedgeplanno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'wrstandardname', '商品', '0', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'contracttype', '类型', '0', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'currencyname', '结算币种', '0', 40, 1, 1, '', '', 'currencyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'planqty', '计划量', '0', 50, 1, 1, '', '', 'planqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'hedgeplanstatus', '状态', '0', 60, 1, 1, '', '', 'hedgeplanstatus', 0, 0, '');
- -- 查询-库存查询-当前库存
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_current_inventory', 2, '库存查询-当前库存', '', 'web端-库存查询-当前库存');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_current_inventory', 'deliverygoodsname', '现货品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_current_inventory', 'wrstandardname', '商品', '0', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_current_inventory', 'brandname', '品牌', '0', 30, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_current_inventory', 'warehousecode', '仓库', '0', 40, 1, 1, '', '', 'warehousecode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_current_inventory', 'curstock', '今日量', '0', 50, 1, 1, '', '', 'curstock', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_current_inventory', 'diffqty', '今日变动', '0', 60, 1, 1, '', '', 'diffqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_current_inventory', 'oristock', '昨日量', '0', 70, 1, 1, '', '', 'oristock', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_current_inventory', 'todayproduceinqty', '今日入库量', '0', 80, 1, 1, '', '', 'todayproduceinqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_current_inventory', 'todayproduceoutqty', '今日出库量', '0', 90, 1, 1, '', '', 'todayproduceoutqty', 0, 0, '');
- -- 查询-库存查询-申请记录
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_application_record', 2, '库存查询-申请记录', '', 'web端-库存查询-申请记录');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'deliverygoodsname', '现货品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'wrstandardname', '品类', '0', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'brandname', '品牌', '0', 30, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'warehousecode', '仓库', '0', 40, 1, 1, '', '', 'warehousecode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'pricetype', '类型', '0', 50, 1, 1, '', '', 'pricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'applystatus', '状态', '0', 60, 1, 1, '', '', 'applystatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'qty', '数量', '0', 70, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'contractno', '合同编号', '0', 80, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'applytime', '登记时间', '0', 90, 1, 1, '', '', 'hedgeplanstatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'applyname', '登记人', '0', 100, 1, 1, '', '', 'hedgeplanstatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'userinfotype', '审核时间', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'auditname', '审核人', '0', 120, 1, 1, '', '', 'hedgeplanstatus', 0, 0, '');
- -- 现货合同详情 - 点价记录
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_someprice_detail_dj', 2, '现货合同详情-点价记录', '', 'web端-现货合同详情-点价记录');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_dj', 'applytime', '点价登记时间', '0', 10, 1, 1, '', '', 'applytime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_dj', 'audittime', '点价审核时间', '0', 20, 1, 1, '', '', 'audittime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_dj', 'applystatus', '状态', '0', 90, 1, 1, '', '', 'applystatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_dj', 'pricedPrice', '点价价格', '0', 30, 1, 1, '', '', 'pricedPrice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_dj', 'pricemove', '升贴水', '0', 40, 1, 1, '', '', 'pricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_dj', 'pricedQty', '点价数量', '0', 50, 1, 1, '', '', 'pricedQty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_dj', 'amount', '点价金额', '0', 60, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_dj', 'applyname', '申请人', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_dj', 'auditname', '审核人', '0', 80, 1, 1, '', '', 'auditname', 0, 0, '');
- -- 现货合同详情 - 交收记录
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_someprice_detail_js', 2, '现货合同详情-交收记录', '', 'web端-现货合同详情-交收记录');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_js', 'applytime', '交收登记时间', '0', 10, 1, 1, '', '', 'applytime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_js', 'audittime', '交收审核时间', '0', 20, 1, 1, '', '', 'audittime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_js', 'applystatus', '状态', '0', 90, 1, 1, '', '', 'applystatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_js', 'reckonrealqty', '交收量', '0', 30, 1, 1, '', '', 'reckonrealqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_js', 'reckonotheramount', '其他费用', '0', 40, 1, 1, '', '', 'reckonotheramount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_js', 'addmargin', '调整保证金', '0', 50, 1, 1, '', '', 'addmargin', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_js', 'reckonadjustamount', '调整金额', '0', 60, 1, 1, '', '', 'reckonadjustamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_js', 'applyname', '申请人', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_js', 'auditname', '审核人', '0', 80, 1, 1, '', '', 'auditname', 0, 0, '');
- -- 现货和同详情 - 款项记录
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_someprice_detail_kx', 2, '现货合同详情-款项记录', '', 'web端-现货合同详情-款项记录');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_kx', 'applytime', '款项登记时间', '0', 10, 1, 1, '', '', 'applytime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_kx', 'audittime', '款项审核时间', '0', 20, 1, 1, '', '', 'audittime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_kx', 'applystatus', '状态', '0', 70, 1, 1, '', '', 'applystatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_kx', 'kxtype', '款项类型', '0', 30, 1, 1, '', '', 'kxtype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_kx', 'payamount', '金额', '0', 40, 1, 1, '', '', 'payamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_kx', 'applyname', '申请人', '0', 50, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_kx', 'auditname', '审核人', '0', 60, 1, 1, '', '', 'auditname', 0, 0, '');
- -- 现货合同详情 - 发票记录
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_someprice_detail_fp', 2, '现货合同详情-发票记录', '', 'web端-现货合同详情-发票记录');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_fp', 'applytime', '发票登记时间', '0', 10, 1, 1, '', '', 'applytime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_fp', 'audittime', '发票审核时间', '0', 20, 1, 1, '', '', 'audittime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_fp', 'applystatus', '状态', '0', 70, 1, 1, '', '', 'applystatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_fp', 'contracttype', '发票类型', '0', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_fp', 'invoiceamount', '金额', '0', 40, 1, 1, '', '', 'invoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_fp', 'applyname', '申请人', '0', 50, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_fp', 'auditname', '审核人', '0', 60, 1, 1, '', '', 'auditname', 0, 0, '');
- -- 现货合同详情 - 入库记录
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_someprice_detail_stock', 2, '现货合同详情-入库记录', '', 'web端-现货合同详情-入库记录');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock', 'applytime', '入库登记时间', '0', 10, 1, 1, '', '', 'applytime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock', 'audittime', '入库审核时间', '0', 20, 1, 1, '', '', 'audittime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock', 'deliverygoodsname', '现货品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock', 'wrstandardname', '商品', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock', 'brandname', '品牌', '0', 50, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock', 'warehousename', '仓库', '0', 60, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock', 'inouttype', '类型', '0', 70, 1, 1, '', '', 'inouttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock', 'qty', '数量', '0', 80, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock', 'applyname', '申请人', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock', 'auditname', '审核人', '0', 100, 1, 1, '', '', 'auditname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock', 'applystatus', '状态', '0', 110, 1, 1, '', '', 'applystatus', 0, 0, '');
- -- 现货合同详情 - 出库记录
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_someprice_detail_stock_out', 2, '现货合同详情-出库记录', '', 'web端-现货合同详情-出库记录');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock_out', 'applytime', '出库登记时间', '0', 10, 1, 1, '', '', 'applytime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock_out', 'audittime', '出库审核时间', '0', 20, 1, 1, '', '', 'audittime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock_out', 'deliverygoodsname', '现货品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock_out', 'wrstandardname', '商品', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock_out', 'brandname', '品牌', '0', 50, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock_out', 'warehousename', '仓库', '0', 60, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock_out', 'inouttype', '类型', '0', 70, 1, 1, '', '', 'inouttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock_out', 'qty', '数量', '0', 80, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock_out', 'applyname', '申请人', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock_out', 'auditname', '审核人', '0', 100, 1, 1, '', '', 'auditname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_stock_out', 'applystatus', '状态', '0', 110, 1, 1, '', '', 'applystatus', 0, 0, '');
- -- 现货合同详情 - 变更记录
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_someprice_detail_change', 2, '现货合同详情-变更记录', '', 'web端-现货合同详情-变更记录');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_change', 'updatetime', '变更时间', '0', 10, 1, 1, '', '', 'updatetime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_change', 'operatelogtypedesc', '类型', '0', 20, 1, 1, '', '', 'operatelogtypedesc', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_someprice_detail_change', 'applyname', '操作人', '0', 30, 1, 1, '', '', 'applyname', 0, 0, '');
- -- 报表 - 敞口报表
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure_report', 2, '报表-敞口报表', '', 'web端-报表-敞口报表');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'accountname', '交易用户', '0', 10, 1, 1, '', '', 'accountname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'middlegoodsname', '套保品种', '0', 20, 1, 1, '', '', 'middlegoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'enumdicname', '单位', '0', 30, 1, 1, '', '', 'enumdicname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'totalexposure', '总敞口', '0', 40, 1, 1, '', '', 'totalexposure', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'diffqty', '总敞口变动量', '160', 50, 1, 1, '', '', 'diffqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'needhedgeexposoure', '套保敞口', '0', 60, 1, 1, '', '', 'needhedgeexposoure', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'diffexposure', '套保敞口变动量', '160', 70, 1, 1, '', '', 'diffexposure', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'totalneedhedgeqty', '现货应套保总量', '160', 80, 1, 1, '', '', 'totalneedhedgeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'diffhedgeqty', '现货应套保总量变动量', '200', 90, 1, 1, '', '', 'diffhedgeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'totalfutureqty', '期货总量', '0', 100, 1, 1, '', '', 'totalfutureqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'difffutuqty', '期货总量变动量', '160', 110, 1, 1, '', '', 'difffutuqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'totalspotqty', '现货总量', '0', 120, 1, 1, '', '', 'totalspotqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'diffspotqty', '现货总量变动量', '160', 130, 1, 1, '', '', 'diffspotqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'hedgeqty', '套保量', '0', 140, 1, 1, '', '', 'hedgeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'diffmgqtya', '套保变动量', '0', 150, 1, 1, '', '', 'diffmgqtya', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'mgneedhedgeratio', '套保比例', '0', 160, 1, 1, '', 'FromatterPercent', 'mgneedhedgeratio', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'needhedgeqty', '应套保量', '0', 170, 1, 1, '', '', 'needhedgeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'arbitrageqty', '套利量', '0', 180, 1, 1, '', '', 'arbitrageqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'diffmgqtyb', '套利变动量', '0', 190, 1, 1, '', '', 'diffmgqtyb', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'needarbitrageratio', '套利比例', '0', 200, 1, 1, '', 'FromatterPercent', 'needarbitrageratio', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_report', 'needarbitrageqty', '应套利量', '0', 210, 1, 1, '', '', 'needarbitrageqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- -- 报表 - 期货报表
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_futures_report', 2, '报表-期货报表', '', 'web端-报表-期货报表');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'goodscode', '交易合约', '0', 10, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'buyorsell', '持仓方向', '0', 20, 1, 1, '', '', 'buyorsell', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'holdqty', '期末持仓量', '0', 30, 1, 1, '', '', 'holdqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'reckonprice', '结算价', '0', 40, 1, 1, '', '', 'reckonprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'charge', '手续费', '0', 50, 1, 1, '', '', 'charge', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'closepl', '平仓损益', '0', 60, 1, 1, '', '', 'closepl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'reckonpl', '结算损益', '0', 70, 1, 1, '', '', 'reckonpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'todayopenqty', '今开仓量', '0', 80, 1, 1, '', '', 'todayopenqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'openavgprice', '开仓均价', '0', 90, 1, 1, '', '', 'openavgprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'todaycloseqty', '今平仓量', '0', 100, 1, 1, '', '', 'todaycloseqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'closeavgprice', '平仓均价', '0', 110, 1, 1, '', '', 'closeavgprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'goodsgroupspotqty', '交易品种期末量', '0', 120, 1, 1, '', 'FormatterUnit,enumdicname', 'goodsgroupspotqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'todaymiddlegoodsqty', '套保品种变动量', '0', 130, 1, 1, '', 'FormatterUnit,enumdicname', 'todaymiddlegoodsqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'openamount', '期末开仓额', '0', 140, 1, 1, '', '', 'openamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'holdamount', '期末持仓额', '0', 150, 1, 1, '', '', 'holdamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'reckonholdamount', '结算持仓额', '0', 160, 1, 1, '', '', 'reckonholdamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'todayopenamount', '今开仓额', '0', 170, 1, 1, '', '', 'todayopenamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'todaycloseamount', '今平仓额', '0', 180, 1, 1, '', '', 'todaycloseamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'oriholdqty', '期初持仓量', '0', 190, 1, 1, '', '', 'oriholdqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'oriopenamount', '期初开仓额', '0', 200, 1, 1, '', '', 'oriopenamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_report', 'oriholdamount', '期初持仓额', '0', 210, 1, 1, '', '', 'oriholdamount', 0, 0, '');
- -- 报表 - 现货报表
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_report', 2, '报表-现货报表', '', 'web端-报表-现货报表');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'accountname', '交易用户', '0', 10, 1, 1, '', '', 'accountname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'deliverygoodsname', '现货品种', '0', 20, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'wrstandardname', '商品', '0', 30, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'unitidname', '单位', '0', 40, 1, 1, '', '', 'unitidname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'currencyname', '结算币种', '0', 50, 1, 1, '', '', 'currencyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'curqty', '期末量', '0', 60, 1, 1, '', '', 'curqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'curamount', '期末额', '0', 70, 1, 1, '', '', 'curamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'curaverageprice', '期末均价', '0', 80, 1, 1, '', '', 'curaverageprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'actualpl', '现货损益', '0', 90, 1, 1, '', '', 'actualpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'curspotprice', '最新价', '0', 100, 1, 1, '', '', 'curspotprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'curmarketvalue', '期末市值', '0', 110, 1, 1, '', '', 'curmarketvalue', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'floatpl', '浮动损益', '0', 120, 1, 1, '', '', 'floatpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'todaybuyqty', '今采购量', '0', 130, 1, 1, '', '', 'todaybuyqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'todaysellqty', '今销售量', '0', 140, 1, 1, '', '', 'todaysellqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'todaybuyamount', '今采购额', '0', 150, 1, 1, '', '', 'todaybuyamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'todaysellamount', '今销售额', '0', 160, 1, 1, '', '', 'todaysellamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'todaybuyaverageprice', '采购均价', '0', 170, 1, 1, '', '', 'todaybuyaverageprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'todaysellaverageprice', '销售均价', '0', 180, 1, 1, '', '', 'todaysellaverageprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'oriqty', '期初量', '0', 190, 1, 1, '', '', 'todaybuyqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'oriamount', '期初额', '0', 200, 1, 1, '', '', 'oriamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report', 'oriaverageprice', '期初均价', '0', 210, 1, 1, '', '', 'oriaverageprice', 0, 0, '');
- -- 报表 - 财务报表
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_finance_report', 2, '报表-财务报表', '', 'web端-报表-财务报表');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'accountname', '交易用户', '0', 10, 1, 1, '', '', 'accountname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'currencyname', '结算币种', '0', 20, 1, 1, '', '', 'currencyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'buyunpaidamount', '应付货款额', '0', 30, 1, 1, '', '', 'buyunpaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'buyprepaidamount', '预付货款额', '0', 40, 1, 1, '', '', 'buyprepaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'buytodaysettleamount', '今付货款额', '0', 50, 1, 1, '', '', 'buytodaysettleamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'buyuninvoicedamount', '应收票额', '0', 60, 1, 1, '', '', 'buyuninvoicedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'buypreinvoicedamount', '预收票额', '0', 70, 1, 1, '', '', 'buypreinvoicedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'buytodayinvoiceamount', '今收票额', '0', 80, 1, 1, '', '', 'buytodayinvoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'selltodayrefundamount', '今付退款额', '0', 90, 1, 1, '', '', 'selltodayrefundamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'todaypaysum', '今付款合计', '0', 100, 1, 1, '', '', 'todaypaysum', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'sellunpaidamount', '应收货款额', '0', 110, 1, 1, '', '', 'sellunpaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'sellprepaidamount', '预收货款额', '0', 120, 1, 1, '', '', 'sellprepaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'selltodaysettleamount', '今收货款额', '0', 130, 1, 1, '', '', 'selltodaysettleamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'selluninvoicedamount', '应开票额', '0', 140, 1, 1, '', '', 'selluninvoicedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'sellpreinvoicedamount', '预开票额', '0', 150, 1, 1, '', '', 'sellpreinvoicedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'selltodayinvoiceamount', '今开票额', '0', 160, 1, 1, '', '', 'selltodayinvoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'buytodayrefundamount', '今收退款额', '0', 170, 1, 1, '', '', 'buytodayrefundamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_finance_report', 'todayreceivesum', '今收款合计', '0', 180, 1, 1, '', '', 'todayreceivesum', 0, 0, '');
- -- 报表 - 库存报表(品类)
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_warehouse_category_report', 2, '报表-库存报表', '', 'web端-报表-库存报表(品类)');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_category_report', 'deliverygoodsname', '现货品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_category_report', 'wrstandardname', '现货商品', '0', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_category_report', 'enumdicname', '单位', '0', 30, 1, 1, '', '', 'enumdicname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_category_report', 'curstock', '期末库存量', '0', 40, 1, 1, '', '', 'curstock', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_category_report', 'diffqty', '库存变化量', '0', 50, 1, 1, '', '', 'diffqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_category_report', 'todaybuyinqty', '采购入库量', '0', 60, 1, 1, '', '', 'todaybuyinqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_category_report', 'todayselloutqty', '销售出库量', '0', 70, 1, 1, '', '', 'todayselloutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_category_report', 'todayproduceinqty', '内部入库量', '0', 80, 1, 1, '', '', 'todayproduceinqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_category_report', 'todayproduceoutqty', '内部出库量', '0', 90, 1, 1, '', '', 'todayproduceoutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_category_report', 'unbuyinqty', '采购未入库量', '0', 100, 1, 1, '', '', 'unbuyinqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_category_report', 'unselloutqty', '销售未出库量', '0', 110, 1, 1, '', '', 'unselloutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_category_report', 'oristock', '期初库存量', '0', 120, 1, 1, '', '', 'oristock', 0, 0, '');
- -- 报表 - 库存报表(仓库)
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_warehouse_report', 2, '报表-库存报表', '', 'web端-报表-库存报表(仓库)');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_report', 'warehousecode', '仓库', '0', 10, 1, 1, '', '', 'warehousecode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_report', 'deliverygoodsname', '现货品种', '0', 20, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_report', 'wrstandardname', '现货商品', '0', 30, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_report', 'enumdicname', '单位', '0', 40, 1, 1, '', '', 'enumdicname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_report', 'curstock', '期末库存量', '0', 50, 1, 1, '', '', 'curstock', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_report', 'diffqty', '库存变化量', '0', 60, 1, 1, '', '', 'diffqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_report', 'todaybuyinqty', '采购入库量', '0', 70, 1, 1, '', '', 'todaybuyinqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_report', 'todayselloutqty', '销售出库量', '0', 80, 1, 1, '', '', 'todayselloutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_report', 'todayproduceinqty', '内部入库量', '0', 90, 1, 1, '', '', 'todayproduceinqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_report', 'todayproduceoutqty', '内部出库量', '0', 100, 1, 1, '', '', 'todayproduceoutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_warehouse_report', 'oristock', '期初库存量', '0', 110, 1, 1, '', '', 'oristock', 0, 0, '');
- -- 报表 - 汇总损益报表
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_aggregate_profit_and_loss', 2, '报表-汇总损益报表', '', 'web端-报表-汇总损益报表');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'accountname', '交易用户', '0', 10, 1, 1, '', '', 'accountname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'currencyname', '结算币种', '0', 20, 1, 1, '', '', 'currencyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'middlegoodsname', '套保品种', '0', 30, 1, 1, '', '', 'middlegoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'enumdicname', '单位', '0', 40, 1, 1, '', '', 'enumdicname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'totalspotqty', '现货总量', '0', 50, 1, 1, '', '', 'totalspotqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'totalneedhedgeqty', '计划套保量', '0', 60, 1, 1, '', '', 'totalneedhedgeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'totalfutureqty', '期货持仓量', '0', 70, 1, 1, '', '', 'totalfutureqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'futurespotratio', '期现比例', '0', 80, 1, 1, '', '', 'futurespotratio', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'spotactualpl', '现货损益', '0', 90, 1, 1, '', '', 'spotactualpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'spotfloatpl', '现货浮动损益', '0', 100, 1, 1, '', '', 'spotfloatpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'futureactualpl', '期货损益', '0', 110, 1, 1, '', '', 'futureactualpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'futurefloatpl', '期货浮动损益', '0', 120, 1, 1, '', '', 'futurefloatpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'sumpl', '总敞口损益', '0', 130, 1, 1, '', '', 'sumpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_aggregate_profit_and_loss', 'hedgeexposurepl', '套保敞口损益', '0', 140, 1, 1, '', '', 'hedgeexposurepl', 0, 0, '');
- -- 报表 - 二级页面
- -- 报表 - 敞口报表 - 现货合同变动量明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_change_in_spot_contract', 2, '报表-敞口报表-现货合同变动量明细', '', 'web端-报表-敞口报表-现货合同变动量明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_spot_contract', 'contractno', '合同编号', '200', 10, 1, 1, '', '', 'contractno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_spot_contract', 'contracttype', '合同类型', '0', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_spot_contract', 'biztype', '期现用途', '0', 30, 1, 1, '', '', 'biztype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_spot_contract', 'buyusername', '采购方', '200', 40, 1, 1, '', '', 'buyusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_spot_contract', 'sellusername', '销售方', '200', 50, 1, 1, '', '', 'sellusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_spot_contract', 'wrstandardname', '现货商品', '0', 60, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_spot_contract', 'todaypricedqty', '今定价量', '0', 70, 1, 1, '', '', 'todaypricedqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_spot_contract', 'diffhedgeqty', '套保变动量', '0', 80, 1, 1, '', '', 'diffhedgeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_spot_contract', 'diffneedhedgeqty', '应套保变动量', '0', 90, 1, 1, '', '', 'diffneedhedgeqty', 0, 0, '');
- -- 报表 - 敞口报表 - 套保计划变动量明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_change_in_hedging_plan', 2, '报表-敞口报表-套保计划变动量明细', '', 'web端-报表-敞口报表-套保计划变动量明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_hedging_plan', 'hedgeplanno', '计划名称', '0', 10, 1, 1, '', '', 'hedgeplanno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_hedging_plan', 'contracttype', '计划类型', '0', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_hedging_plan', 'biztype', '期现用途', '0', 30, 1, 1, '', '', 'biztype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_hedging_plan', 'wrstandardname', '现货商品', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_hedging_plan', 'qty', '计划量', '0', 50, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_hedging_plan', 'diffqty', '套保变动量', '0', 60, 1, 1, '', '', 'diffqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_hedging_plan', 'changqty', '应套保变动量', '0', 70, 1, 1, '', '', 'changqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_hedging_plan', 'tradedate', '登记日', '0', 80, 1, 1, '', '', 'tradedate', 0, 0, '');
- -- 报表 - 敞口报表 - 期货变动量明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_change_in_future', 2, '报表-敞口报表-期货变动量明细', '', 'web端-报表-敞口报表-期货变动量明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_future', 'username', '交易用户', '200', 10, 1, 1, '', '', 'username', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_future', 'goodscode', '交易合约', '0', 20, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_future', 'buyorsell', '持仓方向', '0', 30, 1, 1, '', '', 'buyorsell', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_future', 'oriholdqty', '期初持仓量', '0', 40, 1, 1, '', '', 'oriholdqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_future', 'todayopenqty', '今开仓量', '0', 50, 1, 1, '', '', 'todayopenqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_future', 'todaycloseqty', '今平仓量', '0', 60, 1, 1, '', '', 'todaycloseqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_future', 'holdqty', '期末持仓量', '0', 70, 1, 1, '', '', 'holdqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_future', 'difftradeqty', '交易品种变化量', '0', 80, 1, 1, '', '', 'difftradeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_future', 'diffmgqty', '套保品种变化量', '0', 90, 1, 1, '', '', 'diffmgqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_future', 'diffneedqty', '套保品种期末量', '0', 100, 1, 1, '', '', 'diffneedqty', 0, 0, '');
- -- 报表 - 敞口报表 - 参数调整变动量明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_change_in_parameter_adjustment', 2, '报表-敞口报表-参数调整变动量明细', '', 'web端-报表-敞口报表-参数调整变动量明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_parameter_adjustment', 'middlegoodsname', '套保品种', '0', 10, 1, 1, '', '', 'middlegoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_parameter_adjustment', 'changelogtype', '参数类型', '0', 20, 1, 1, '', 'getChangeLogType', 'changelogtype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_parameter_adjustment', 'parambeforevalue', '调整前参数值', '0', 30, 1, 1, '', '', 'parambeforevalue', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_parameter_adjustment', 'paramaftervalue', '调整后参数值', '0', 40, 1, 1, '', '', 'paramaftervalue', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_parameter_adjustment', 'beforevalue', '调整前应套保总量', '0', 50, 1, 1, '', '', 'beforevalue', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_parameter_adjustment', 'aftervalue', '调整后应套保总量', '0', 60, 1, 1, '', '', 'aftervalue', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_change_in_parameter_adjustment', 'diffvalue', '应套保总量变动量', '0', 70, 1, 1, '', '', 'diffvalue', 0, 0, '');
- -- 报表 - 现货报表 - 现货明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_report_details', 2, '报表-现货报表-现货明细', '', 'web端-报表-现货报表-现货明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'reckondate', '日期', '0', 0, 1, 1, '', '', 'reckondate', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'currencyname', '结算币种', '0', 10, 1, 1, '', '', 'currencyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'wrstandardname', '现货商品', '0', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'brandname', '现货品牌', '0', 30, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'curqty', '期末量', '0', 40, 1, 1, '', '', 'curqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'curamount', '期末额', '0', 50, 1, 1, '', '', 'curamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'curaverageprice', '期末均价', '0', 60, 1, 1, '', '', 'curaverageprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'actualpl', '现货损益', '0', 70, 1, 1, '', '', 'actualpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'curspotprice', '最新价', '0', 80, 1, 1, '', '', 'curspotprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'curmarketvalue', '期末市值', '0', 90, 1, 1, '', '', 'curmarketvalue', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'floatpl', '浮动损益', '0', 100, 1, 1, '', '', 'floatpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'todaybuyqty', '今采购量', '0', 110, 1, 1, '', '', 'todaybuyqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'todaysellqty', '今销售量', '0', 120, 1, 1, '', '', 'todaysellqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'todaybuyamount', '今采购额', '0', 130, 1, 1, '', '', 'todaybuyamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'todaysellamount', '今销售额', '0', 140, 1, 1, '', '', 'todaysellamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'todaybuyaverageprice', '采购均价', '0', 150, 1, 1, '', '', 'todaybuyaverageprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'todaysellaverageprice', '销售均价', '0', 160, 1, 1, '', '', 'todaysellaverageprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'oriqty', '期初量', '0', 170, 1, 1, '', '', 'oriqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'oriamount', '期初额', '0', 180, 1, 1, '', '', 'oriamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_report_details', 'oriaverageprice', '期初均价', '0', 190, 1, 1, '', '', 'oriaverageprice', 0, 0, '');
- -- 报表 - 财务报表 - 商品明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_financial_statement_category_breakdown', 2, '报表-财务报表-商品明细', '', 'web端-报表-财务报表-商品明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'wrstandardname', '现货商品', '0', 10, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'buyunpaidamount', '应付货款额', '0', 20, 1, 1, '', '', 'buyunpaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'buyprepaidamount', '预付货款额', '0', 30, 1, 1, '', '', 'buyprepaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'buytodaysettleamount', '今付货款额', '0', 40, 1, 1, '', '', 'buytodaysettleamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'buyuninvoicedamount', '应收票额', '0', 50, 1, 1, '', '', 'buyuninvoicedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'buypreinvoicedamount', '预收票额', '0', 60, 1, 1, '', '', 'buypreinvoicedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'buytodayinvoiceamount', '今收票额', '0', 70, 1, 1, '', '', 'buytodayinvoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'selltodayrefundamount', '今付退款额', '0', 80, 1, 1, '', '', 'selltodayrefundamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'todaypaysum', '今付款合计', '0', 90, 1, 1, '', '', 'todaypaysum', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'sellunpaidamount', '应收货款额', '0', 100, 1, 1, '', '', 'sellunpaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'sellprepaidamount', '预收货款额', '0', 110, 1, 1, '', '', 'sellprepaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'selltodaysettleamount', '今收货款额', '0', 120, 1, 1, '', '', 'selltodaysettleamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'selluninvoicedamount', '应开票额', '0', 130, 1, 1, '', '', 'daikaiamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'sellpreinvoicedamount', '预开票额', '0', 140, 1, 1, '', '', 'sellpreinvoicedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'selltodayinvoiceamount', '今开票额', '0', 150, 1, 1, '', '', 'selltodayinvoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'buytodayrefundamount', '今收退款额', '0', 160, 1, 1, '', '', 'buytodayrefundamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_category_breakdown', 'todayreceivesum', '今收款合计', '0', 170, 1, 1, '', '', 'todayreceivesum', 0, 0, '');
- -- 报表 - 财务报表 - 品牌明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_financial_statement_brand_details', 2, '报表-财务报表-品类明细', '', 'web端-报表-财务报表-品类明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'wrstandardname', '现货商品', '0', 10, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'brandname', '现货品牌', '0', 20, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'buyunpaidamount', '应付货款额', '0', 30, 1, 1, '', '', 'buyunpaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'buyprepaidamount', '预付货款额', '0', 40, 1, 1, '', '', 'buyprepaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'buytodaysettleamount', '今付货款额', '0', 50, 1, 1, '', '', 'buytodaysettleamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'buyuninvoicedamount', '应收票额', '0', 60, 1, 1, '', '', 'buyuninvoicedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'buypreinvoicedamount', '预收票额', '0', 70, 1, 1, '', '', 'buypreinvoicedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'buytodayinvoiceamount', '今收票额', '0', 80, 1, 1, '', '', 'buytodayinvoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'selltodayrefundamount', '今付退款额', '0', 90, 1, 1, '', '', 'selltodayrefundamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'todaypaysum', '今付款合计', '0', 100, 1, 1, '', '', 'todaypaysum', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'sellunpaidamount', '应收货款额', '0', 110, 1, 1, '', '', 'sellunpaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'sellprepaidamount', '预收货款额', '0', 120, 1, 1, '', '', 'sellprepaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'selltodaysettleamount', '今收货款额', '0', 130, 1, 1, '', '', 'selltodaysettleamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'selluninvoicedamount', '应开票额', '0', 140, 1, 1, '', '', 'selluninvoicedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'sellpreinvoicedamount', '预开票额', '0', 150, 1, 1, '', '', 'sellpreinvoicedamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'selltodayinvoiceamount', '今开票额', '0', 160, 1, 1, '', '', 'selltodayinvoiceamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'buytodayrefundamount', '今收退款额', '0', 170, 1, 1, '', '', 'buytodayrefundamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financial_statement_brand_details', 'todayreceivesum', '今收款合计', '0', 180, 1, 1, '', '', 'todayreceivesum', 0, 0, '');
- -- 报表 - 期货报表 - 账户明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_futures_statement_account_details', 2, '报表-期货报表-账户明细', '', 'web端-报表-期货报表-账户明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'accountid', '交易账户', '200', 10, 1, 1, '', '', 'accountid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'buyorsell', '持仓方向', '0', 20, 1, 1, '', '', 'buyorsell', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'holdqty', '期末持仓量', '0', 30, 1, 1, '', '', 'holdqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'reckonprice', '结算价', '0', 40, 1, 1, '', '', 'reckonprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'charge', '手续费', '0', 50, 1, 1, '', '', 'charge', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'closepl', '平仓损益', '0', 60, 1, 1, '', '', 'closepl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'reckonpl', '结算损益', '0', 70, 1, 1, '', '', 'reckonpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'todayopenqty', '今开仓量', '0', 80, 1, 1, '', '', 'todayopenqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'openavgprice', '开仓均价', '0', 90, 1, 1, '', '', 'openavgprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'todaycloseqty', '今平仓量', '0', 100, 1, 1, '', '', 'todaycloseqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'closeavgprice', '平仓均价', '0', 110, 1, 1, '', '', 'closeavgprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'goodsgroupspotqty', '交易品种期末量', '0', 120, 1, 1, '', 'FormatterUnit,enumdicname', 'goodsgroupspotqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'todaymiddlegoodsqty', '套保品种变动量', '0', 130, 1, 1, '', 'FormatterUnit,enumdicname', 'todaymiddlegoodsqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'openamount', '期末开仓额', '0', 140, 1, 1, '', '', 'openamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'holdamount', '期末持仓额', '0', 150, 1, 1, '', '', 'holdamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'reckonholdamount', '结算持仓额', '0', 160, 1, 1, '', '', 'reckonholdamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'todayopenamount', '今开仓额', '0', 170, 1, 1, '', '', 'todayopenamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'todaycloseamount', '今平仓额', '0', 180, 1, 1, '', '', 'todaycloseamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'oriholdqty', '期初持仓量', '0', 190, 1, 1, '', '', 'oriholdqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'openamount', '期初开仓额', '0', 200, 1, 1, '', '', 'openamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_futures_statement_account_details', 'oriholdamount', '期初持仓额', '0', 210, 1, 1, '', '', 'oriholdamount', 0, 0, '');
- -- 报表 - 库存报表 - 库存(商品)报表 - 品牌明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inventory_commodity_report_brand_details', 2, '报表-库存(商品)报表-品牌明细', '', 'web端-报表-库存(商品)报表-品牌明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_brand_details', 'brandname', '现货品牌', '0', 10, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_brand_details', 'curstock', '期末库存量', '0', 20, 1, 1, '', '', 'curstock', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_brand_details', 'diffqty', '库存变化量', '0', 30, 1, 1, '', '', 'diffqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_brand_details', 'todaybuyinqty', '采购入库量', '0', 40, 1, 1, '', '', 'todaybuyinqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_brand_details', 'todayselloutqty', '销售出库量', '0', 50, 1, 1, '', '', 'todayselloutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_brand_details', 'todayproduceinqty', '内部入库量', '0', 60, 1, 1, '', '', 'todayproduceinqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_brand_details', 'todayproduceoutqty', '内部出库量', '0', 70, 1, 1, '', '', 'todayproduceoutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_brand_details', 'unbuyinqty', '采购未入库量', '0', 80, 1, 1, '', '', 'unbuyinqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_brand_details', 'unselloutqty', '销售未出库量', '0', 90, 1, 1, '', '', 'unselloutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_brand_details', 'oristock', '期初库存量', '0', 100, 1, 1, '', '', 'oristock', 0, 0, '');
- -- 报表 - 库存报表 - 库存(商品)报表 - 仓库明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inventory_commodity_report_warehouse_details', 2, '报表-库存(商品)报表-仓库明细', '', 'web端-报表-库存(商品)报表-仓库明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_warehouse_details', 'brandname', '现货品牌', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_warehouse_details', 'warehousecode', '仓库', '0', 40, 1, 1, '', '', 'warehousecode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_warehouse_details', 'curstock', '期末库存量', '0', 100, 1, 1, '', '', 'curstock', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_warehouse_details', 'diffqty', '库存变化量', '0', 110, 1, 1, '', '', 'diffqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_warehouse_details', 'todayselloutqty', '采购入库量', '0', 60, 1, 1, '', '', 'todayselloutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_warehouse_details', 'todayselloutqty', '销售出库量', '0', 70, 1, 1, '', '', 'todayselloutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_warehouse_details', 'todayproduceinqty', '内部入库量', '0', 80, 1, 1, '', '', 'todayproduceinqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_warehouse_details', 'todayproduceoutqty', '内部出库量', '0', 90, 1, 1, '', '', 'todayproduceoutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_warehouse_details', 'unbuyinqty', '采购未入库量', '0', 80, 1, 1, '', '', 'unbuyinqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_warehouse_details', 'unselloutqty', '销售未出库量', '0', 90, 1, 1, '', '', 'unselloutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_commodity_report_warehouse_details', 'oristock', '期初库存量', '0', 50, 1, 1, '', '', 'oristock', 0, 0, '');
- -- 报表 - 库存报表 - 库存(仓库)报表 - 仓库明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inventory_warehouse_report_warehouse_details', 2, '报表-库存(仓库)报表-仓库明细', '', 'web端-报表-库存(仓库)报表-仓库明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_warehouse_report_warehouse_details', 'brandname', '现货品牌', '0', 10, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_warehouse_report_warehouse_details', 'curstock', '期末库存量', '0', 20, 1, 1, '', '', 'curstock', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_warehouse_report_warehouse_details', 'diffqty', '库存变化量', '0', 30, 1, 1, '', '', 'diffqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_warehouse_report_warehouse_details', 'todaybuyinqty', '采购入库量', '0', 40, 1, 1, '', '', 'todaybuyinqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_warehouse_report_warehouse_details', 'todayselloutqty', '销售出库量', '0', 50, 1, 1, '', '', 'todayselloutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_warehouse_report_warehouse_details', 'todayproduceinqty', '内部入库量', '0', 60, 1, 1, '', '', 'todayproduceinqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_warehouse_report_warehouse_details', 'todayproduceoutqty', '内部出库量', '0', 70, 1, 1, '', '', 'todayproduceoutqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_warehouse_report_warehouse_details', 'oristock', '期初库存量', '0', 80, 1, 1, '', '', 'oristock', 0, 0, '');
- -- 报表 - 汇总损益报表 - 损益明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inventory_summary_profit_and_loss_details', 2, '报表-汇总损益报表-损益明细', '', 'web端-报表-汇总损益报表-损益明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_summary_profit_and_loss_details', 'currencyname', '结算币种', '0', 10, 1, 1, '', '', 'currencyname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_summary_profit_and_loss_details', 'accountname', '交易用户', '0', 20, 1, 1, '', '', 'accountname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_summary_profit_and_loss_details', 'middlegoodsname', '套保品种', '0', 30, 1, 1, '', '', 'middlegoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_summary_profit_and_loss_details', 'spotactualpl', '现货损益', '0', 40, 1, 1, '', '', 'spotactualpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_summary_profit_and_loss_details', 'spotfloatpl', '现货浮动损益', '0', 50, 1, 1, '', '', 'spotfloatpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_summary_profit_and_loss_details', 'futureactualpl', '期货损益', '0', 60, 1, 1, '', '', 'futureactualpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_summary_profit_and_loss_details', 'sumactualpl', '实际损益', '0', 70, 1, 1, '', '', 'sumactualpl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_inventory_summary_profit_and_loss_details', 'sumpl', '汇总损益', '0', 80, 1, 1, '', '', 'sumpl', 0, 0, '');
- -- 前海金(铂金宝)
- -- 铂金宝 - 充值提现审核 - 充值审核
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_qhj_recharge_review', 2, '铂金宝-充值提现审核-充值审核', '', 'web端-铂金宝-充值提现审核-充值审核');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_recharge_review', 'logincode', '账号', '0', 10, 1, 1, '', '', 'logincode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_recharge_review', 'accountname', '名称', '0', 20, 1, 1, '', '', 'accountname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_recharge_review', 'userinfotype', '账户类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_recharge_review', 'amount', '充值金额', '0', 40, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_recharge_review', 'certificatephotourl', '凭证', '0', 50, 1, 1, '', '', 'certificatephotourl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_recharge_review', 'updatetime', '申请时间', '0', 60, 1, 1, '', '', 'updatetime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_recharge_review', 'applystatus', '状态', '0', 70, 1, 1, '', '', 'applystatus', 0, 0, '');
- -- 铂金宝 - 充值提现审核 - 提现审核
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_qhj_withdrawal_review', 2, '铂金宝-充值提现审核-提现审核', '', 'web端-铂金宝-充值提现审核-提现审核');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_withdrawal_review', 'logincode', '账号', '0', 10, 1, 1, '', '', 'logincode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_withdrawal_review', 'accountname', '名称', '0', 20, 1, 1, '', '', 'accountname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_withdrawal_review', 'userinfotype', '账户类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_withdrawal_review', 'amount', '提现金额', '0', 40, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_withdrawal_review', 'bankname', '提现银行', '0', 50, 1, 1, '', '', 'bankname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_withdrawal_review', 'bankaccountno', '银行卡号', '250', 60, 1, 1, '', '', 'bankaccountno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_withdrawal_review', 'branchbankname', '支行名称', '250', 70, 1, 1, '', '', 'branchbankname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_withdrawal_review', 'bankaccountname', '姓名', '250', 80, 1, 1, '', '', 'bankaccountname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_withdrawal_review', 'updatetime', '申请时间', '0', 90, 1, 1, '', '', 'updatetime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_withdrawal_review', 'applystatus', '状态', '0', 100, 1, 1, '', '', 'applystatus', 0, 0, '');
- -- 铂金宝 - 提货查询
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_qhj_pickup_query', 2, '铂金宝-提货查询', '', 'web端-铂金宝-提货查询');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pickup_query', 'logincode', '账号', '0', 10, 1, 1, '', '', 'logincode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pickup_query', 'username', '名称', '0', 20, 1, 1, '', '', 'username', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pickup_query', 'userinfotype', '类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pickup_query', 'pickupgoodsname', '提货商品', '300', 40, 1, 1, '', '', 'pickupgoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pickup_query', 'pickupgoodsqty', '提货数量', '0', 50, 1, 1, '', '', 'pickupgoodsqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pickup_query', 'goodsname', '交易商品', '300', 60, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pickup_query', 'qty', '商品数量', '0', 70, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pickup_query', 'takemode', '收货方式', '0', 80, 1, 1, '', '', 'takemode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pickup_query', 'recivername', '提货/收货人', '0', 90, 1, 1, '', '', 'recivername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pickup_query', 'expresscompany', '物流信息', '0', 100, 1, 1, '', '', 'expresscompany', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pickup_query', 'takeorderstatus', '状态', '0', 110, 1, 1, '', '', 'takeorderstatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pickup_query', 'updatetime', '申请时间', '200', 120, 1, 1, '', '', 'updatetime', 0, 0, '');
- -- 铂金宝 - 定投价查询
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_qhj_fixed_investment_price_query', 2, '铂金宝-定投价查询', '', 'web端-铂金宝-定投价查询');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_price_query', 'goodsid', '商品', '0', 10, 1, 1, '', '', 'goodsid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_price_query', 'tradedate', '交易日', '0', 20, 1, 1, '', '', 'tradedate', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_price_query', 'reckonprice', '定投价', '0', 30, 1, 1, '', '', 'reckonprice', 0, 0, '');
- -- 铂金宝 - 定投查询 - 定投计划查询
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_qhj_fixed_investment_plan_query', 2, '铂金宝-定投查询-定投计划查询', '', 'web端-铂金宝-定投查询-定投计划查询');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_plan_query', 'logincode', '账号', '0', 10, 1, 1, '', '', 'logincode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_plan_query', 'username', '名称', '0', 20, 1, 1, '', '', 'accountname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_plan_query', 'userinfotype', '账户类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_plan_query', 'goodsname', '定投商品', '300', 40, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_plan_query', 'regularlymode', '定投方式', '0', 50, 1, 1, '', '', 'regularlymode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_plan_query', 'regularlymodevalue', '定投金额/数量', '150', 60, 1, 1, '', '', 'regularlymodevalue', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_plan_query', 'regularlycycle', '定投频率', '0', 70, 1, 1, '', '', 'regularlycycle', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_plan_query', 'triggertotalamount', '已定投金额', '0', 80, 1, 1, '', '', 'triggertotalamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_plan_query', 'triggertotalqty', '已定投数量', '0', 90, 1, 1, '', '', 'triggertotalqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_plan_query', 'triggersuccesstimes', '已定投期数', '0', 100, 1, 1, '', '', 'triggersuccesstimes', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_plan_query', 'updatetime', '计划开始时间', '200', 110, 1, 1, '', '', 'updatetime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_plan_query', 'regularlystrategystatus', '状态', '0', 120, 1, 1, '', '', 'regularlystrategystatus', 0, 0, '');
- -- 铂金宝 - 定投查询 - 定投流水查询
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_qhj_fixed_investment_flow_query', 2, '铂金宝-定投查询-定投流水查询', '', 'web端-铂金宝-定投查询-定投流水查询');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_flow_query', 'logincode', '账号', '0', 10, 1, 1, '', '', 'logincode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_flow_query', 'goodsname', '定投商品', '300', 20, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_flow_query', 'triggeramount', '定投金额', '0', 30, 1, 1, '', '', 'triggeramount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_flow_query', 'triggerqty', '定投数量', '0', 40, 1, 1, '', '', 'triggerqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_flow_query', 'triggertime', '定投时间', '200', 50, 1, 1, '', '', 'triggertime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_investment_flow_query', 'triggerstatus', '执行结果', '0', 60, 1, 1, '', '', 'triggerstatus', 0, 0, '');
- -- 铂金宝 - 融资信息
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_qhj_fixed_financing_information', 2, '铂金宝-融资信息', '', 'web端-铂金宝-融资信息');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_financing_information', 'logincode', '账号', '200', 10, 1, 1, '', '', 'logincode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_financing_information', 'username', '名称', '0', 20, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_financing_information', 'userinfotype', '账户类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_financing_information', 'goodsname', '商品', '300', 40, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_financing_information', 'tradeprice', '价格', '0', 50, 1, 1, '', '', 'tradeprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_financing_information', 'wrqty', '数量', '0', 60, 1, 1, '', '', 'wrqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_financing_information', 'lenderamount', '金额', '0', 70, 1, 1, '', '', 'lenderamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_financing_information', 'payamount', '已付款', '0', 80, 1, 1, '', '', 'payamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_financing_information', 'remainamount', '融资额', '0', 90, 1, 1, '', '', 'remainamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_financing_information', 'totalinterest', '利息', '0', 100, 1, 1, '', '', 'totalinterest', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_financing_information', 'contractconfirmtime', '融资时间', '300', 110, 1, 1, '', '', 'contractconfirmtime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_fixed_financing_information', 'scfcontractstatus', '状态', '0', 120, 1, 1, '', '', 'scfcontracttype', 0, 0, '');
- -- 铂金宝 - 客户资料
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_qhj_customer_info', 2, '铂金宝-客户资料', '', 'web端-铂金宝-客户资料');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_customer_info', 'logincode', '登录账号', '0', 10, 1, 1, '', '', 'logincode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_customer_info', 'parentusername', '所属', '0', 20, 1, 1, '', '', 'parentusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_customer_info', 'status', '状态', '0', 30, 1, 1, '', '', 'status', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_customer_info', 'userinfotype', '客户类型', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_customer_info', 'nickname', '客户简称', '0', 50, 1, 1, '', '', 'nickname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_customer_info', 'customername', '客户名称', '0', 60, 1, 1, '', '', 'customername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_customer_info', 'cardtype', '证件类型', '0', 70, 1, 1, '', '', 'cardtypename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_customer_info', 'cardnum', '证件号码', '0', 80, 1, 1, '', '', 'cardnum', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_customer_info', 'contactname', '联系人', '0', 90, 1, 1, '', '', 'contactname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_customer_info', 'mobile', '手机号码', '0', 100, 1, 1, '', '', 'mobile', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_customer_info', 'email', '邮箱', '0',110, 1, 1, '', '', 'email', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_customer_info', 'legalpersonname', '法定代表人', '0', 120, 1, 1, '', '', 'legalpersonname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_customer_info', 'taxpayernum', '纳税人识别号', '0', 130, 1, 1, '', '', 'taxpayernum', 0, 0, '');
- -- 铂金宝 - 持仓单
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_qhj_holder_order', 2, '铂金宝-单据查询-持仓单', '', 'web端-铂金宝-单据查询-持仓单');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_holder_order', 'logincode', '账号', '200', 10, 1, 1, '', '', 'logincode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_holder_order', 'accountname', '名称', '200', 20, 1, 1, '', '', 'accountid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_holder_order', 'userinfotype', '账户类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_holder_order', 'goodsname', '商品', '300', 40, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_holder_order', 'averageprice', '均价', '0', 50, 1, 1, '', 'FromatterDecimal,decimalplace', 'averageprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_holder_order', 'holderqty', '持有数量', '0', 60, 1, 1, '', 'FromatterDecimal,qtydecimalplace', 'holderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_holder_order', 'frozenqty', '冻结数量', '0', 70, 1, 1, '', 'FromatterDecimal,qtydecimalplace', 'frozenqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_holder_order', 'avialqty', '可用数量', '0', 80, 1, 1, '', 'FromatterDecimal,qtydecimalplace', 'avialqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_holder_order', 'holderamount', '金额', '0', 90, 1, 1, '', 'FromatterDecimal,decimalplace', 'holderamount', 0, 0, '');
- -- 铂金宝 - 委托单
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_qhj_order', 2, '铂金宝-单据查询-委托单', '', 'web端-铂金宝-单据查询-委托单');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_order', 'logincode', '账号', '0', 10, 1, 1, '', '', 'logincode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_order', 'accountname', '名称', '300', 20, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_order', 'userinfotype', '账户类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_order', 'goodsname', '商品', '300', 40, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_order', 'orderprice', '价格', '0', 50, 1, 1, '', 'FromatterDecimal,decimalplace', 'orderprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_order', 'orderqty', '数量', '0', 60, 1, 1, '', 'FromatterDecimal,qtydecimalplace', 'orderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_order', 'amount', '金额', '0', 70, 1, 1, '', 'FromatterDecimal,decimalplace', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_order', 'ordertime', '委托时间', '300', 80, 1, 1, '', '', 'ordertime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_order', 'orderstatus', '状态', '0', 90, 1, 1, '', '', 'orderstatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_order', 'orderid', '委托单号', '300', 100, 1, 1, '', '', 'orderid', 0, 0, '');
- -- 铂金宝 - 待付单
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_qhj_pay_bill', 2, '铂金宝-单据查询-待付单', '', 'web端-铂金宝-单据查询-待付单');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pay_bill', 'logincode', '账号', '300', 10, 1, 1, '', '', 'logincode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pay_bill', 'accountname', '名称', '300', 20, 1, 1, '', '', 'buyaccountid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pay_bill', 'userinfotype', '账户类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pay_bill', 'goodsname', '商品', '300', 40, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pay_bill', 'tradeprice', '价格', '0', 50, 1, 1, '', 'FromatterDecimal,decimalplace', 'tradeprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pay_bill', 'tradeqty', '数量', '0', 60, 1, 1, '', 'FromatterDecimal,qtydecimalplace', 'tradeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pay_bill', 'payamount', '金额', '0', 70, 1, 1, '', 'FromatterDecimal,decimalplace', 'payamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pay_bill', 'createtime', '成交时间', '300', 80, 1, 1, '', '', 'createtime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pay_bill', 'paylimitedtime', '付款截止时间', '300', 90, 1, 1, '', '', 'paylimitedtime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_pay_bill', 'buyorderid', '关联单号', '300', 100, 1, 1, '', '', 'buyorderid', 0, 0, '');
- -- 铂金宝 - 成交单
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_qhj_deal_order', 2, '铂金宝-单据查询-成交单', '', 'web端-铂金宝-单据查询-成交单');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_deal_order', 'logincode', '账号', '200', 10, 1, 1, '', '', 'logincode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_deal_order', 'accountname', '名称', '200', 20, 1, 1, '', '', 'accountid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_deal_order', 'userinfotype', '账户类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_deal_order', 'goodsname', '商品', '300', 40, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_deal_order', 'buyorsell', '成交类型', '0', 50, 1, 1, '', '', 'buyorsell', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_deal_order', 'tradeprice', '价格', '0', 60, 1, 1, '', 'FromatterDecimal,decimalplace', 'tradeprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_deal_order', 'tradeqty', '数量', '0', 70, 1, 1, '', 'FromatterDecimal,qtydecimalplace', 'tradeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_deal_order', 'tradeamount', '金额', '0', 80, 1, 1, '', 'FromatterDecimal,decimalplace', 'tradeamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_deal_order', 'tradetime', '成交时间', '300', 90, 1, 1, '', '', 'tradetime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_deal_order', 'tradeid', '成交单号', '300', 100, 1, 1, '', '', 'tradeid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_qhj_deal_order', 'orderid', '关联委托单号', '300', 110, 1, 1, '', '', 'orderid', 0, 0, '');
- -- 铂金宝 - 现货市价
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_and_price', 2, '铂金宝-现货市价', '', 'web端-铂金宝-现货市价');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_and_price', 'deliverygoodsname', '现货品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_and_price', 'wrstandardname', '商品', '0', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_and_price', 'brandname', '品牌', '0', 30, 1, 1, '', '', 'brandname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_and_price', 'spotgoodsprice', '价格', '0', 40, 1, 1, '', '', 'spotgoodsprice', 0, 0, '');
- -- 铂金宝 - 协议管理
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_agreement', 2, '铂金宝-协议管理', '', 'web端-铂金宝-协议管理');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_agreement', 'agreementno', '协议编号', '0', 10, 1, 1, '', '', 'agreementno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_agreement', 'agreementname', '协议名称', '0', 20, 1, 1, '', '', 'agreementname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_agreement', 'agreementtype', '协议类型', '0', 30, 1, 1, '', '', 'agreementtype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_agreement', 'agreementfrequency', '签署频率', '0', 40, 1, 1, '', '', 'agreementfrequency', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_agreement', 'isvalid', '状态', '0', 50, 1, 1, '', '', 'isvalid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_agreement', 'createtime', '创建时间', '0', 60, 1, 1, '', '', 'createtime', 0, 0, '');
- -- 大宗交易 --
- -- 市场 -- 现货贸易 -- 仓单贸易 -- 一口价
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_warehouse_price', 2, '现货贸易-仓单贸易-一口价', '', 'web端-现货贸易-仓单贸易-一口价');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price', 'deliverygoodsname', '品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price', 'wrgoodsname', '商品', '400', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price', 'warehousename', '仓库', '200', 30, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price', 'sellprice', '卖价', '0', 40, 1, 1, '', '', 'sellprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price', 'sellqty', '卖量', '0', 50, 1, 1, '', '', 'sellqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price', 'buyprice', '买价', '0', 60, 1, 1, '', '', 'buyprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price', 'buyqty', '买量', '0', 70, 1, 1, '', '', 'buyqty', 0, 0, '');
- -- 市场 -- 现货贸易 -- 仓单贸易 -- 浮动价
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_warehouse_float', 2, '现货贸易-仓单贸易', '', 'web端-现货贸易-仓单贸易-浮动价');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float', 'deliverygoodsname', '品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float', 'wrgoodsname', '商品', '400', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float', 'warehousename', '仓库', '200', 30, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float', 'goodscode', '期货合约', '0', 40, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float', 'sellpricemove', '卖基差', '0', 50, 1, 1, '', '', 'sellpricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float', 'sellqty', '卖量', '0', 60, 1, 1, '', '', 'sellqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float', 'buypricemove', '买基差', '0', 70, 1, 1, '', '', 'buypricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float', 'buyqty', '买量', '0', 80, 1, 1, '', '', 'buyqty', 0, 0, '');
- -- 市场 -- 现货贸易 -- 仓单预售 -- 一口价
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_warehouse_sale_price', 2, '现货贸易-仓单预售', '', 'web端-现货贸易-仓单预售-一口价');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_price', 'deliverygoodsname', '品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_price', 'wrgoodsname', '商品', '400', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_price', 'warehousename', '仓库', '200', 30, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_price', 'deliverymonth', '交收月', '0', 40, 1, 1, '', '', 'agreementfrequency', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_price', 'sellprice', '卖价', '0', 50, 1, 1, '', '', 'isvalid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_price', 'sellqty', '卖量', '0', 60, 1, 1, '', '', 'createtime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_price', 'buyprice', '买价', '0', 70, 1, 1, '', '', 'createtime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_price', 'buyqty', '买量', '0', 80, 1, 1, '', '', 'createtime', 0, 0, '');
- -- 市场 -- 现货贸易 -- 仓单预售 -- 浮动价
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_warehouse_sale_float', 2, '现货贸易-仓单预售', '', 'web端-现货贸易-仓单预售-浮动价');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_float', 'deliverygoodsname', '品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_float', 'wrgoodsname', '商品', '400', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_float', 'warehousename', '仓库', '200', 30, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_float', 'deliverymonth', '交收月', '0', 40, 1, 1, '', '', 'agreementfrequency', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_float', 'goodscode', '期货合约', '0', 50, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_float', 'sellpricemove', '卖基差', '0', 60, 1, 1, '', '', 'sellpricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_float', 'sellqty', '卖量', '0', 70, 1, 1, '', '', 'sellqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_float', 'buypricemove', '买基差', '0', 80, 1, 1, '', '', 'buypricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_sale_float', 'buyqty', '买量', '0', 90, 1, 1, '', '', 'buyqty', 0, 0, '');
- -- 市场 -- 现货贸易 -- 仓单贸易 -- 一口价 -- 买卖大厅 -- 销售方
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_warehouse_price_trading_hall_sale', 2, '现货贸易-仓单贸易-买卖大厅', '', 'web端-现货贸易-仓单贸易-一口价-买卖大厅-销售方');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price_trading_hall_sale', 'index', '序号', '60', 10, 1, 1, '', '', 'index', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price_trading_hall_sale', 'username', '销售方', '0', 10, 1, 1, '', '', 'username', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price_trading_hall_sale', 'orderqty', '卖量', '0', 20, 1, 1, '', '', 'orderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price_trading_hall_sale', 'fixedprice', '卖价', '0', 30, 1, 1, '', '', 'fixedprice', 0, 0, '');
- -- 市场 -- 现货贸易 -- 仓单贸易 -- 一口价 -- 买卖大厅 -- 购买方
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_warehouse_price_trading_hall_buy', 2, '现货贸易-仓单贸易-买卖大厅', '', 'web端-现货贸易-仓单贸易-一口价-买卖大厅-购买方');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price_trading_hall_buy', 'index', '序号', '60', 10, 1, 1, '', '', 'index', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price_trading_hall_buy', 'fixedprice', '买价','0', 20, 1, 1, '', '', 'fixedprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price_trading_hall_buy', 'orderqty', '买量', '0', 30, 1, 1, '', '', 'orderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_price_trading_hall_buy', 'username', '购买方', '0', 40, 1, 1, '', '', 'username', 0, 0, '');
- -- 市场 -- 现货贸易 -- 仓单贸易 -- 浮动价 -- 买卖大厅 -- 销售方
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_warehouse_float_trading_hall_sale', 2, '现货贸易-仓单贸易-买卖大厅', '', 'web端-现货贸易-仓单贸易-浮动价-买卖大厅-销售方');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float_trading_hall_sale', 'index', '序号', '60', 10, 1, 1, '', '', 'index', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float_trading_hall_sale', 'username', '销售方', '0', 20, 1, 1, '', '', 'username', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float_trading_hall_sale', 'orderqty', '卖量', '0', 30, 1, 1, '', '', 'orderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float_trading_hall_sale', 'pricemove', '卖基差', '0', 40, 1, 1, '', '', 'pricemove', 0, 0, '');
- -- 市场 -- 现货贸易 -- 仓单贸易 -- 浮动价 -- 买卖大厅 -- 购买方
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_warehouse_float_trading_hall_buy', 2, '现货贸易-仓单贸易-买卖大厅', '', 'web端-现货贸易-仓单贸易-浮动价-买卖大厅-购买方');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float_trading_hall_buy', 'index', '序号', '60', 10, 1, 1, '', '', 'index', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float_trading_hall_buy', 'pricemove', '买基差', '0', 20, 1, 1, '', '', 'pricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float_trading_hall_buy', 'orderqty', '买量', '0', 30, 1, 1, '', '', 'orderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_float_trading_hall_buy', 'username', '购买方', '0', 40, 1, 1, '', '', 'username', 0, 0, '');
- -- 市场 -- 现货贸易 -- 仓单预售 -- 一口价 -- 买卖大厅 -- 销售方
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_warehouse_presale_price_trading_hall_sale', 2, '现货贸易-仓单预售-买卖大厅', '', 'web端-现货贸易-仓单预售-一口价-买卖大厅-销售方');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_price_trading_hall_sale', 'index', '序号', '60', 10, 1, 1, '', '', 'index', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_price_trading_hall_sale', 'username', '销售方', '0', 20, 1, 1, '', '', 'username', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_price_trading_hall_sale', 'orderqty', '卖量', '0', 30, 1, 1, '', '', 'orderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_price_trading_hall_sale', 'fixedprice', '卖价', '0', 40, 1, 1, '', '', 'fixedprice', 0, 0, '');
- -- 市场 -- 现货贸易 -- 仓单预售 -- 一口价 -- 买卖大厅 -- 购买方
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_warehouse_presale_price_trading_hall_buy', 2, '现货贸易-仓单预售-买卖大厅', '', 'web端-现货贸易-仓单预售-一口价-买卖大厅-购买方');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_price_trading_hall_buy', 'index', '序号', '60', 10, 1, 1, '', '', 'index', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_price_trading_hall_buy', 'fixedprice', '买价', '0', 20, 1, 1, '', '', 'fixedprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_price_trading_hall_buy', 'orderqty', '买量', '0', 30, 1, 1, '', '', 'orderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_price_trading_hall_buy', 'username', '购买方', '0', 40, 1, 1, '', '', 'username', 0, 0, '');
- -- 市场 -- 现货贸易 -- 仓单预售 -- 浮动价 -- 买卖大厅 -- 销售方
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_warehouse_presale_float_trading_hall_sale', 2, '现货贸易-仓单预售-买卖大厅', '', 'web端-现货贸易-仓单预售-浮动价-买卖大厅-销售方');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_float_trading_hall_sale', 'index', '序号', '60', 10, 1, 1, '', '', 'index', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_float_trading_hall_sale', 'username', '销售方', '0', 20, 1, 1, '', '', 'username', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_float_trading_hall_sale', 'orderqty', '卖量', '0', 30, 1, 1, '', '', 'orderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_float_trading_hall_sale', 'pricemove', '卖基差', '0', 40, 1, 1, '', '', 'pricemove', 0, 0, '');
- -- 市场 -- 现货贸易 -- 仓单预售 -- 浮动价 -- 买卖大厅 -- 购买方
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_warehouse_presale_float_trading_hall_buy', 2, '现货贸易-仓单预售-买卖大厅', '', 'web端-现货贸易-仓单预售-浮动价-买卖大厅-购买方');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_float_trading_hall_buy', 'index', '序号', '60', 10, 1, 1, '', '', 'index', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_float_trading_hall_buy', 'pricemove', '买基差', '0', 20, 1, 1, '', '', 'pricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_float_trading_hall_buy', 'orderqty', '买量', '0', 30, 1, 1, '', '', 'orderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_warehouse_presale_float_trading_hall_buy', 'username', '购买方', '0', 40, 1, 1, '', '', 'username', 0, 0, '');
- -- 大宗交易 底部信息栏目 --
- -- 底部栏 -- 现货仓单 -- 现货汇总
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_spot_warrant_spot_summary', 2, '底部栏-现货仓单', '', 'web端-底部栏-现货仓单-现货汇总');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_summary', 'deliverygoodsname', '品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_summary', 'wrtypename', '商品', '250', 20, 1, 1, '', '', 'wrtypename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_summary', 'totalqty', '库存数量', '0', 30, 1, 1, '', '', 'totalqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_summary', 'buyexcuteqty', '采购履约中数量', '0', 40, 1, 1, '', '', 'buyexcuteqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_summary', 'freezeqty', '冻结数量', '0', 50, 1, 1, '', '', 'freezeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_summary', 'pledgeqty', '质押数量', '0', 60, 1, 1, '', '', 'pledgeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_summary', 'enalbeqty', '可用数量', '0', 70, 1, 1, '', '', 'enalbeqty', 0, 0, '');
- -- 底部栏 -- 现货仓单 -- 库存汇总
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_spot_warrant_inventory_summary', 2, '底部栏-现货仓单', '', 'web端-底部栏-现货仓单-库存汇总');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_inventory_summary', 'deliverygoodsname', '品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_inventory_summary', 'wrtypename', '商品', '250', 20, 1, 1, '', '', 'wrtypename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_inventory_summary', 'warehousename', '仓库', '0', 30, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_inventory_summary', 'totalqty', '库存数量', '0', 40, 1, 1, '', '', 'totalqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_inventory_summary', 'buyexcuteqty', '采购履约中数量', '0', 50, 1, 1, '', '', 'buyexcuteqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_inventory_summary', 'freezeqty', '冻结数量', '0', 60, 1, 1, '', '', 'freezeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_inventory_summary', 'pledgeqty', '质押数量', '0', 70, 1, 1, '', '', 'pledgeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_inventory_summary', 'enalbeqty', '可用数量', '0', 80, 1, 1, '', '', 'enalbeqty', 0, 0, '');
- -- 底部栏 -- 现货仓单 -- 现货明细
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_spot_warrant_spot_detail', 2, '底部栏-现货仓单', '', 'web端-底部栏-现货仓单-现货明细');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_detail', 'wrholdeno', '仓单编号', '250', 10, 1, 1, '', '', 'wrholdeno', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_detail', 'deliverygoodsname', '品种', '0', 20, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_detail', 'wrtypename', '商品', '400', 30, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_detail', 'warehousename', '仓库', '200', 40, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_detail', 'qty', '库存数量', '0', 50, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_detail', 'freezerqty', '冻结数量', '0', 60, 1, 1, '', '', 'freezerqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_detail', 'pledgeqty', '质押数量', '0', 70, 1, 1, '', '', 'pledgeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_detail', 'enableqty', '可用数量', '0', 80, 1, 1, '', '', 'enableqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_spot_detail', 'createtime', '过户时间', '250', 90, 1, 1, '', '', 'createtime', 0, 0, '');
- -- 底部栏 -- 现货仓单 -- 挂单
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_spot_warrant_pending_order', 2, '底部栏-现货仓单', '', 'web端-底部栏-现货仓单-挂单');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pending_order', 'wrtradeorderid', '挂牌单号', '250', 10, 1, 1, '', '', 'wrtradeorderid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pending_order', 'wrtradetype', '挂牌类型', '0', 20, 1, 1, '', '', 'wrtradetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pending_order', 'deliverygoodsname', '品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pending_order', 'wrtypename', '商品', '250', 40, 1, 1, '', '', 'wrtypename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pending_order', 'warehousename', '仓库', '0', 50, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pending_order', 'futushow', '期货合约/基差', '200', 60, 1, 1, '', '', 'futushow', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pending_order', 'tradeprice', '挂牌价格', '0', 70, 1, 1, '', '', 'wrpricetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pending_order', 'orderqty', '挂牌数量', '0', 80, 1, 1, '', '', 'orderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pending_order', 'tradeqty', '成交数量', '0', 90, 1, 1, '', '', 'tradeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pending_order', 'ordertime', '挂牌时间', '250', 100, 1, 1, '', '', 'ordertime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pending_order', 'wrtradeorderstatus', '状态', '0', 110, 1, 1, '', '', 'wrtradeorderstatus', 0, 0, '');
- -- 底部栏 -- 现货仓单 -- 成交
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_spot_warrant_deal', 2, '底部栏-现货仓单', '', 'web端-底部栏-现货仓单-成交');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_deal', 'wrtradedetailid', '成交单号', '250', 10, 1, 1, '', '', 'wrtradedetailid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_deal', 'wrtradetype', '类型', '0', 20, 1, 1, '', '', 'wrtradetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_deal', 'deliverygoodsname', '品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_deal', 'wrtypename', '商品', '250', 40, 1, 1, '', '', 'wrtypename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_deal', 'warehousename', '仓库', '0', 50, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_deal', 'tradeprice', '成交价格', '0', 60, 1, 1, '', '', 'tradeprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_deal', 'tradeqty', '成交数量', '0', 70, 1, 1, '', '', 'tradeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_deal', 'amount', '成交金额', '0', 80, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_deal', 'chargevalue', '手续费', '0', 80, 1, 1, '', '', 'chargevalue', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_deal', 'matchusername', '对手方', '0', 90, 1, 1, '', '', 'matchusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_deal', 'tradetime', '成交时间', '250', 100, 1, 1, '', '', 'tradetime', 0, 0, '');
- -- 底部栏 -- 现货仓单 -- 指定成交
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_spot_warrant_designated_deal', 2, '底部栏-现货仓单', '', 'web端-底部栏-现货仓单-指定成交');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_designated_deal', 'username', '发起方', '0', 10, 1, 1, '', '', 'username', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_designated_deal', 'wrtradetype', '类型', '0', 20, 1, 1, '', '', 'wrtradetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_designated_deal', 'matchusername', '指定方', '0', 30, 1, 1, '', '', 'matchusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_designated_deal', 'deliverygoodsname', '品种', '0', 40, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_designated_deal', 'wrstandardname', '商品', '250', 50, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_designated_deal', 'warehousename', '仓库', '0', 60, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_designated_deal', 'fixedprice', '价格', '0', 70, 1, 1, '', '', 'fixedprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_designated_deal', 'tradeqty', '数量', '0', 80, 1, 1, '', '', 'tradeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_designated_deal', 'amount', '金额', '0', 90, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_designated_deal', 'ordertime', '委托时间', '250', 100, 1, 1, '', '', 'ordertime', 0, 0, '');
- -- 底部栏 -- 现货仓单 -- 提货
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_spot_warrant_pick_up', 2, '底部栏-现货仓单', '', 'web端-底部栏-现货仓单-提货');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pick_up', 'deliverygoodsname', '品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pick_up', 'wrstandardname', '商品', '0', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pick_up', 'warehousename', '仓库', '0', 30, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pick_up', 'applytype', '类型', '0', 40, 1, 1, '', '', 'applytype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pick_up', 'qty', '数量', '250', 50, 1, 1, '', '', 'qty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pick_up', 'applytime', '时间', '0', 60, 1, 1, '', '', 'applytime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pick_up', 'expresscompany', '物流信息', '0', 70, 1, 1, '', '', 'expresscompany', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_spot_warrant_pick_up', 'applystatus', '状态', '0', 80, 1, 1, '', '', 'applystatus', 0, 0, '');
- -- 底部栏 -- 预售仓单 -- 订单汇总
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_pre_sale_order_summary', 2, '底部栏-预售仓单', '', 'web端-底部栏-预售仓单-订单汇总');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_order_summary', 'deliverygoodsname', '品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_order_summary', 'wrtypename', '商品', '400', 20, 1, 1, '', '', 'wrtypename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_order_summary', 'warehousename', '仓库', '200', 30, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_order_summary', 'credittotalqty', '预售总量', '0', 40, 1, 1, '', '', 'credittotalqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_order_summary', 'credittradeqty', '成交总量', '0', 50, 1, 1, '', '', 'credittradeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_order_summary', 'creditfreezeqty', '冻结数量', '0', 60, 1, 1, '', '', 'creditfreezeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_order_summary', 'creditenableqty', '可用数量', '0', 70, 1, 1, '', '', 'creditenableqty', 0, 0, '');
- -- 底部栏 -- 预售仓单 -- 挂单
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_pre_sale_pending_order', 2, '底部栏-预售仓单', '', 'web端-底部栏-预售仓单-挂单');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_pending_order', 'wrtradeorderid', '挂牌单号', '250', 10, 1, 1, '', '', 'wrtradeorderid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_pending_order', 'wrtradetype', '挂牌类型', '0', 20, 1, 1, '', '', 'wrtradetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_pending_order', 'deliverygoodsname', '品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_pending_order', 'wrstandardname', '商品', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_pending_order', 'warehousename', '仓库', '0', 50, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_pending_order', 'deliverymonth', '交收月', '0', 60, 1, 1, '', '', 'deliverymonth', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_pending_order', 'futushow', '期货合约/基差', '200', 70, 1, 1, '', '', 'futushow', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_pending_order', 'tradeprice', '挂牌价格', '0', 80, 1, 1, '', '', 'tradeprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_pending_order', 'orderqty', '挂牌数量', '0', 90, 1, 1, '', '', 'orderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_pending_order', 'tradeqty', '成交数量', '0', 100, 1, 1, '', '', 'tradeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_pending_order', 'ordertime', '挂牌时间', '250', 110, 1, 1, '', '', 'ordertime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_pending_order', 'wrtradeorderstatus', '状态', '0', 120, 1, 1, '', '', 'wrtradeorderstatus', 0, 0, '');
- -- 底部栏 -- 预售仓单 -- 成交
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_pre_sale_make_deal', 2, '底部栏-预售仓单', '', 'web端-底部栏-预售仓单-成交');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_make_deal', 'wrtradedetailid', '成交单号', '250', 10, 1, 1, '', '', 'wrtradedetailid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_make_deal', 'wrtradetype', '类型', '0', 20, 1, 1, '', '', 'wrtradetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_make_deal', 'deliverygoodsname', '品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_make_deal', 'wrstandardname', '商品', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_make_deal', 'warehousename', '仓库', '0', 50, 1, 1, '', '', 'warehousename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_make_deal', 'deliverymonth', '交收月', '0', 60, 1, 1, '', '', 'deliverymonth', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_make_deal', 'tradeprice', '成交价格', '0', 70, 1, 1, '', '', 'tradeprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_make_deal', 'tradeqty', '成交数量', '0', 80, 1, 1, '', '', 'tradeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_make_deal', 'amount', '成交金额', '0', 90, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_make_deal', 'chargevalue', '手续费', '0', 90, 1, 1, '', '', 'chargevalue', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_make_deal', 'matchusername', '对手方', '0', 100, 1, 1, '', '', 'matchusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_pre_sale_make_deal', 'tradetime', '成交时间', '250', 110, 1, 1, '', '', 'tradetime', 0, 0, '');
- -- 底部栏 -- 商品合约 -- 合约汇总
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_commodity_contract_summary', 2, '底部栏-商品合约', '', 'web端-底部栏-商品合约-合约汇总');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_summary', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_summary', 'buyorsell', '方向', '0', 20, 1, 1, '', '', 'buyorsell', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_summary', 'curpositionqty', '持有数量', '0', 30, 1, 1, '', '', 'curpositionqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_summary', 'enableqty', '可用数量', '0', 40, 1, 1, '', '', 'enableqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_summary', 'frozenqty', '冻结数量', '0', 50, 1, 1, '', '', 'frozenqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_summary', 'averageprice', '均价', '0', 60, 1, 1, '', '', 'averageprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_summary', 'lastprice', '现价', '0', 70, 1, 1, '', '', 'lastprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_summary', 'holderprice', '持仓金额', '0', 80, 1, 1, '', '', 'holderprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_summary', 'usedmargin', '占用保证金', '0', 90, 1, 1, '', '', 'usedmargin', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_summary', 'tnqty', '市值', '0', 100, 1, 1, '', '', 'tnqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_summary', 'profitloss', '浮动盈亏', '0', 110, 1, 1, '', '', 'profitloss', 0, 0, '');
- -- 底部栏 -- 商品合约 -- 委托
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_commodity_contract_commission', 2, '底部栏-商品合约', '', 'web端-底部栏-商品合约-委托');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_commission', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_commission', 'buildtype', '类型', '0', 20, 1, 1, '', '', 'buildtype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_commission', 'orderprice', '委托价', '0', 30, 1, 1, '', '', 'orderprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_commission', 'orderqty', '委托数量', '0', 40, 1, 1, '', '', 'orderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_commission', 'tradeqty', '成交数量', '0', 50, 1, 1, '', '', 'tradeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_commission', 'orderid', '委托单号', '0', 60, 1, 1, '', '', 'orderid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_commission', 'ordertime', '委托时间', '0', 70, 1, 1, '', '', 'ordertime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_commission', 'orderstatus', '状态', '0', 80, 1, 1, '', '', 'orderstatus', 0, 0, '');
- -- 底部栏 -- 商品合约 -- 成交
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_commodity_contract_make_deal', 2, '底部栏-商品合约', '', 'web端-底部栏-商品合约-成交');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_make_deal', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_make_deal', 'buyorsell', '类型', '0', 20, 1, 1, '', '', 'buyorsell', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_make_deal', 'buildtype', '成交类型', '0', 20, 1, 1, '', '', 'buildtype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_make_deal', 'tradeprice', '成交价', '0', 30, 1, 1, '', '', 'tradeprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_make_deal', 'tradeqty', '成交数量', '0', 40, 1, 1, '', '', 'tradeqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_make_deal', 'closepl', '平仓盈亏', '0', 40, 1, 1, '', '', 'closepl', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_make_deal', 'charge', '手续费', '0', 40, 1, 1, '', '', 'charge', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_make_deal', 'tradeid', '成交单号', '0', 50, 1, 1, '', '', 'tradeid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_make_deal', 'matchaccountid', '成交对手', '0', 60, 1, 1, '', '', 'matchaccountid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_make_deal', 'tradetime', '成交时间', '0', 70, 1, 1, '', '', 'tradetime', 0, 0, '');
- -- 底部栏 -- 商品合约 -- 交收
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_commodity_contract_settlement', 2, '底部栏-商品合约', '', 'web端-底部栏-商品合约-交收');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_settlement', 'pgoodsname', '订单合约', '0', 10, 1, 1, '', '', 'pgoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_settlement', 'buyorsell', '类型', '0', 20, 1, 1, '', '', 'buyorsell', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_settlement', 'xdeliverycloseqty', '合同数量', '0', 30, 1, 1, '', '', 'xdeliverycloseqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_settlement', 'xgoodsamount', '合约金额', '0', 40, 1, 1, '', '', 'xgoodsamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_settlement', 'deliveryqty', '点选数量', '0', 50, 1, 1, '', '', 'deliveryqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_settlement', 'deliveryamount', '点价价格', '0', 60, 1, 1, '', '', 'deliveryamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_settlement', 'deliverypricemove', '点价贷款', '0', 70, 1, 1, '', '', 'deliverypricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_settlement', 'deliverypricemove', '升贴水', '0', 80, 1, 1, '', '', 'deliverypricemove', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_settlement', 'deliverytotalamount', '交收金额', '0', 90, 1, 1, '', '', 'deliverytotalamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_settlement', 'deliveryamount', '交收均价', '0', 100, 1, 1, '', '', 'deliveryamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_settlement', 'deliverytime', '申请时间', '0', 110, 1, 1, '', '', 'deliverytime', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_commodity_contract_settlement', 'deliverystatus', '状态', '0', 120, 1, 1, '', '', 'deliverystatus', 0, 0, '');
- -- 底部栏 -- 履约信息 -- 买履约
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_performance_info_buy', 2, '底部栏-履约信息', '', 'web端-底部栏-履约信息-买履约');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'deliverygoodsname', '品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'wrstandardname', '商品', '0', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'performancetype', '类型', '0', 30, 1, 1, '', '', 'performancetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'relatedorderid', '关联单号', '250', 40, 1, 1, '', '', 'relatedorderid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'paymenttype', '付款方式', '0', 50, 1, 1, '', '', 'paymenttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'buyerfreezeamount', '履约冻结', '0', 60, 1, 1, '', '', 'buyerfreezeamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'buyerfreezeamountremain', '履约冻结剩余', '0', 70, 1, 1, '', '', 'buyerfreezeamountremain', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'amount', '总金额', '0', 80, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'buypaidamount', '已付金额', '0', 90, 1, 1, '', '', 'buypaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'overshortamount', '溢短金额', '0', 100, 1, 1, '', '', 'overshortamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'sellusername', '卖方', '200', 110, 1, 1, '', '', 'sellusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'performancestatus', '履约状态', '0', 120, 1, 1, '', '', 'performancestatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'curstepname', '当前步骤', '0', 130, 1, 1, '', '', 'curstepname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_buy', 'createtime', '开始时间', '250', 140, 1, 1, '', '', 'createtime', 0, 0, '');
- -- 底部栏 -- 履约信息 -- 卖履约
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_performance_info_sale', 2, '底部栏-履约信息', '', 'web端-底部栏-履约信息-卖履约');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'deliverygoodsname', '品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'wrstandardname', '商品', '0', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'performancetype', '类型', '0', 30, 1, 1, '', '', 'performancetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'relatedorderid', '关联单号', '250', 40, 1, 1, '', '', 'relatedorderid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'paymenttype', '付款方式', '0', 50, 1, 1, '', '', 'paymenttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'sellerfreezeamount', '履约冻结', '0', 60, 1, 1, '', '', 'sellerfreezeamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'sellerfreezeamountremain', '履约冻结剩余', '0', 70, 1, 1, '', '', 'sellerfreezeamountremain', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'amount', '总金额', '0', 80, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'buypaidamount', '已付金额', '0', 90, 1, 1, '', '', 'buypaidamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'overshortamount', '溢短金额', '0', 100, 1, 1, '', '', 'overshortamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'buyusername', '买方', '200', 110, 1, 1, '', '', 'buyusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'performancestatus', '履约状态', '0', 120, 1, 1, '', '', 'performancestatus', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'curstepname', '当前步骤', '0', 130, 1, 1, '', '', 'curstepname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_performance_info_sale', 'createtime', '开始时间', '250', 140, 1, 1, '', '', 'createtime', 0, 0, '');
- -- 底部栏 -- 资金信息 -- 资金汇总
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_funding_info_summary', 2, '底部栏-资金信息', '', 'web端-底部栏-资金信息-资金汇总');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_funding_info_summary', 'accountid', '资金账号', '0', 10, 1, 1, '', '', 'accountid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_funding_info_summary', 'currentbalance', '净值', '0', 20, 1, 1, '', '', 'currentbalance', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_funding_info_summary', 'balance', '可用资金', '0', 30, 1, 1, '', '', 'balance', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_funding_info_summary', 'usedmargin', '占用资金', '0', 40, 1, 1, '', '', 'usedmargin', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_funding_info_summary', 'freezemargin', '冻结资金', '0', 50, 1, 1, '', '', 'freezemargin', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_funding_info_summary', 'usedmargin', '浮动盈亏', '0', 60, 1, 1, '', '', 'usedmargin', 0, 0, '');
- -- 底部栏 -- 资金信息 -- 资金流水
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_spot_trade_bottom_funding_info_log', 2, '底部栏-资金信息', '', 'web端-底部栏-资金信息-资金流水');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_funding_info_log', 'accountid', '资金账号', '0', 10, 1, 1, '', '', 'accountid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_funding_info_log', 'OPERATETYPENAME', '资金类型', '0', 20, 1, 1, '', '', 'operatetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_funding_info_log', 'amount', '金额', '0', 30, 1, 1, '', '', 'amount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_funding_info_log', 'currentbalance', '余额', '0', 40, 1, 1, '', '', 'currentbalance', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_spot_trade_bottom_funding_info_log', 'createtime', '时间', '0', 50, 1, 1, '', '', 'createtime', 0, 0, '');
- -- 底部栏 -- 融资管理 -- 申请单 --
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_financing_manage_bottom_apply_order', 2, '底部栏-融资管理', '', 'web端-底部栏-融资管理-申请单');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_apply_order', 'financetype', '类型', '0', 10, 1, 1, '', '', 'financetype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_apply_order', 'financename', '融出方', '0', 20, 1, 1, '', '', 'lenderusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_apply_order', 'tradeamount', '借款金额', '0', 30, 1, 1, '', '', 'tradeamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_apply_order', 'wrtypename', '购买商品', '400', 40, 1, 1, '', '', 'wrtypename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_apply_order', 'orderqty', '商品数量', '0', 50, 1, 1, '', '', 'orderqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_apply_order', 'financingdays', '借款天数', '0', 60, 1, 1, '', '', 'financingdays', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_apply_order', 'freezebuymargin', '保证金', '0', 70, 1, 1, '', '', 'freezebuymargin', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_apply_order', 'interestsettlevalue', '费用', '0', 80, 1, 1, '', '', 'interestsettlevalue', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_apply_order', 'interestsettlemode', '结算方式', '0', 90, 1, 1, '', '', 'interestsettlemode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_apply_order', 'interestminlen', '最小计费天数', '0', 100, 1, 1, '', '', 'interestminlen', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_apply_order', 'applydate', '申请时间', '0', 110, 1, 1, '', '', 'applydate', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_apply_order', 'applystatus', '状态', '0', 120, 1, 1, '', '', 'applystatus', 0, 0, '');
- -- 底部栏 -- 融资管理 -- 合同 --
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_financing_manage_bottom_contract', 2, '底部栏-融资管理', '', 'web端-底部栏-融资管理-合同');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_contract', 'scfcontractid', '合同编号', '0', 10, 1, 1, '', '', 'scfcontractid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_contract', 'scfcontracttype', '类型', '0', 20, 1, 1, '', '', 'scfcontracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_contract', 'lenderusername', '融出方', '0', 30, 1, 1, '', '', 'lenderusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_contract', 'lenderamount', '借款金额', '0', 40, 1, 1, '', '', 'lenderamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_contract', 'wrtypename', '购买商品', '400', 40, 1, 1, '', '', 'wrtypename', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_contract', 'remainamount', '剩余金额', '0', 60, 1, 1, '', '', 'remainamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_contract', 'remainwrpositionqty', '剩余数量', '0', 70, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_contract', 'buybackwrpositionqty', '已回购数量', '0', 80, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_contract', 'closeinterest', '已结费用', '0', 90, 1, 1, '', '', 'closeinterest', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_contract', 'unpaidinterest', '未结费用', '0', 100, 1, 1, '', '', 'unpaidinterest', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_contract', 'interestdebt', '费用欠款', '0', 110, 1, 1, '', '', 'interestdebt', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_contract', 'deadline', '截止日期', '0', 120, 1, 1, '', '', 'deadline', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_contract', 'scfcontractstatus', '状态', '0', 130, 1, 1, '', '', 'scfcontractstatus', 0, 0, '');
- -- 底部栏 -- 商品订单 -- 合约汇总 --
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_financing_manage_bottom_commodity_order_summary', 2, '底部栏-商品订单', '', 'web端-底部栏-商品订单-合约汇总');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_summary', 'scfcontractid', '订单合约', '0', 10, 1, 1, '', '', 'scfcontractid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_summary', 'scfcontracttype', '持有数量', '0', 20, 1, 1, '', '', 'scfcontracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_summary', 'lenderusername', '可用数量', '0', 30, 1, 1, '', '', 'lenderusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_summary', 'lenderamount', '冻结数量', '0', 40, 1, 1, '', '', 'lenderamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_summary', 'productname', '均价', '0', 50, 1, 1, '', '', 'productname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_summary', 'remainamount', '现价', '0', 60, 1, 1, '', '', 'remainamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_summary', 'remainwrpositionqty', '持仓金额', '0', 70, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_summary', 'buybackwrpositionqty', '浮动盈亏', '0', 80, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
- -- 底部栏 -- 商品订单 -- 委托 --
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_financing_manage_bottom_commodity_order_entrust', 2, '底部栏-商品订单', '', 'web端-底部栏-商品订单-委托');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_entrust', 'scfcontractid', '订单合约', '0', 10, 1, 1, '', '', 'scfcontractid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_entrust', 'scfcontracttype', '类型', '0', 20, 1, 1, '', '', 'scfcontracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_entrust', 'lenderusername', '委托价', '0', 30, 1, 1, '', '', 'lenderusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_entrust', 'lenderamount', '委托数量', '0', 40, 1, 1, '', '', 'lenderamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_entrust', 'productname', '成交数量', '0', 50, 1, 1, '', '', 'productname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_entrust', 'remainamount', '委托单号', '0', 60, 1, 1, '', '', 'remainamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_entrust', 'remainwrpositionqty', '委托时间', '0', 70, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_entrust', 'buybackwrpositionqty', '状态', '0', 80, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
- -- 底部栏 -- 商品订单 -- 成交 --
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_financing_manage_bottom_commodity_order_deal', 2, '底部栏-商品订单', '', 'web端-底部栏-商品订单-成交');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_deal', 'scfcontractid', '订单合约', '0', 10, 1, 1, '', '', 'scfcontractid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_deal', 'scfcontracttype', '类型', '0', 20, 1, 1, '', '', 'scfcontracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_deal', 'lenderusername', '成交价', '0', 30, 1, 1, '', '', 'lenderusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_deal', 'lenderamount', '成交数量', '0', 40, 1, 1, '', '', 'lenderamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_deal', 'productname', '成交单号', '0', 50, 1, 1, '', '', 'productname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_deal', 'remainamount', '成交对手', '0', 60, 1, 1, '', '', 'remainamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_deal', 'remainwrpositionqty', '成交时间', '0', 70, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
- -- 底部栏 -- 商品订单 -- 交收 --
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_financing_manage_bottom_commodity_order_settlement', 2, '底部栏-商品订单', '', 'web端-底部栏-商品订单-交收');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_settlement', 'scfcontractid', '订单合约', '0', 10, 1, 1, '', '', 'scfcontractid', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_settlement', 'scfcontracttype', '类型', '0', 20, 1, 1, '', '', 'scfcontracttype', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_settlement', 'lenderusername', '合约数量', '0', 30, 1, 1, '', '', 'lenderusername', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_settlement', 'lenderamount', '合约金额', '0', 40, 1, 1, '', '', 'lenderamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_settlement', 'productname', '点选数量', '0', 50, 1, 1, '', '', 'productname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_settlement', 'remainamount', '点价价格', '0', 60, 1, 1, '', '', 'remainamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_settlement', 'remainwrpositionqty', '点价贷款', '0', 70, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_settlement', 'remainwrpositionqty', '升贴水', '0', 80, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_settlement', 'remainwrpositionqty', '交收金额', '0', 90, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_settlement', 'remainwrpositionqty', '交收均价', '0', 100, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_settlement', 'remainwrpositionqty', '申请时间', '0', 110, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_bottom_commodity_order_settlement', 'remainwrpositionqty', '状态', '0', 120, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
- -- 市场 -- 现货贸易 -- 订单交易 --
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_financing_manage_order_transaction', 2, '现货贸易-订单交易', '', 'web端-市场-现货贸易-订单交易');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'index', '序号', '0', 10, 1, 1, '', '', 'index', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'goodscode', '代码', '0', 20, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'goodsname', '名称', '0', 30, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'buyprice', '买价', '0', 40, 1, 1, '', '', 'buyprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'buyamount', '买量', '0', 50, 1, 1, '', '', 'buyamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'sellprice', '卖价', '0', 60, 1, 1, '', '', 'sellprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'sellamount', '卖量', '0', 70, 1, 1, '', '', 'sellamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'latestprice', '最新价', '0', 80, 1, 1, '', '', 'latestprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'updown', '涨跌', '0', 90, 1, 1, '', '', 'updown', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'amplitude', '幅度', '0', 100, 1, 1, '', '', 'amplitude', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'opentoday', '今开', '0', 110, 1, 1, '', '', 'opentoday', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'closedyesterday', '昨收', '0', 120, 1, 1, '', '', 'closedyesterday', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'lowest', '最低', '0', 130, 1, 1, '', '', 'lowest', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_order_transaction', 'highest', '最高', '0', 140, 1, 1, '', '', 'highest', 0, 0, '');
- -- 市场 -- 现货贸易 -- 参考行情 --
- insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_financing_manage_reference_market', 2, '现货贸易-参考行情', '', 'web端-市场-现货贸易-参考行情');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'index', '序号', '0', 10, 1, 1, '', '', 'index', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'goodscode', '代码', '0', 20, 1, 1, '', '', 'goodscode', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'goodsname', '名称', '0', 30, 1, 1, '', '', 'goodsname', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'buyprice', '买价', '0', 40, 1, 1, '', '', 'buyprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'buyamount', '买量', '0', 50, 1, 1, '', '', 'buyamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'sellprice', '卖价', '0', 60, 1, 1, '', '', 'sellprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'sellamount', '卖量', '0', 70, 1, 1, '', '', 'sellamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'latestprice', '最新价', '0', 80, 1, 1, '', '', 'latestprice', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'updown', '涨跌', '0', 90, 1, 1, '', '', 'updown', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'amplitude', '幅度', '0', 100, 1, 1, '', '', 'amplitude', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'opentoday', '今开', '0', 110, 1, 1, '', '', 'opentoday', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'closedyesterday', '昨收', '0', 120, 1, 1, '', '', 'closedyesterday', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'lowest', '最低', '0', 130, 1, 1, '', '', 'lowest', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'highest', '最高', '0', 140, 1, 1, '', '', 'highest', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'vibrationamplitude', '振幅', '0', 150, 1, 1, '', '', 'vibrationamplitude', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'total', '总量', '0', 160, 1, 1, '', '', 'total', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'currentamount', '现量', '0', 170, 1, 1, '', '', 'currentamount', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'openinterest', '持仓量', '0', 180, 1, 1, '', '', 'openinterest', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'increasing', '日增', '0', 190, 1, 1, '', '', 'increasing', 0, 0, '');
- insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
- values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'amount', '金额', '0', 200, 1, 1, '', '', 'amount', 0, 0, '');
|