index.html 134 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <script>
  11. const table = [
  12. {
  13. tablekey: 'table_pcweb_warehouse',
  14. tabletype: 2,
  15. tablename: '仓库信息',
  16. tabelmenu: '',
  17. remark: 'web端-仓库信息',
  18. columns: [
  19. {
  20. autoid: 11204,
  21. tablekey: 'table_pcweb_warehouse',
  22. columnfield: 'warehousestatus',
  23. columntitle: '状态',
  24. columnwidth: '0',
  25. orderindex: 10,
  26. isshow: 1,
  27. aligntype: 1,
  28. formattertype: '',
  29. formatterstring: '',
  30. remark: 'warehousestatus',
  31. needsummary: 0,
  32. summarytype: 0,
  33. groupname: ''
  34. },
  35. {
  36. autoid: 11205,
  37. tablekey: 'table_pcweb_warehouse',
  38. columnfield: 'warehousecode',
  39. columntitle: '仓库简称',
  40. columnwidth: '0',
  41. orderindex: 20,
  42. isshow: 1,
  43. aligntype: 1,
  44. formattertype: '',
  45. formatterstring: '',
  46. remark: 'warehousecode',
  47. needsummary: 0,
  48. summarytype: 0,
  49. groupname: ''
  50. },
  51. {
  52. autoid: 11206,
  53. tablekey: 'table_pcweb_warehouse',
  54. columnfield: 'warehousetype',
  55. columntitle: '仓库类型',
  56. columnwidth: '0',
  57. orderindex: 30,
  58. isshow: 1,
  59. aligntype: 1,
  60. formattertype: '',
  61. formatterstring: '',
  62. remark: 'warehousetype',
  63. needsummary: 0,
  64. summarytype: 0,
  65. groupname: ''
  66. },
  67. {
  68. autoid: 11207,
  69. tablekey: 'table_pcweb_warehouse',
  70. columnfield: 'warehousename',
  71. columntitle: '仓库名称',
  72. columnwidth: '0',
  73. orderindex: 40,
  74. isshow: 1,
  75. aligntype: 1,
  76. formattertype: '',
  77. formatterstring: '',
  78. remark: 'warehousename',
  79. needsummary: 0,
  80. summarytype: 0,
  81. groupname: ''
  82. },
  83. {
  84. autoid: 11208,
  85. tablekey: 'table_pcweb_warehouse',
  86. columnfield: 'contactname',
  87. columntitle: '联系人',
  88. columnwidth: '0',
  89. orderindex: 50,
  90. isshow: 1,
  91. aligntype: 1,
  92. formattertype: '',
  93. formatterstring: '',
  94. remark: 'contactname',
  95. needsummary: 0,
  96. summarytype: 0,
  97. groupname: ''
  98. },
  99. {
  100. autoid: 11209,
  101. tablekey: 'table_pcweb_warehouse',
  102. columnfield: 'contactnum',
  103. columntitle: '联系电话',
  104. columnwidth: '0',
  105. orderindex: 60,
  106. isshow: 1,
  107. aligntype: 1,
  108. formattertype: '',
  109. formatterstring: '',
  110. remark: 'contactnum',
  111. needsummary: 0,
  112. summarytype: 0,
  113. groupname: ''
  114. },
  115. {
  116. autoid: 11210,
  117. tablekey: 'table_pcweb_warehouse',
  118. columnfield: 'address',
  119. columntitle: '详细地址',
  120. columnwidth: '0',
  121. orderindex: 70,
  122. isshow: 1,
  123. aligntype: 1,
  124. formattertype: '',
  125. formatterstring: '',
  126. remark: 'address',
  127. needsummary: 0,
  128. summarytype: 0,
  129. groupname: ''
  130. }
  131. ]
  132. },
  133. {
  134. tablekey: 'table_pcweb_purchase_pointprice',
  135. tabletype: 2,
  136. tablename: '采购_待点价',
  137. tabelmenu: '',
  138. remark: 'web端-采购-待点价',
  139. columns: [
  140. {
  141. autoid: 11211,
  142. tablekey: 'table_pcweb_purchase_pointprice',
  143. columnfield: 'accountname',
  144. columntitle: '销售方',
  145. columnwidth: '0',
  146. orderindex: 10,
  147. isshow: 1,
  148. aligntype: 1,
  149. formattertype: '',
  150. formatterstring: '',
  151. remark: 'accountname,',
  152. needsummary: 0,
  153. summarytype: 0,
  154. groupname: ''
  155. },
  156. {
  157. autoid: 11212,
  158. tablekey: 'table_pcweb_purchase_pointprice',
  159. columnfield: 'contractno',
  160. columntitle: '合同编号 ',
  161. columnwidth: '0',
  162. orderindex: 20,
  163. isshow: 1,
  164. aligntype: 1,
  165. formattertype: '',
  166. formatterstring: '',
  167. remark: 'contractno',
  168. needsummary: 0,
  169. summarytype: 0,
  170. groupname: ''
  171. },
  172. {
  173. autoid: 11213,
  174. tablekey: 'table_pcweb_purchase_pointprice',
  175. columnfield: 'deliverygoodsname',
  176. columntitle: '现货品种',
  177. columnwidth: '0',
  178. orderindex: 30,
  179. isshow: 1,
  180. aligntype: 1,
  181. formattertype: '',
  182. formatterstring: '',
  183. remark: 'deliverygoodsname',
  184. needsummary: 0,
  185. summarytype: 0,
  186. groupname: ''
  187. },
  188. {
  189. autoid: 11214,
  190. tablekey: 'table_pcweb_purchase_pointprice',
  191. columnfield: 'spotgoodsdesc',
  192. columntitle: '商品规格 ',
  193. columnwidth: '0',
  194. orderindex: 40,
  195. isshow: 1,
  196. aligntype: 1,
  197. formattertype: '',
  198. formatterstring: '',
  199. remark: 'spotgoodsdesc',
  200. needsummary: 0,
  201. summarytype: 0,
  202. groupname: ''
  203. },
  204. {
  205. autoid: 11215,
  206. tablekey: 'table_pcweb_purchase_pointprice',
  207. columnfield: 'goodscode',
  208. columntitle: '点价合约',
  209. columnwidth: '0',
  210. orderindex: 50,
  211. isshow: 1,
  212. aligntype: 1,
  213. formattertype: '',
  214. formatterstring: '',
  215. remark: 'goodscode',
  216. needsummary: 0,
  217. summarytype: 0,
  218. groupname: ''
  219. },
  220. {
  221. autoid: 11216,
  222. tablekey: 'table_pcweb_purchase_pointprice',
  223. columnfield: 'pricemove',
  224. columntitle: '升贴水',
  225. columnwidth: '0',
  226. orderindex: 60,
  227. isshow: 1,
  228. aligntype: 1,
  229. formattertype: '',
  230. formatterstring: '',
  231. remark: 'pricemove',
  232. needsummary: 0,
  233. summarytype: 0,
  234. groupname: ''
  235. },
  236. {
  237. autoid: 11217,
  238. tablekey: 'table_pcweb_purchase_pointprice',
  239. columnfield: 'qty',
  240. columntitle: '合同量',
  241. columnwidth: '0',
  242. orderindex: 70,
  243. isshow: 1,
  244. aligntype: 1,
  245. formattertype: '',
  246. formatterstring: '',
  247. remark: 'qty',
  248. needsummary: 0,
  249. summarytype: 0,
  250. groupname: ''
  251. },
  252. {
  253. autoid: 11218,
  254. tablekey: 'table_pcweb_purchase_pointprice',
  255. columnfield: 'unpricedqty',
  256. columntitle: '未定价量',
  257. columnwidth: '0',
  258. orderindex: 80,
  259. isshow: 1,
  260. aligntype: 1,
  261. formattertype: '',
  262. formatterstring: '',
  263. remark: 'unpricedqty',
  264. needsummary: 0,
  265. summarytype: 0,
  266. groupname: ''
  267. },
  268. {
  269. autoid: 11219,
  270. tablekey: 'table_pcweb_purchase_pointprice',
  271. columnfield: 'pricedqty',
  272. columntitle: '已定价量',
  273. columnwidth: '0',
  274. orderindex: 90,
  275. isshow: 1,
  276. aligntype: 1,
  277. formattertype: '',
  278. formatterstring: '',
  279. remark: 'pricedqty',
  280. needsummary: 0,
  281. summarytype: 0,
  282. groupname: ''
  283. },
  284. {
  285. autoid: 11220,
  286. tablekey: 'table_pcweb_purchase_pointprice',
  287. columnfield: 'unsureqty',
  288. columntitle: '未交收量 ',
  289. columnwidth: '0',
  290. orderindex: 100,
  291. isshow: 1,
  292. aligntype: 1,
  293. formattertype: '',
  294. formatterstring: '',
  295. remark: 'unsureqty',
  296. needsummary: 0,
  297. summarytype: 0,
  298. groupname: ''
  299. },
  300. {
  301. autoid: 11221,
  302. tablekey: 'table_pcweb_purchase_pointprice',
  303. columnfield: 'payamount',
  304. columntitle: '已支付额',
  305. columnwidth: '0',
  306. orderindex: 110,
  307. isshow: 1,
  308. aligntype: 1,
  309. formattertype: '',
  310. formatterstring: '',
  311. remark: 'payamount',
  312. needsummary: 0,
  313. summarytype: 0,
  314. groupname: ''
  315. },
  316. {
  317. autoid: 11222,
  318. tablekey: 'table_pcweb_purchase_pointprice',
  319. columnfield: 'unpayAmount',
  320. columntitle: '待支付额 ',
  321. columnwidth: '0',
  322. orderindex: 120,
  323. isshow: 1,
  324. aligntype: 1,
  325. formattertype: '',
  326. formatterstring: '',
  327. remark: 'unpayAmount',
  328. needsummary: 0,
  329. summarytype: 0,
  330. groupname: ''
  331. },
  332. {
  333. autoid: 11223,
  334. tablekey: 'table_pcweb_purchase_pointprice',
  335. columnfield: 'invoiceamount',
  336. columntitle: '已开票额',
  337. columnwidth: '0',
  338. orderindex: 130,
  339. isshow: 1,
  340. aligntype: 1,
  341. formattertype: '',
  342. formatterstring: '',
  343. remark: 'invoiceamount',
  344. needsummary: 0,
  345. summarytype: 0,
  346. groupname: ''
  347. },
  348. {
  349. autoid: 11224,
  350. tablekey: 'table_pcweb_purchase_pointprice',
  351. columnfield: 'daikaiAmount',
  352. columntitle: '待开票额',
  353. columnwidth: '0',
  354. orderindex: 140,
  355. isshow: 1,
  356. aligntype: 1,
  357. formattertype: '',
  358. formatterstring: '',
  359. remark: 'daikaiAmount',
  360. needsummary: 0,
  361. summarytype: 0,
  362. groupname: ''
  363. },
  364. {
  365. autoid: 11225,
  366. tablekey: 'table_pcweb_purchase_pointprice',
  367. columnfield: 'eliverystartdate,deliveryenddate',
  368. columntitle: '点价期',
  369. columnwidth: '0',
  370. orderindex: 150,
  371. isshow: 1,
  372. aligntype: 1,
  373. formattertype: '',
  374. formatterstring: '',
  375. remark: 'eliverystartdate,deliveryenddate',
  376. needsummary: 0,
  377. summarytype: 0,
  378. groupname: ''
  379. },
  380. {
  381. autoid: 11226,
  382. tablekey: 'table_pcweb_purchase_pointprice',
  383. columnfield: 'startdate,enddate',
  384. columntitle: '交收期',
  385. columnwidth: '0',
  386. orderindex: 160,
  387. isshow: 1,
  388. aligntype: 1,
  389. formattertype: '',
  390. formatterstring: '',
  391. remark: 'startdate,enddate',
  392. needsummary: 0,
  393. summarytype: 0,
  394. groupname: ''
  395. },
  396. {
  397. autoid: 11227,
  398. tablekey: 'table_pcweb_purchase_pointprice',
  399. columnfield: 'convertfactor',
  400. columntitle: '标仓系数',
  401. columnwidth: '0',
  402. orderindex: 170,
  403. isshow: 1,
  404. aligntype: 1,
  405. formattertype: '',
  406. formatterstring: '',
  407. remark: 'convertfactor',
  408. needsummary: 0,
  409. summarytype: 0,
  410. groupname: ''
  411. }
  412. ]
  413. },
  414. {
  415. tablekey: 'table_pcweb_purchase_settle',
  416. tabletype: 2,
  417. tablename: '采购_履约交收',
  418. tabelmenu: '',
  419. remark: 'web端-采购-履约交收',
  420. columns: [
  421. {
  422. autoid: 11228,
  423. tablekey: 'table_pcweb_purchase_settle',
  424. columnfield: 'accountname',
  425. columntitle: '销售方',
  426. columnwidth: '0',
  427. orderindex: 10,
  428. isshow: 1,
  429. aligntype: 1,
  430. formattertype: '',
  431. formatterstring: '',
  432. remark: 'accountname',
  433. needsummary: 0,
  434. summarytype: 0,
  435. groupname: ''
  436. },
  437. {
  438. autoid: 11229,
  439. tablekey: 'table_pcweb_purchase_settle',
  440. columnfield: 'contractno',
  441. columntitle: '合同编号 ',
  442. columnwidth: '0',
  443. orderindex: 20,
  444. isshow: 1,
  445. aligntype: 1,
  446. formattertype: '',
  447. formatterstring: '',
  448. remark: 'contractno',
  449. needsummary: 0,
  450. summarytype: 0,
  451. groupname: ''
  452. },
  453. {
  454. autoid: 11230,
  455. tablekey: 'table_pcweb_purchase_settle',
  456. columnfield: 'deliverygoodsname',
  457. columntitle: '现货品种',
  458. columnwidth: '0',
  459. orderindex: 30,
  460. isshow: 1,
  461. aligntype: 1,
  462. formattertype: '',
  463. formatterstring: '',
  464. remark: 'deliverygoodsname',
  465. needsummary: 0,
  466. summarytype: 0,
  467. groupname: ''
  468. },
  469. {
  470. autoid: 11231,
  471. tablekey: 'table_pcweb_purchase_settle',
  472. columnfield: 'spotgoodsdesc',
  473. columntitle: '商品规格',
  474. columnwidth: '0',
  475. orderindex: 40,
  476. isshow: 1,
  477. aligntype: 1,
  478. formattertype: '',
  479. formatterstring: '',
  480. remark: 'spotgoodsdesc',
  481. needsummary: 0,
  482. summarytype: 0,
  483. groupname: ''
  484. },
  485. {
  486. autoid: 11232,
  487. tablekey: 'table_pcweb_purchase_settle',
  488. columnfield: 'goodscode',
  489. columntitle: '点价合约',
  490. columnwidth: '0',
  491. orderindex: 50,
  492. isshow: 1,
  493. aligntype: 1,
  494. formattertype: '',
  495. formatterstring: '',
  496. remark: 'goodscode',
  497. needsummary: 0,
  498. summarytype: 0,
  499. groupname: ''
  500. },
  501. {
  502. autoid: 11233,
  503. tablekey: 'table_pcweb_purchase_settle',
  504. columnfield: 'pricemove',
  505. columntitle: '升贴水',
  506. columnwidth: '0',
  507. orderindex: 60,
  508. isshow: 1,
  509. aligntype: 1,
  510. formattertype: '',
  511. formatterstring: '',
  512. remark: 'pricemove',
  513. needsummary: 0,
  514. summarytype: 0,
  515. groupname: ''
  516. },
  517. {
  518. autoid: 11234,
  519. tablekey: 'table_pcweb_purchase_settle',
  520. columnfield: 'pricedqty',
  521. columntitle: '已定价量',
  522. columnwidth: '0',
  523. orderindex: 70,
  524. isshow: 1,
  525. aligntype: 1,
  526. formattertype: '',
  527. formatterstring: '',
  528. remark: 'pricedqty',
  529. needsummary: 0,
  530. summarytype: 0,
  531. groupname: ''
  532. },
  533. {
  534. autoid: 11235,
  535. tablekey: 'table_pcweb_purchase_settle',
  536. columnfield: 'unsureqty',
  537. columntitle: '未交收量',
  538. columnwidth: '0',
  539. orderindex: 80,
  540. isshow: 1,
  541. aligntype: 1,
  542. formattertype: '',
  543. formatterstring: '',
  544. remark: 'unsureqty',
  545. needsummary: 0,
  546. summarytype: 0,
  547. groupname: ''
  548. },
  549. {
  550. autoid: 11236,
  551. tablekey: 'table_pcweb_purchase_settle',
  552. columnfield: 'payamount',
  553. columntitle: '已支付额',
  554. columnwidth: '0',
  555. orderindex: 90,
  556. isshow: 1,
  557. aligntype: 1,
  558. formattertype: '',
  559. formatterstring: '',
  560. remark: 'payamount',
  561. needsummary: 0,
  562. summarytype: 0,
  563. groupname: ''
  564. },
  565. {
  566. autoid: 11237,
  567. tablekey: 'table_pcweb_purchase_settle',
  568. columnfield: 'unpayAmount',
  569. columntitle: '待支付额 ',
  570. columnwidth: '0',
  571. orderindex: 100,
  572. isshow: 1,
  573. aligntype: 1,
  574. formattertype: '',
  575. formatterstring: '',
  576. remark: 'unpayAmount',
  577. needsummary: 0,
  578. summarytype: 0,
  579. groupname: ''
  580. },
  581. {
  582. autoid: 11238,
  583. tablekey: 'table_pcweb_purchase_settle',
  584. columnfield: 'invoiceamount',
  585. columntitle: '已开票额',
  586. columnwidth: '0',
  587. orderindex: 110,
  588. isshow: 1,
  589. aligntype: 1,
  590. formattertype: '',
  591. formatterstring: '',
  592. remark: 'invoiceamount',
  593. needsummary: 0,
  594. summarytype: 0,
  595. groupname: ''
  596. },
  597. {
  598. autoid: 11239,
  599. tablekey: 'table_pcweb_purchase_settle',
  600. columnfield: 'daikaiAmount',
  601. columntitle: '待开票额 ',
  602. columnwidth: '0',
  603. orderindex: 120,
  604. isshow: 1,
  605. aligntype: 1,
  606. formattertype: '',
  607. formatterstring: '',
  608. remark: 'daikaiAmount',
  609. needsummary: 0,
  610. summarytype: 0,
  611. groupname: ''
  612. },
  613. {
  614. autoid: 11240,
  615. tablekey: 'table_pcweb_purchase_settle',
  616. columnfield: 'deliverystartdate,deliveryenddate',
  617. columntitle: '点价期',
  618. columnwidth: '0',
  619. orderindex: 130,
  620. isshow: 1,
  621. aligntype: 1,
  622. formattertype: '',
  623. formatterstring: '',
  624. remark: 'deliverystartdate,deliveryenddate',
  625. needsummary: 0,
  626. summarytype: 0,
  627. groupname: ''
  628. },
  629. {
  630. autoid: 11241,
  631. tablekey: 'table_pcweb_purchase_settle',
  632. columnfield: 'startdate,enddate',
  633. columntitle: '交收期 ',
  634. columnwidth: '0',
  635. orderindex: 140,
  636. isshow: 1,
  637. aligntype: 1,
  638. formattertype: '',
  639. formatterstring: '',
  640. remark: 'tartdate,enddate',
  641. needsummary: 0,
  642. summarytype: 0,
  643. groupname: ''
  644. },
  645. {
  646. autoid: 11242,
  647. tablekey: 'table_pcweb_purchase_settle',
  648. columnfield: 'convertfactor',
  649. columntitle: '标仓系数',
  650. columnwidth: '0',
  651. orderindex: 150,
  652. isshow: 1,
  653. aligntype: 1,
  654. formattertype: '',
  655. formatterstring: '',
  656. remark: 'convertfactor',
  657. needsummary: 0,
  658. summarytype: 0,
  659. groupname: ''
  660. },
  661. {
  662. autoid: 11243,
  663. tablekey: 'table_pcweb_purchase_settle',
  664. columnfield: 'qty',
  665. columntitle: '合同量',
  666. columnwidth: '0',
  667. orderindex: 160,
  668. isshow: 1,
  669. aligntype: 1,
  670. formattertype: '',
  671. formatterstring: '',
  672. remark: 'qty',
  673. needsummary: 0,
  674. summarytype: 0,
  675. groupname: ''
  676. },
  677. {
  678. autoid: 11244,
  679. tablekey: 'table_pcweb_purchase_settle',
  680. columnfield: 'unpricedqty',
  681. columntitle: '未定价量',
  682. columnwidth: '0',
  683. orderindex: 170,
  684. isshow: 1,
  685. aligntype: 1,
  686. formattertype: '',
  687. formatterstring: '',
  688. remark: 'unpricedqty',
  689. needsummary: 0,
  690. summarytype: 0,
  691. groupname: ''
  692. }
  693. ]
  694. },
  695. {
  696. tablekey: 'table_pcweb_purchase_all',
  697. tabletype: 2,
  698. tablename: '采购_全部',
  699. tabelmenu: '',
  700. remark: 'web端-采购-全部',
  701. columns: [
  702. {
  703. autoid: 11245,
  704. tablekey: 'table_pcweb_purchase_all',
  705. columnfield: 'accountname',
  706. columntitle: '销售方 ',
  707. columnwidth: '0',
  708. orderindex: 10,
  709. isshow: 1,
  710. aligntype: 1,
  711. formattertype: '',
  712. formatterstring: '',
  713. remark: 'accountname',
  714. needsummary: 0,
  715. summarytype: 0,
  716. groupname: ''
  717. },
  718. {
  719. autoid: 11246,
  720. tablekey: 'table_pcweb_purchase_all',
  721. columnfield: 'contractno',
  722. columntitle: '合同编号 ',
  723. columnwidth: '0',
  724. orderindex: 20,
  725. isshow: 1,
  726. aligntype: 1,
  727. formattertype: '',
  728. formatterstring: '',
  729. remark: 'contractno',
  730. needsummary: 0,
  731. summarytype: 0,
  732. groupname: ''
  733. },
  734. {
  735. autoid: 11247,
  736. tablekey: 'table_pcweb_purchase_all',
  737. columnfield: 'contracctstatus',
  738. columntitle: '状态',
  739. columnwidth: '0',
  740. orderindex: 30,
  741. isshow: 1,
  742. aligntype: 1,
  743. formattertype: '',
  744. formatterstring: '',
  745. remark: 'contracctstatus',
  746. needsummary: 0,
  747. summarytype: 0,
  748. groupname: ''
  749. },
  750. {
  751. autoid: 11248,
  752. tablekey: 'table_pcweb_purchase_all',
  753. columnfield: 'deliverygoodsname',
  754. columntitle: '现货品种',
  755. columnwidth: '0',
  756. orderindex: 40,
  757. isshow: 1,
  758. aligntype: 1,
  759. formattertype: '',
  760. formatterstring: '',
  761. remark: 'deliverygoodsname',
  762. needsummary: 0,
  763. summarytype: 0,
  764. groupname: ''
  765. },
  766. {
  767. autoid: 11249,
  768. tablekey: 'table_pcweb_purchase_all',
  769. columnfield: 'spotgoodsdesc',
  770. columntitle: '商品规格',
  771. columnwidth: '0',
  772. orderindex: 50,
  773. isshow: 1,
  774. aligntype: 1,
  775. formattertype: '',
  776. formatterstring: '',
  777. remark: 'spotgoodsdesc',
  778. needsummary: 0,
  779. summarytype: 0,
  780. groupname: ''
  781. },
  782. {
  783. autoid: 11250,
  784. tablekey: 'table_pcweb_purchase_all',
  785. columnfield: 'goodscode',
  786. columntitle: '点价合约 ',
  787. columnwidth: '0',
  788. orderindex: 60,
  789. isshow: 1,
  790. aligntype: 1,
  791. formattertype: '',
  792. formatterstring: '',
  793. remark: 'goodscode',
  794. needsummary: 0,
  795. summarytype: 0,
  796. groupname: ''
  797. },
  798. {
  799. autoid: 11251,
  800. tablekey: 'table_pcweb_purchase_all',
  801. columnfield: 'pricemove',
  802. columntitle: '升贴水 ',
  803. columnwidth: '0',
  804. orderindex: 70,
  805. isshow: 1,
  806. aligntype: 1,
  807. formattertype: '',
  808. formatterstring: '',
  809. remark: 'pricemove',
  810. needsummary: 0,
  811. summarytype: 0,
  812. groupname: ''
  813. },
  814. {
  815. autoid: 11252,
  816. tablekey: 'table_pcweb_purchase_all',
  817. columnfield: 'convertfactor',
  818. columntitle: '标仓系数 ',
  819. columnwidth: '0',
  820. orderindex: 80,
  821. isshow: 1,
  822. aligntype: 1,
  823. formattertype: '',
  824. formatterstring: '',
  825. remark: 'convertfactor',
  826. needsummary: 0,
  827. summarytype: 0,
  828. groupname: ''
  829. },
  830. {
  831. autoid: 11253,
  832. tablekey: 'table_pcweb_purchase_all',
  833. columnfield: 'contracctstatus',
  834. columntitle: '状态 ',
  835. columnwidth: '0',
  836. orderindex: 90,
  837. isshow: 1,
  838. aligntype: 1,
  839. formattertype: '',
  840. formatterstring: '',
  841. remark: 'contracctstatus',
  842. needsummary: 0,
  843. summarytype: 0,
  844. groupname: ''
  845. },
  846. {
  847. autoid: 11254,
  848. tablekey: 'table_pcweb_purchase_all',
  849. columnfield: 'qty',
  850. columntitle: '合同量',
  851. columnwidth: '0',
  852. orderindex: 100,
  853. isshow: 1,
  854. aligntype: 1,
  855. formattertype: '',
  856. formatterstring: '',
  857. remark: 'qty',
  858. needsummary: 0,
  859. summarytype: 0,
  860. groupname: ''
  861. },
  862. {
  863. autoid: 11255,
  864. tablekey: 'table_pcweb_purchase_all',
  865. columnfield: 'unpricedqty',
  866. columntitle: '未定价量 ',
  867. columnwidth: '0',
  868. orderindex: 110,
  869. isshow: 1,
  870. aligntype: 1,
  871. formattertype: '',
  872. formatterstring: '',
  873. remark: 'unpricedqty',
  874. needsummary: 0,
  875. summarytype: 0,
  876. groupname: ''
  877. },
  878. {
  879. autoid: 11256,
  880. tablekey: 'table_pcweb_purchase_all',
  881. columnfield: 'pricedqty',
  882. columntitle: '已定价量 ',
  883. columnwidth: '0',
  884. orderindex: 120,
  885. isshow: 1,
  886. aligntype: 1,
  887. formattertype: '',
  888. formatterstring: '',
  889. remark: 'pricedqty',
  890. needsummary: 0,
  891. summarytype: 0,
  892. groupname: ''
  893. },
  894. {
  895. autoid: 11257,
  896. tablekey: 'table_pcweb_purchase_all',
  897. columnfield: 'unsureqty',
  898. columntitle: '未交收量 ',
  899. columnwidth: '0',
  900. orderindex: 130,
  901. isshow: 1,
  902. aligntype: 1,
  903. formattertype: '',
  904. formatterstring: '',
  905. remark: 'unsureqty',
  906. needsummary: 0,
  907. summarytype: 0,
  908. groupname: ''
  909. },
  910. {
  911. autoid: 11258,
  912. tablekey: 'table_pcweb_purchase_all',
  913. columnfield: 'payamount',
  914. columntitle: '已支付额',
  915. columnwidth: '0',
  916. orderindex: 140,
  917. isshow: 1,
  918. aligntype: 1,
  919. formattertype: '',
  920. formatterstring: '',
  921. remark: 'payamount',
  922. needsummary: 0,
  923. summarytype: 0,
  924. groupname: ''
  925. },
  926. {
  927. autoid: 11259,
  928. tablekey: 'table_pcweb_purchase_all',
  929. columnfield: 'unpayAmount',
  930. columntitle: '待支付额 ',
  931. columnwidth: '0',
  932. orderindex: 150,
  933. isshow: 1,
  934. aligntype: 1,
  935. formattertype: '',
  936. formatterstring: '',
  937. remark: 'unpayAmount',
  938. needsummary: 0,
  939. summarytype: 0,
  940. groupname: ''
  941. },
  942. {
  943. autoid: 11260,
  944. tablekey: 'table_pcweb_purchase_all',
  945. columnfield: 'invoiceamount',
  946. columntitle: '已开票额',
  947. columnwidth: '0',
  948. orderindex: 160,
  949. isshow: 1,
  950. aligntype: 1,
  951. formattertype: '',
  952. formatterstring: '',
  953. remark: 'invoiceamount',
  954. needsummary: 0,
  955. summarytype: 0,
  956. groupname: ''
  957. },
  958. {
  959. autoid: 11261,
  960. tablekey: 'table_pcweb_purchase_all',
  961. columnfield: 'daikaiAmount',
  962. columntitle: '待开票额 ',
  963. columnwidth: '0',
  964. orderindex: 170,
  965. isshow: 1,
  966. aligntype: 1,
  967. formattertype: '',
  968. formatterstring: '',
  969. remark: 'daikaiAmount',
  970. needsummary: 0,
  971. summarytype: 0,
  972. groupname: ''
  973. },
  974. {
  975. autoid: 11262,
  976. tablekey: 'table_pcweb_purchase_all',
  977. columnfield: 'deliverystartdate,deliveryenddate',
  978. columntitle: '点价期 ',
  979. columnwidth: '0',
  980. orderindex: 180,
  981. isshow: 1,
  982. aligntype: 1,
  983. formattertype: '',
  984. formatterstring: '',
  985. remark: 'deliverystartdate,deliveryenddate',
  986. needsummary: 0,
  987. summarytype: 0,
  988. groupname: ''
  989. },
  990. {
  991. autoid: 11263,
  992. tablekey: 'table_pcweb_purchase_all',
  993. columnfield: 'startdate,enddate',
  994. columntitle: '交收期 ',
  995. columnwidth: '0',
  996. orderindex: 190,
  997. isshow: 1,
  998. aligntype: 1,
  999. formattertype: '',
  1000. formatterstring: '',
  1001. remark: 'startdate,enddate',
  1002. needsummary: 0,
  1003. summarytype: 0,
  1004. groupname: ''
  1005. }
  1006. ]
  1007. },
  1008. {
  1009. tablekey: 'table_pcweb_sales_pointprice',
  1010. tabletype: 2,
  1011. tablename: '销售_待点价',
  1012. tabelmenu: '',
  1013. remark: 'web端-销售-待点价',
  1014. columns: [
  1015. {
  1016. autoid: 11264,
  1017. tablekey: 'table_pcweb_sales_pointprice',
  1018. columnfield: 'accountname',
  1019. columntitle: '采购方 ',
  1020. columnwidth: '0',
  1021. orderindex: 10,
  1022. isshow: 1,
  1023. aligntype: 1,
  1024. formattertype: '',
  1025. formatterstring: '',
  1026. remark: 'accountname',
  1027. needsummary: 0,
  1028. summarytype: 0,
  1029. groupname: ''
  1030. },
  1031. {
  1032. autoid: 11265,
  1033. tablekey: 'table_pcweb_sales_pointprice',
  1034. columnfield: 'contractno',
  1035. columntitle: '合同编号',
  1036. columnwidth: '0',
  1037. orderindex: 20,
  1038. isshow: 1,
  1039. aligntype: 1,
  1040. formattertype: '',
  1041. formatterstring: '',
  1042. remark: 'contractno',
  1043. needsummary: 0,
  1044. summarytype: 0,
  1045. groupname: ''
  1046. },
  1047. {
  1048. autoid: 11266,
  1049. tablekey: 'table_pcweb_sales_pointprice',
  1050. columnfield: 'deliverygoodsname',
  1051. columntitle: '现货品种 ',
  1052. columnwidth: '0',
  1053. orderindex: 30,
  1054. isshow: 1,
  1055. aligntype: 1,
  1056. formattertype: '',
  1057. formatterstring: '',
  1058. remark: 'deliverygoodsname',
  1059. needsummary: 0,
  1060. summarytype: 0,
  1061. groupname: ''
  1062. },
  1063. {
  1064. autoid: 11267,
  1065. tablekey: 'table_pcweb_sales_pointprice',
  1066. columnfield: 'spotgoodsdesc',
  1067. columntitle: '商品规格 ',
  1068. columnwidth: '0',
  1069. orderindex: 40,
  1070. isshow: 1,
  1071. aligntype: 1,
  1072. formattertype: '',
  1073. formatterstring: '',
  1074. remark: 'spotgoodsdesc',
  1075. needsummary: 0,
  1076. summarytype: 0,
  1077. groupname: ''
  1078. },
  1079. {
  1080. autoid: 11268,
  1081. tablekey: 'table_pcweb_sales_pointprice',
  1082. columnfield: 'goodscode',
  1083. columntitle: '点价合约',
  1084. columnwidth: '0',
  1085. orderindex: 50,
  1086. isshow: 1,
  1087. aligntype: 1,
  1088. formattertype: '',
  1089. formatterstring: '',
  1090. remark: 'goodscode',
  1091. needsummary: 0,
  1092. summarytype: 0,
  1093. groupname: ''
  1094. },
  1095. {
  1096. autoid: 11269,
  1097. tablekey: 'table_pcweb_sales_pointprice',
  1098. columnfield: 'pricemove',
  1099. columntitle: '升贴水 ',
  1100. columnwidth: '0',
  1101. orderindex: 60,
  1102. isshow: 1,
  1103. aligntype: 1,
  1104. formattertype: '',
  1105. formatterstring: '',
  1106. remark: 'pricemove',
  1107. needsummary: 0,
  1108. summarytype: 0,
  1109. groupname: ''
  1110. },
  1111. {
  1112. autoid: 11270,
  1113. tablekey: 'table_pcweb_sales_pointprice',
  1114. columnfield: 'qty',
  1115. columntitle: '合同量',
  1116. columnwidth: '0',
  1117. orderindex: 70,
  1118. isshow: 1,
  1119. aligntype: 1,
  1120. formattertype: '',
  1121. formatterstring: '',
  1122. remark: 'qty',
  1123. needsummary: 0,
  1124. summarytype: 0,
  1125. groupname: ''
  1126. },
  1127. {
  1128. autoid: 11271,
  1129. tablekey: 'table_pcweb_sales_pointprice',
  1130. columnfield: 'unpricedqty',
  1131. columntitle: '未定价量 ',
  1132. columnwidth: '0',
  1133. orderindex: 80,
  1134. isshow: 1,
  1135. aligntype: 1,
  1136. formattertype: '',
  1137. formatterstring: '',
  1138. remark: 'unpricedqty',
  1139. needsummary: 0,
  1140. summarytype: 0,
  1141. groupname: ''
  1142. },
  1143. {
  1144. autoid: 11272,
  1145. tablekey: 'table_pcweb_sales_pointprice',
  1146. columnfield: 'pricedqty',
  1147. columntitle: '已定价量 ',
  1148. columnwidth: '0',
  1149. orderindex: 90,
  1150. isshow: 1,
  1151. aligntype: 1,
  1152. formattertype: '',
  1153. formatterstring: '',
  1154. remark: 'pricedqty',
  1155. needsummary: 0,
  1156. summarytype: 0,
  1157. groupname: ''
  1158. },
  1159. {
  1160. autoid: 11273,
  1161. tablekey: 'table_pcweb_sales_pointprice',
  1162. columnfield: 'unsureqty',
  1163. columntitle: '未交收量 ',
  1164. columnwidth: '0',
  1165. orderindex: 100,
  1166. isshow: 1,
  1167. aligntype: 1,
  1168. formattertype: '',
  1169. formatterstring: '',
  1170. remark: 'unsureqty',
  1171. needsummary: 0,
  1172. summarytype: 0,
  1173. groupname: ''
  1174. },
  1175. {
  1176. autoid: 11274,
  1177. tablekey: 'table_pcweb_sales_pointprice',
  1178. columnfield: 'payamount',
  1179. columntitle: '已收款额 ',
  1180. columnwidth: '0',
  1181. orderindex: 110,
  1182. isshow: 1,
  1183. aligntype: 1,
  1184. formattertype: '',
  1185. formatterstring: '',
  1186. remark: 'payamount',
  1187. needsummary: 0,
  1188. summarytype: 0,
  1189. groupname: ''
  1190. },
  1191. {
  1192. autoid: 11275,
  1193. tablekey: 'table_pcweb_sales_pointprice',
  1194. columnfield: 'unpayAmount',
  1195. columntitle: '待收款额 ',
  1196. columnwidth: '0',
  1197. orderindex: 120,
  1198. isshow: 1,
  1199. aligntype: 1,
  1200. formattertype: '',
  1201. formatterstring: '',
  1202. remark: 'unpayAmount',
  1203. needsummary: 0,
  1204. summarytype: 0,
  1205. groupname: ''
  1206. },
  1207. {
  1208. autoid: 11276,
  1209. tablekey: 'table_pcweb_sales_pointprice',
  1210. columnfield: 'invoiceamount',
  1211. columntitle: '已开票额 ',
  1212. columnwidth: '0',
  1213. orderindex: 130,
  1214. isshow: 1,
  1215. aligntype: 1,
  1216. formattertype: '',
  1217. formatterstring: '',
  1218. remark: 'invoiceamount',
  1219. needsummary: 0,
  1220. summarytype: 0,
  1221. groupname: ''
  1222. },
  1223. {
  1224. autoid: 11277,
  1225. tablekey: 'table_pcweb_sales_pointprice',
  1226. columnfield: 'deliverystartdate,deliveryenddate',
  1227. columntitle: '点价期',
  1228. columnwidth: '0',
  1229. orderindex: 140,
  1230. isshow: 1,
  1231. aligntype: 1,
  1232. formattertype: '',
  1233. formatterstring: '',
  1234. remark: 'deliverystartdate,deliveryenddate',
  1235. needsummary: 0,
  1236. summarytype: 0,
  1237. groupname: ''
  1238. },
  1239. {
  1240. autoid: 11278,
  1241. tablekey: 'table_pcweb_sales_pointprice',
  1242. columnfield: 'startdate,enddate',
  1243. columntitle: '交收期 ',
  1244. columnwidth: '0',
  1245. orderindex: 150,
  1246. isshow: 1,
  1247. aligntype: 1,
  1248. formattertype: '',
  1249. formatterstring: '',
  1250. remark: 'startdate,enddate',
  1251. needsummary: 0,
  1252. summarytype: 0,
  1253. groupname: ''
  1254. },
  1255. {
  1256. autoid: 11279,
  1257. tablekey: 'table_pcweb_sales_pointprice',
  1258. columnfield: 'convertfactor',
  1259. columntitle: '标仓系数',
  1260. columnwidth: '0',
  1261. orderindex: 160,
  1262. isshow: 1,
  1263. aligntype: 1,
  1264. formattertype: '',
  1265. formatterstring: '',
  1266. remark: 'convertfactor',
  1267. needsummary: 0,
  1268. summarytype: 0,
  1269. groupname: ''
  1270. }
  1271. ]
  1272. },
  1273. {
  1274. tablekey: 'table_pcweb_sales_settle',
  1275. tabletype: 2,
  1276. tablename: '销售_履约交收',
  1277. tabelmenu: '',
  1278. remark: 'web端-销售-履约交收',
  1279. columns: [
  1280. {
  1281. autoid: 11280,
  1282. tablekey: 'table_pcweb_sales_settle',
  1283. columnfield: 'accountname',
  1284. columntitle: '采购方',
  1285. columnwidth: '0',
  1286. orderindex: 10,
  1287. isshow: 1,
  1288. aligntype: 1,
  1289. formattertype: '',
  1290. formatterstring: '',
  1291. remark: 'accountname',
  1292. needsummary: 0,
  1293. summarytype: 0,
  1294. groupname: ''
  1295. },
  1296. {
  1297. autoid: 11281,
  1298. tablekey: 'table_pcweb_sales_settle',
  1299. columnfield: 'contractno',
  1300. columntitle: '合同编号 ',
  1301. columnwidth: '0',
  1302. orderindex: 20,
  1303. isshow: 1,
  1304. aligntype: 1,
  1305. formattertype: '',
  1306. formatterstring: '',
  1307. remark: 'contractno',
  1308. needsummary: 0,
  1309. summarytype: 0,
  1310. groupname: ''
  1311. },
  1312. {
  1313. autoid: 11282,
  1314. tablekey: 'table_pcweb_sales_settle',
  1315. columnfield: 'deliverygoodsname',
  1316. columntitle: '现货品种 ',
  1317. columnwidth: '0',
  1318. orderindex: 30,
  1319. isshow: 1,
  1320. aligntype: 1,
  1321. formattertype: '',
  1322. formatterstring: '',
  1323. remark: 'deliverygoodsname',
  1324. needsummary: 0,
  1325. summarytype: 0,
  1326. groupname: ''
  1327. },
  1328. {
  1329. autoid: 11283,
  1330. tablekey: 'table_pcweb_sales_settle',
  1331. columnfield: 'spotgoodsdesc',
  1332. columntitle: '商品规格 ',
  1333. columnwidth: '0',
  1334. orderindex: 40,
  1335. isshow: 1,
  1336. aligntype: 1,
  1337. formattertype: '',
  1338. formatterstring: '',
  1339. remark: 'spotgoodsdesc',
  1340. needsummary: 0,
  1341. summarytype: 0,
  1342. groupname: ''
  1343. },
  1344. {
  1345. autoid: 11284,
  1346. tablekey: 'table_pcweb_sales_settle',
  1347. columnfield: 'goodscode',
  1348. columntitle: '点价合约',
  1349. columnwidth: '0',
  1350. orderindex: 50,
  1351. isshow: 1,
  1352. aligntype: 1,
  1353. formattertype: '',
  1354. formatterstring: '',
  1355. remark: 'goodscode',
  1356. needsummary: 0,
  1357. summarytype: 0,
  1358. groupname: ''
  1359. },
  1360. {
  1361. autoid: 11285,
  1362. tablekey: 'table_pcweb_sales_settle',
  1363. columnfield: 'pricemove',
  1364. columntitle: '升贴水 ',
  1365. columnwidth: '0',
  1366. orderindex: 60,
  1367. isshow: 1,
  1368. aligntype: 1,
  1369. formattertype: '',
  1370. formatterstring: '',
  1371. remark: 'pricemove',
  1372. needsummary: 0,
  1373. summarytype: 0,
  1374. groupname: ''
  1375. },
  1376. {
  1377. autoid: 11286,
  1378. tablekey: 'table_pcweb_sales_settle',
  1379. columnfield: 'pricedqty',
  1380. columntitle: '已定价量 ',
  1381. columnwidth: '0',
  1382. orderindex: 70,
  1383. isshow: 1,
  1384. aligntype: 1,
  1385. formattertype: '',
  1386. formatterstring: '',
  1387. remark: 'pricedqty',
  1388. needsummary: 0,
  1389. summarytype: 0,
  1390. groupname: ''
  1391. },
  1392. {
  1393. autoid: 11287,
  1394. tablekey: 'table_pcweb_sales_settle',
  1395. columnfield: 'unsureqty',
  1396. columntitle: '未交收量 ',
  1397. columnwidth: '0',
  1398. orderindex: 80,
  1399. isshow: 1,
  1400. aligntype: 1,
  1401. formattertype: '',
  1402. formatterstring: '',
  1403. remark: 'unsureqty',
  1404. needsummary: 0,
  1405. summarytype: 0,
  1406. groupname: ''
  1407. },
  1408. {
  1409. autoid: 11288,
  1410. tablekey: 'table_pcweb_sales_settle',
  1411. columnfield: 'payamount',
  1412. columntitle: '已收款额 ',
  1413. columnwidth: '0',
  1414. orderindex: 90,
  1415. isshow: 1,
  1416. aligntype: 1,
  1417. formattertype: '',
  1418. formatterstring: '',
  1419. remark: 'payamount',
  1420. needsummary: 0,
  1421. summarytype: 0,
  1422. groupname: ''
  1423. },
  1424. {
  1425. autoid: 11289,
  1426. tablekey: 'table_pcweb_sales_settle',
  1427. columnfield: 'unpayAmount',
  1428. columntitle: '待收款额 ',
  1429. columnwidth: '0',
  1430. orderindex: 100,
  1431. isshow: 1,
  1432. aligntype: 1,
  1433. formattertype: '',
  1434. formatterstring: '',
  1435. remark: 'unpayAmount',
  1436. needsummary: 0,
  1437. summarytype: 0,
  1438. groupname: ''
  1439. },
  1440. {
  1441. autoid: 11290,
  1442. tablekey: 'table_pcweb_sales_settle',
  1443. columnfield: 'invoiceamount',
  1444. columntitle: '已开票额',
  1445. columnwidth: '0',
  1446. orderindex: 110,
  1447. isshow: 1,
  1448. aligntype: 1,
  1449. formattertype: '',
  1450. formatterstring: '',
  1451. remark: 'invoiceamount',
  1452. needsummary: 0,
  1453. summarytype: 0,
  1454. groupname: ''
  1455. },
  1456. {
  1457. autoid: 11291,
  1458. tablekey: 'table_pcweb_sales_settle',
  1459. columnfield: 'daikaiAmount',
  1460. columntitle: '待开票额 ',
  1461. columnwidth: '0',
  1462. orderindex: 120,
  1463. isshow: 1,
  1464. aligntype: 1,
  1465. formattertype: '',
  1466. formatterstring: '',
  1467. remark: 'daikaiAmount',
  1468. needsummary: 0,
  1469. summarytype: 0,
  1470. groupname: ''
  1471. },
  1472. {
  1473. autoid: 11292,
  1474. tablekey: 'table_pcweb_sales_settle',
  1475. columnfield: 'deliverystartdate,deliveryenddate',
  1476. columntitle: '点价期 ',
  1477. columnwidth: '0',
  1478. orderindex: 130,
  1479. isshow: 1,
  1480. aligntype: 1,
  1481. formattertype: '',
  1482. formatterstring: '',
  1483. remark: 'deliverystartdate,deliveryenddate',
  1484. needsummary: 0,
  1485. summarytype: 0,
  1486. groupname: ''
  1487. },
  1488. {
  1489. autoid: 11293,
  1490. tablekey: 'table_pcweb_sales_settle',
  1491. columnfield: 'startdate,enddate',
  1492. columntitle: '交收期 ',
  1493. columnwidth: '0',
  1494. orderindex: 140,
  1495. isshow: 1,
  1496. aligntype: 1,
  1497. formattertype: '',
  1498. formatterstring: '',
  1499. remark: 'startdate,enddate',
  1500. needsummary: 0,
  1501. summarytype: 0,
  1502. groupname: ''
  1503. },
  1504. {
  1505. autoid: 11294,
  1506. tablekey: 'table_pcweb_sales_settle',
  1507. columnfield: 'convertfactor',
  1508. columntitle: '标仓系数',
  1509. columnwidth: '0',
  1510. orderindex: 150,
  1511. isshow: 1,
  1512. aligntype: 1,
  1513. formattertype: '',
  1514. formatterstring: '',
  1515. remark: 'convertfactor',
  1516. needsummary: 0,
  1517. summarytype: 0,
  1518. groupname: ''
  1519. },
  1520. {
  1521. autoid: 11295,
  1522. tablekey: 'table_pcweb_sales_settle',
  1523. columnfield: 'qty',
  1524. columntitle: '合同量',
  1525. columnwidth: '0',
  1526. orderindex: 160,
  1527. isshow: 1,
  1528. aligntype: 1,
  1529. formattertype: '',
  1530. formatterstring: '',
  1531. remark: 'qty',
  1532. needsummary: 0,
  1533. summarytype: 0,
  1534. groupname: ''
  1535. },
  1536. {
  1537. autoid: 11296,
  1538. tablekey: 'table_pcweb_sales_settle',
  1539. columnfield: 'unpricedqty',
  1540. columntitle: '未定价量 ',
  1541. columnwidth: '0',
  1542. orderindex: 170,
  1543. isshow: 1,
  1544. aligntype: 1,
  1545. formattertype: '',
  1546. formatterstring: '',
  1547. remark: 'unpricedqty',
  1548. needsummary: 0,
  1549. summarytype: 0,
  1550. groupname: ''
  1551. }
  1552. ]
  1553. },
  1554. {
  1555. tablekey: 'table_pcweb_sales_all',
  1556. tabletype: 2,
  1557. tablename: '销售_全部',
  1558. tabelmenu: '',
  1559. remark: 'web端-销售-全部',
  1560. columns: [
  1561. {
  1562. autoid: 11299,
  1563. tablekey: 'table_pcweb_sales_all',
  1564. columnfield: 'contracctstatus',
  1565. columntitle: '状态',
  1566. columnwidth: '0',
  1567. orderindex: 30,
  1568. isshow: 1,
  1569. aligntype: 1,
  1570. formattertype: '',
  1571. formatterstring: '',
  1572. remark: 'contracctstatus',
  1573. needsummary: 0,
  1574. summarytype: 0,
  1575. groupname: ''
  1576. },
  1577. {
  1578. autoid: 11300,
  1579. tablekey: 'table_pcweb_sales_all',
  1580. columnfield: 'deliverygoodsname',
  1581. columntitle: '现货品种 ',
  1582. columnwidth: '0',
  1583. orderindex: 40,
  1584. isshow: 1,
  1585. aligntype: 1,
  1586. formattertype: '',
  1587. formatterstring: '',
  1588. remark: 'deliverygoodsname',
  1589. needsummary: 0,
  1590. summarytype: 0,
  1591. groupname: ''
  1592. },
  1593. {
  1594. autoid: 11301,
  1595. tablekey: 'table_pcweb_sales_all',
  1596. columnfield: 'spotgoodsdesc',
  1597. columntitle: '商品规格 ',
  1598. columnwidth: '0',
  1599. orderindex: 50,
  1600. isshow: 1,
  1601. aligntype: 1,
  1602. formattertype: '',
  1603. formatterstring: '',
  1604. remark: 'spotgoodsdesc',
  1605. needsummary: 0,
  1606. summarytype: 0,
  1607. groupname: ''
  1608. },
  1609. {
  1610. autoid: 11302,
  1611. tablekey: 'table_pcweb_sales_all',
  1612. columnfield: 'goodscode',
  1613. columntitle: '点价合约 ',
  1614. columnwidth: '0',
  1615. orderindex: 60,
  1616. isshow: 1,
  1617. aligntype: 1,
  1618. formattertype: '',
  1619. formatterstring: '',
  1620. remark: 'goodscode',
  1621. needsummary: 0,
  1622. summarytype: 0,
  1623. groupname: ''
  1624. },
  1625. {
  1626. autoid: 11303,
  1627. tablekey: 'table_pcweb_sales_all',
  1628. columnfield: 'pricemove',
  1629. columntitle: '升贴水 ',
  1630. columnwidth: '0',
  1631. orderindex: 70,
  1632. isshow: 1,
  1633. aligntype: 1,
  1634. formattertype: '',
  1635. formatterstring: '',
  1636. remark: 'pricemove',
  1637. needsummary: 0,
  1638. summarytype: 0,
  1639. groupname: ''
  1640. },
  1641. {
  1642. autoid: 11304,
  1643. tablekey: 'table_pcweb_sales_all',
  1644. columnfield: 'convertfactor',
  1645. columntitle: '标仓系数 ',
  1646. columnwidth: '0',
  1647. orderindex: 80,
  1648. isshow: 1,
  1649. aligntype: 1,
  1650. formattertype: '',
  1651. formatterstring: '',
  1652. remark: 'convertfactor',
  1653. needsummary: 0,
  1654. summarytype: 0,
  1655. groupname: ''
  1656. },
  1657. {
  1658. autoid: 11305,
  1659. tablekey: 'table_pcweb_sales_all',
  1660. columnfield: 'contracctstatus',
  1661. columntitle: '状态 ',
  1662. columnwidth: '0',
  1663. orderindex: 90,
  1664. isshow: 1,
  1665. aligntype: 1,
  1666. formattertype: '',
  1667. formatterstring: '',
  1668. remark: 'contracctstatus',
  1669. needsummary: 0,
  1670. summarytype: 0,
  1671. groupname: ''
  1672. },
  1673. {
  1674. autoid: 11306,
  1675. tablekey: 'table_pcweb_sales_all',
  1676. columnfield: 'qty',
  1677. columntitle: '合同量',
  1678. columnwidth: '0',
  1679. orderindex: 100,
  1680. isshow: 1,
  1681. aligntype: 1,
  1682. formattertype: '',
  1683. formatterstring: '',
  1684. remark: 'qty',
  1685. needsummary: 0,
  1686. summarytype: 0,
  1687. groupname: ''
  1688. },
  1689. {
  1690. autoid: 11307,
  1691. tablekey: 'table_pcweb_sales_all',
  1692. columnfield: 'unpricedqty',
  1693. columntitle: '未定价量 ',
  1694. columnwidth: '0',
  1695. orderindex: 110,
  1696. isshow: 1,
  1697. aligntype: 1,
  1698. formattertype: '',
  1699. formatterstring: '',
  1700. remark: 'unpricedqty',
  1701. needsummary: 0,
  1702. summarytype: 0,
  1703. groupname: ''
  1704. },
  1705. {
  1706. autoid: 11308,
  1707. tablekey: 'table_pcweb_sales_all',
  1708. columnfield: 'pricedqty',
  1709. columntitle: '已定价量 ',
  1710. columnwidth: '0',
  1711. orderindex: 120,
  1712. isshow: 1,
  1713. aligntype: 1,
  1714. formattertype: '',
  1715. formatterstring: '',
  1716. remark: 'pricedqty',
  1717. needsummary: 0,
  1718. summarytype: 0,
  1719. groupname: ''
  1720. },
  1721. {
  1722. autoid: 11309,
  1723. tablekey: 'table_pcweb_sales_all',
  1724. columnfield: 'unsureqty',
  1725. columntitle: '未交收量 ',
  1726. columnwidth: '0',
  1727. orderindex: 130,
  1728. isshow: 1,
  1729. aligntype: 1,
  1730. formattertype: '',
  1731. formatterstring: '',
  1732. remark: 'unsureqty',
  1733. needsummary: 0,
  1734. summarytype: 0,
  1735. groupname: ''
  1736. },
  1737. {
  1738. autoid: 11310,
  1739. tablekey: 'table_pcweb_sales_all',
  1740. columnfield: 'payamount',
  1741. columntitle: '已收款额 ',
  1742. columnwidth: '0',
  1743. orderindex: 140,
  1744. isshow: 1,
  1745. aligntype: 1,
  1746. formattertype: '',
  1747. formatterstring: '',
  1748. remark: 'payamount',
  1749. needsummary: 0,
  1750. summarytype: 0,
  1751. groupname: ''
  1752. },
  1753. {
  1754. autoid: 11311,
  1755. tablekey: 'table_pcweb_sales_all',
  1756. columnfield: 'unpayAmount',
  1757. columntitle: '待收款额 ',
  1758. columnwidth: '0',
  1759. orderindex: 150,
  1760. isshow: 1,
  1761. aligntype: 1,
  1762. formattertype: '',
  1763. formatterstring: '',
  1764. remark: 'unpayAmount',
  1765. needsummary: 0,
  1766. summarytype: 0,
  1767. groupname: ''
  1768. },
  1769. {
  1770. autoid: 11312,
  1771. tablekey: 'table_pcweb_sales_all',
  1772. columnfield: 'invoiceamount',
  1773. columntitle: '已开票额 ',
  1774. columnwidth: '0',
  1775. orderindex: 160,
  1776. isshow: 1,
  1777. aligntype: 1,
  1778. formattertype: '',
  1779. formatterstring: '',
  1780. remark: 'invoiceamount',
  1781. needsummary: 0,
  1782. summarytype: 0,
  1783. groupname: ''
  1784. },
  1785. {
  1786. autoid: 11313,
  1787. tablekey: 'table_pcweb_sales_all',
  1788. columnfield: 'daikaiAmount',
  1789. columntitle: '待开票额 ',
  1790. columnwidth: '0',
  1791. orderindex: 170,
  1792. isshow: 1,
  1793. aligntype: 1,
  1794. formattertype: '',
  1795. formatterstring: '',
  1796. remark: 'daikaiAmount',
  1797. needsummary: 0,
  1798. summarytype: 0,
  1799. groupname: ''
  1800. },
  1801. {
  1802. autoid: 11314,
  1803. tablekey: 'table_pcweb_sales_all',
  1804. columnfield: 'deliverystartdate,deliveryenddate',
  1805. columntitle: '点价期 ',
  1806. columnwidth: '0',
  1807. orderindex: 180,
  1808. isshow: 1,
  1809. aligntype: 1,
  1810. formattertype: '',
  1811. formatterstring: '',
  1812. remark: 'deliverystartdate,deliveryenddate',
  1813. needsummary: 0,
  1814. summarytype: 0,
  1815. groupname: ''
  1816. },
  1817. {
  1818. autoid: 11315,
  1819. tablekey: 'table_pcweb_sales_all',
  1820. columnfield: 'startdate,enddate',
  1821. columntitle: '交收期 ',
  1822. columnwidth: '0',
  1823. orderindex: 190,
  1824. isshow: 1,
  1825. aligntype: 1,
  1826. formattertype: '',
  1827. formatterstring: '',
  1828. remark: 'startdate,enddate',
  1829. needsummary: 0,
  1830. summarytype: 0,
  1831. groupname: ''
  1832. },
  1833. {
  1834. autoid: 11297,
  1835. tablekey: 'table_pcweb_sales_all',
  1836. columnfield: 'accountname',
  1837. columntitle: '采购方',
  1838. columnwidth: '0',
  1839. orderindex: 10,
  1840. isshow: 1,
  1841. aligntype: 1,
  1842. formattertype: '',
  1843. formatterstring: '',
  1844. remark: 'accountname',
  1845. needsummary: 0,
  1846. summarytype: 0,
  1847. groupname: ''
  1848. },
  1849. {
  1850. autoid: 11298,
  1851. tablekey: 'table_pcweb_sales_all',
  1852. columnfield: 'contractno',
  1853. columntitle: '合同编号 ',
  1854. columnwidth: '0',
  1855. orderindex: 20,
  1856. isshow: 1,
  1857. aligntype: 1,
  1858. formattertype: '',
  1859. formatterstring: '',
  1860. remark: 'contractno',
  1861. needsummary: 0,
  1862. summarytype: 0,
  1863. groupname: ''
  1864. }
  1865. ]
  1866. },
  1867. {
  1868. tablekey: 'table_pcweb_exposure',
  1869. tabletype: 2,
  1870. tablename: '实时敞口',
  1871. tabelmenu: '',
  1872. remark: 'web端-实时敞口',
  1873. columns: [
  1874. {
  1875. autoid: 11316,
  1876. tablekey: 'table_pcweb_exposure',
  1877. columnfield: 'MiddleGoodsName',
  1878. columntitle: '套保品种',
  1879. columnwidth: '0',
  1880. orderindex: 10,
  1881. isshow: 1,
  1882. aligntype: 1,
  1883. formattertype: '',
  1884. formatterstring: '',
  1885. remark: 'MiddleGoodsName',
  1886. needsummary: 0,
  1887. summarytype: 0,
  1888. groupname: ''
  1889. },
  1890. {
  1891. autoid: 11317,
  1892. tablekey: 'table_pcweb_exposure',
  1893. columnfield: 'MiddleGoodsCode',
  1894. columntitle: '代码',
  1895. columnwidth: '0',
  1896. orderindex: 20,
  1897. isshow: 1,
  1898. aligntype: 1,
  1899. formattertype: '',
  1900. formatterstring: '',
  1901. remark: 'MiddleGoodsCode',
  1902. needsummary: 0,
  1903. summarytype: 0,
  1904. groupname: ''
  1905. },
  1906. {
  1907. autoid: 11318,
  1908. tablekey: 'table_pcweb_exposure',
  1909. columnfield: 'TotalSpotQty',
  1910. columntitle: '现货数量',
  1911. columnwidth: '0',
  1912. orderindex: 30,
  1913. isshow: 1,
  1914. aligntype: 1,
  1915. formattertype: '',
  1916. formatterstring: '',
  1917. remark: 'TotalSpotQty',
  1918. needsummary: 0,
  1919. summarytype: 0,
  1920. groupname: ''
  1921. },
  1922. {
  1923. autoid: 11319,
  1924. tablekey: 'table_pcweb_exposure',
  1925. columnfield: 'MiddleGoodsHedgeRatio',
  1926. columntitle: '应套保比例',
  1927. columnwidth: '0',
  1928. orderindex: 40,
  1929. isshow: 1,
  1930. aligntype: 1,
  1931. formattertype: '',
  1932. formatterstring: '',
  1933. remark: 'MiddleGoodsHedgeRatio',
  1934. needsummary: 0,
  1935. summarytype: 0,
  1936. groupname: ''
  1937. },
  1938. {
  1939. autoid: 11320,
  1940. tablekey: 'table_pcweb_exposure',
  1941. columnfield: 'TotalNeedHedgeQty',
  1942. columntitle: '期货应套保量',
  1943. columnwidth: '0',
  1944. orderindex: 50,
  1945. isshow: 1,
  1946. aligntype: 1,
  1947. formattertype: '',
  1948. formatterstring: '',
  1949. remark: 'TotalNeedHedgeQty',
  1950. needsummary: 0,
  1951. summarytype: 0,
  1952. groupname: ''
  1953. },
  1954. {
  1955. autoid: 11321,
  1956. tablekey: 'table_pcweb_exposure',
  1957. columnfield: 'TotalFutureQty',
  1958. columntitle: '期货数量',
  1959. columnwidth: '0',
  1960. orderindex: 60,
  1961. isshow: 1,
  1962. aligntype: 1,
  1963. formattertype: '',
  1964. formatterstring: '',
  1965. remark: 'TotalFutureQty',
  1966. needsummary: 0,
  1967. summarytype: 0,
  1968. groupname: ''
  1969. },
  1970. {
  1971. autoid: 11322,
  1972. tablekey: 'table_pcweb_exposure',
  1973. columnfield: 'NeedHedgeExposoure',
  1974. columntitle: '应套保敞口',
  1975. columnwidth: '0',
  1976. orderindex: 70,
  1977. isshow: 1,
  1978. aligntype: 1,
  1979. formattertype: '',
  1980. formatterstring: '',
  1981. remark: 'NeedHedgeExposoure',
  1982. needsummary: 0,
  1983. summarytype: 0,
  1984. groupname: ''
  1985. },
  1986. {
  1987. autoid: 11323,
  1988. tablekey: 'table_pcweb_exposure',
  1989. columnfield: 'NeedHedgeRatio',
  1990. columntitle: '应套保比例',
  1991. columnwidth: '0',
  1992. orderindex: 80,
  1993. isshow: 1,
  1994. aligntype: 1,
  1995. formattertype: '',
  1996. formatterstring: '',
  1997. remark: 'NeedHedgeRatio',
  1998. needsummary: 0,
  1999. summarytype: 0,
  2000. groupname: ''
  2001. },
  2002. {
  2003. autoid: 11324,
  2004. tablekey: 'table_pcweb_exposure',
  2005. columnfield: 'TotalExposure',
  2006. columntitle: '总敞口',
  2007. columnwidth: '0',
  2008. orderindex: 90,
  2009. isshow: 1,
  2010. aligntype: 1,
  2011. formattertype: '',
  2012. formatterstring: '',
  2013. remark: 'TotalExposure',
  2014. needsummary: 0,
  2015. summarytype: 0,
  2016. groupname: ''
  2017. },
  2018. {
  2019. autoid: 11325,
  2020. tablekey: 'table_pcweb_exposure',
  2021. columnfield: 'TotalHedgeRatio',
  2022. columntitle: '敞口比例',
  2023. columnwidth: '0',
  2024. orderindex: 100,
  2025. isshow: 1,
  2026. aligntype: 1,
  2027. formattertype: '',
  2028. formatterstring: '',
  2029. remark: 'TotalHedgeRatio',
  2030. needsummary: 0,
  2031. summarytype: 0,
  2032. groupname: ''
  2033. },
  2034. {
  2035. autoid: 11326,
  2036. tablekey: 'table_pcweb_exposure',
  2037. columnfield: 'OriTotalSpotQty',
  2038. columntitle: '现货期初量',
  2039. columnwidth: '0',
  2040. orderindex: 110,
  2041. isshow: 1,
  2042. aligntype: 1,
  2043. formattertype: '',
  2044. formatterstring: '',
  2045. remark: 'OriTotalSpotQty',
  2046. needsummary: 0,
  2047. summarytype: 0,
  2048. groupname: ''
  2049. },
  2050. {
  2051. autoid: 11327,
  2052. tablekey: 'table_pcweb_exposure',
  2053. columnfield: 'DiffSpotQty',
  2054. columntitle: '现货今日变动量',
  2055. columnwidth: '0',
  2056. orderindex: 120,
  2057. isshow: 1,
  2058. aligntype: 1,
  2059. formattertype: '',
  2060. formatterstring: '',
  2061. remark: 'DiffSpotQty',
  2062. needsummary: 0,
  2063. summarytype: 0,
  2064. groupname: ''
  2065. },
  2066. {
  2067. autoid: 11328,
  2068. tablekey: 'table_pcweb_exposure',
  2069. columnfield: 'OriTotalFutuQty',
  2070. columntitle: '期货期初量',
  2071. columnwidth: '0',
  2072. orderindex: 130,
  2073. isshow: 1,
  2074. aligntype: 1,
  2075. formattertype: '',
  2076. formatterstring: '',
  2077. remark: 'OriTotalFutuQty',
  2078. needsummary: 0,
  2079. summarytype: 0,
  2080. groupname: ''
  2081. },
  2082. {
  2083. autoid: 11329,
  2084. tablekey: 'table_pcweb_exposure',
  2085. columnfield: 'DiffFutuQty',
  2086. columntitle: '今日变动量',
  2087. columnwidth: '0',
  2088. orderindex: 140,
  2089. isshow: 1,
  2090. aligntype: 1,
  2091. formattertype: '',
  2092. formatterstring: '',
  2093. remark: 'DiffFutuQty',
  2094. needsummary: 0,
  2095. summarytype: 0,
  2096. groupname: ''
  2097. }
  2098. ]
  2099. },
  2100. {
  2101. tablekey: 'table_pcweb_exposure_detail',
  2102. tabletype: 2,
  2103. tablename: '实时敞口--现货明细',
  2104. tabelmenu: '',
  2105. remark: 'web端--实时敞口--现货明细',
  2106. columns: [
  2107. {
  2108. autoid: 11330,
  2109. tablekey: 'table_pcweb_exposure_detail',
  2110. columnfield: 'createtime',
  2111. columntitle: '时间',
  2112. columnwidth: '0',
  2113. orderindex: 10,
  2114. isshow: 1,
  2115. aligntype: 1,
  2116. formattertype: '',
  2117. formatterstring: '',
  2118. remark: 'createtime',
  2119. needsummary: 0,
  2120. summarytype: 0,
  2121. groupname: ''
  2122. },
  2123. {
  2124. autoid: 11331,
  2125. tablekey: 'table_pcweb_exposure_detail',
  2126. columnfield: 'logtype',
  2127. columntitle: '类型',
  2128. columnwidth: '0',
  2129. orderindex: 20,
  2130. isshow: 1,
  2131. aligntype: 1,
  2132. formattertype: '',
  2133. formatterstring: '',
  2134. remark: 'logtype',
  2135. needsummary: 0,
  2136. summarytype: 0,
  2137. groupname: ''
  2138. },
  2139. {
  2140. autoid: 11332,
  2141. tablekey: 'table_pcweb_exposure_detail',
  2142. columnfield: 'deliverygoodsname',
  2143. columntitle: '现货品种',
  2144. columnwidth: '0',
  2145. orderindex: 30,
  2146. isshow: 1,
  2147. aligntype: 1,
  2148. formattertype: '',
  2149. formatterstring: '',
  2150. remark: 'deliverygoodsname',
  2151. needsummary: 0,
  2152. summarytype: 0,
  2153. groupname: ''
  2154. },
  2155. {
  2156. autoid: 11333,
  2157. tablekey: 'table_pcweb_exposure_detail',
  2158. columnfield: 'qty',
  2159. columntitle: '数量',
  2160. columnwidth: '0',
  2161. orderindex: 4,
  2162. isshow: 1,
  2163. aligntype: 1,
  2164. formattertype: '',
  2165. formatterstring: '',
  2166. remark: 'qty',
  2167. needsummary: 0,
  2168. summarytype: 0,
  2169. groupname: ''
  2170. },
  2171. {
  2172. autoid: 11334,
  2173. tablekey: 'table_pcweb_exposure_detail',
  2174. columnfield: 'middlegoodscode',
  2175. columntitle: '套保品种',
  2176. columnwidth: '0',
  2177. orderindex: 50,
  2178. isshow: 1,
  2179. aligntype: 1,
  2180. formattertype: '',
  2181. formatterstring: '',
  2182. remark: 'middlegoodscode',
  2183. needsummary: 0,
  2184. summarytype: 0,
  2185. groupname: ''
  2186. },
  2187. {
  2188. autoid: 11335,
  2189. tablekey: 'table_pcweb_exposure_detail',
  2190. columnfield: 'changeQty',
  2191. columntitle: '变动量',
  2192. columnwidth: '0',
  2193. orderindex: 60,
  2194. isshow: 1,
  2195. aligntype: 1,
  2196. formattertype: '',
  2197. formatterstring: '',
  2198. remark: 'changeQty',
  2199. needsummary: 0,
  2200. summarytype: 0,
  2201. groupname: ''
  2202. },
  2203. {
  2204. autoid: 11336,
  2205. tablekey: 'table_pcweb_exposure_detail',
  2206. columnfield: 'relateNo',
  2207. columntitle: '合同(计划)编号 ',
  2208. columnwidth: '0',
  2209. orderindex: 70,
  2210. isshow: 1,
  2211. aligntype: 1,
  2212. formattertype: '',
  2213. formatterstring: '',
  2214. remark: 'relateNo',
  2215. needsummary: 0,
  2216. summarytype: 0,
  2217. groupname: ''
  2218. },
  2219. {
  2220. autoid: 11337,
  2221. tablekey: 'table_pcweb_exposure_detail',
  2222. columnfield: 'convertfactor',
  2223. columntitle: '标仓系数',
  2224. columnwidth: '0',
  2225. orderindex: 80,
  2226. isshow: 1,
  2227. aligntype: 1,
  2228. formattertype: '',
  2229. formatterstring: '',
  2230. remark: 'convertfactor',
  2231. needsummary: 0,
  2232. summarytype: 0,
  2233. groupname: ''
  2234. },
  2235. {
  2236. autoid: 11338,
  2237. tablekey: 'table_pcweb_exposure_detail',
  2238. columnfield: 'convertratio',
  2239. columntitle: '套保系数 ',
  2240. columnwidth: '0',
  2241. orderindex: 90,
  2242. isshow: 1,
  2243. aligntype: 1,
  2244. formattertype: '',
  2245. formatterstring: '',
  2246. remark: 'convertratio',
  2247. needsummary: 0,
  2248. summarytype: 0,
  2249. groupname: ''
  2250. }
  2251. ]
  2252. },
  2253. {
  2254. tablekey: 'table_pcweb_exposure_futures_detail',
  2255. tabletype: 2,
  2256. tablename: '实时敞口--期货明细',
  2257. tabelmenu: '',
  2258. remark: 'web端--实时敞口--期货明细',
  2259. columns: [
  2260. {
  2261. autoid: 11339,
  2262. tablekey: 'table_pcweb_exposure_futures_detail',
  2263. columnfield: 'goodsname',
  2264. columntitle: '期货合约 ',
  2265. columnwidth: '0',
  2266. orderindex: 10,
  2267. isshow: 1,
  2268. aligntype: 1,
  2269. formattertype: '',
  2270. formatterstring: '',
  2271. remark: 'goodsname',
  2272. needsummary: 0,
  2273. summarytype: 0,
  2274. groupname: ''
  2275. },
  2276. {
  2277. autoid: 11340,
  2278. tablekey: 'table_pcweb_exposure_futures_detail',
  2279. columnfield: 'goodscode',
  2280. columntitle: '代码 ',
  2281. columnwidth: '0',
  2282. orderindex: 20,
  2283. isshow: 1,
  2284. aligntype: 1,
  2285. formattertype: '',
  2286. formatterstring: '',
  2287. remark: 'goodscode',
  2288. needsummary: 0,
  2289. summarytype: 0,
  2290. groupname: ''
  2291. },
  2292. {
  2293. autoid: 11341,
  2294. tablekey: 'table_pcweb_exposure_futures_detail',
  2295. columnfield: 'ydqty',
  2296. columntitle: '昨日持仓',
  2297. columnwidth: '0',
  2298. orderindex: 30,
  2299. isshow: 1,
  2300. aligntype: 1,
  2301. formattertype: '',
  2302. formatterstring: '',
  2303. remark: 'ydqty',
  2304. needsummary: 0,
  2305. summarytype: 0,
  2306. groupname: ''
  2307. },
  2308. {
  2309. autoid: 11342,
  2310. tablekey: 'table_pcweb_exposure_futures_detail',
  2311. columnfield: 'curqty',
  2312. columntitle: '当前持仓',
  2313. columnwidth: '0',
  2314. orderindex: 40,
  2315. isshow: 1,
  2316. aligntype: 1,
  2317. formattertype: '',
  2318. formatterstring: '',
  2319. remark: 'curqty',
  2320. needsummary: 0,
  2321. summarytype: 0,
  2322. groupname: ''
  2323. },
  2324. {
  2325. autoid: 11343,
  2326. tablekey: 'table_pcweb_exposure_futures_detail',
  2327. columnfield: 'diffqty',
  2328. columntitle: '持仓变动量',
  2329. columnwidth: '0',
  2330. orderindex: 50,
  2331. isshow: 1,
  2332. aligntype: 1,
  2333. formattertype: '',
  2334. formatterstring: '',
  2335. remark: 'diffqty',
  2336. needsummary: 0,
  2337. summarytype: 0,
  2338. groupname: ''
  2339. },
  2340. {
  2341. autoid: 11344,
  2342. tablekey: 'table_pcweb_exposure_futures_detail',
  2343. columnfield: 'diffhedgeqty',
  2344. columntitle: '套保品种',
  2345. columnwidth: '0',
  2346. orderindex: 60,
  2347. isshow: 1,
  2348. aligntype: 1,
  2349. formattertype: '',
  2350. formatterstring: '',
  2351. remark: 'diffhedgeqty',
  2352. needsummary: 0,
  2353. summarytype: 0,
  2354. groupname: ''
  2355. },
  2356. {
  2357. autoid: 11345,
  2358. tablekey: 'table_pcweb_exposure_futures_detail',
  2359. columnfield: 'diffhedgeqty',
  2360. columntitle: '变动量',
  2361. columnwidth: '0',
  2362. orderindex: 70,
  2363. isshow: 1,
  2364. aligntype: 1,
  2365. formattertype: '',
  2366. formatterstring: '',
  2367. remark: 'diffhedgeqty',
  2368. needsummary: 0,
  2369. summarytype: 0,
  2370. groupname: ''
  2371. },
  2372. {
  2373. autoid: 11346,
  2374. tablekey: 'table_pcweb_exposure_futures_detail',
  2375. columnfield: 'agreeunit',
  2376. columntitle: '合约单位',
  2377. columnwidth: '0',
  2378. orderindex: 80,
  2379. isshow: 1,
  2380. aligntype: 1,
  2381. formattertype: '',
  2382. formatterstring: '',
  2383. remark: 'agreeunit',
  2384. needsummary: 0,
  2385. summarytype: 0,
  2386. groupname: ''
  2387. },
  2388. {
  2389. autoid: 11347,
  2390. tablekey: 'table_pcweb_exposure_futures_detail',
  2391. columnfield: 'convertratio',
  2392. columntitle: '期货品种系数 ',
  2393. columnwidth: '0',
  2394. orderindex: 90,
  2395. isshow: 1,
  2396. aligntype: 1,
  2397. formattertype: '',
  2398. formatterstring: '',
  2399. remark: 'convertratio',
  2400. needsummary: 0,
  2401. summarytype: 0,
  2402. groupname: ''
  2403. }
  2404. ]
  2405. },
  2406. {
  2407. tablekey: 'table_pcweb_exposure_spotposition',
  2408. tabletype: 2,
  2409. tablename: '敞口--现货头寸',
  2410. tabelmenu: '',
  2411. remark: 'web端--敞口--现货头寸',
  2412. columns: [
  2413. {
  2414. autoid: 11348,
  2415. tablekey: 'table_pcweb_exposure_spotposition',
  2416. columnfield: 'wrstandardname',
  2417. columntitle: '现货品种',
  2418. columnwidth: '0',
  2419. orderindex: 10,
  2420. isshow: 1,
  2421. aligntype: 1,
  2422. formattertype: '',
  2423. formatterstring: '',
  2424. remark: 'wrstandardname',
  2425. needsummary: 0,
  2426. summarytype: 0,
  2427. groupname: ''
  2428. },
  2429. {
  2430. autoid: 11349,
  2431. tablekey: 'table_pcweb_exposure_spotposition',
  2432. columnfield: 'wrstandardcode',
  2433. columntitle: '代码',
  2434. columnwidth: '0',
  2435. orderindex: 20,
  2436. isshow: 1,
  2437. aligntype: 1,
  2438. formattertype: '',
  2439. formatterstring: '',
  2440. remark: 'wrstandardcode',
  2441. needsummary: 0,
  2442. summarytype: 0,
  2443. groupname: ''
  2444. },
  2445. {
  2446. autoid: 11350,
  2447. tablekey: 'table_pcweb_exposure_spotposition',
  2448. columnfield: 'oritoalspotqty',
  2449. columntitle: '昨日数量',
  2450. columnwidth: '0',
  2451. orderindex: 30,
  2452. isshow: 1,
  2453. aligntype: 1,
  2454. formattertype: '',
  2455. formatterstring: '',
  2456. remark: 'oritoalspotqty',
  2457. needsummary: 0,
  2458. summarytype: 0,
  2459. groupname: ''
  2460. },
  2461. {
  2462. autoid: 11351,
  2463. tablekey: 'table_pcweb_exposure_spotposition',
  2464. columnfield: 'increaseqty',
  2465. columntitle: '增加数量',
  2466. columnwidth: '0',
  2467. orderindex: 40,
  2468. isshow: 1,
  2469. aligntype: 1,
  2470. formattertype: '',
  2471. formatterstring: '',
  2472. remark: 'increaseqty',
  2473. needsummary: 0,
  2474. summarytype: 0,
  2475. groupname: ''
  2476. },
  2477. {
  2478. autoid: 11352,
  2479. tablekey: 'table_pcweb_exposure_spotposition',
  2480. columnfield: 'decreaseqty',
  2481. columntitle: '减少数量',
  2482. columnwidth: '0',
  2483. orderindex: 50,
  2484. isshow: 1,
  2485. aligntype: 1,
  2486. formattertype: '',
  2487. formatterstring: '',
  2488. remark: 'decreaseqty',
  2489. needsummary: 0,
  2490. summarytype: 0,
  2491. groupname: ''
  2492. },
  2493. {
  2494. autoid: 11353,
  2495. tablekey: 'table_pcweb_exposure_spotposition',
  2496. columnfield: 'totalspotqty',
  2497. columntitle: '当前数量',
  2498. columnwidth: '0',
  2499. orderindex: 60,
  2500. isshow: 1,
  2501. aligntype: 1,
  2502. formattertype: '',
  2503. formatterstring: '',
  2504. remark: 'totalspotqty',
  2505. needsummary: 0,
  2506. summarytype: 0,
  2507. groupname: ''
  2508. }
  2509. ]
  2510. },
  2511. {
  2512. tablekey: 'table_pcweb_exposure_spotposition_detail',
  2513. tabletype: 2,
  2514. tablename: '敞口--现货头寸--现货明细',
  2515. tabelmenu: '',
  2516. remark: 'web端-敞口--现货头寸--现货明细',
  2517. columns: []
  2518. },
  2519. {
  2520. tablekey: 'table_pcweb_exposure_futuresposition',
  2521. tabletype: 2,
  2522. tablename: '敞口--期货头寸',
  2523. tabelmenu: '',
  2524. remark: 'web端-敞口--期货头寸',
  2525. columns: [
  2526. {
  2527. autoid: 11359,
  2528. tablekey: 'table_pcweb_exposure_futuresposition',
  2529. columnfield: 'goodsname',
  2530. columntitle: '期货合约',
  2531. columnwidth: '0',
  2532. orderindex: 10,
  2533. isshow: 1,
  2534. aligntype: 1,
  2535. formattertype: '',
  2536. formatterstring: '',
  2537. remark: 'goodsname',
  2538. needsummary: 0,
  2539. summarytype: 0,
  2540. groupname: ''
  2541. },
  2542. {
  2543. autoid: 11360,
  2544. tablekey: 'table_pcweb_exposure_futuresposition',
  2545. columnfield: 'goodscode',
  2546. columntitle: '代码 ',
  2547. columnwidth: '0',
  2548. orderindex: 20,
  2549. isshow: 1,
  2550. aligntype: 1,
  2551. formattertype: '',
  2552. formatterstring: '',
  2553. remark: 'goodscode',
  2554. needsummary: 0,
  2555. summarytype: 0,
  2556. groupname: ''
  2557. },
  2558. {
  2559. autoid: 11361,
  2560. tablekey: 'table_pcweb_exposure_futuresposition',
  2561. columnfield: 'totalydqty',
  2562. columntitle: '昨日数量',
  2563. columnwidth: '0',
  2564. orderindex: 30,
  2565. isshow: 1,
  2566. aligntype: 1,
  2567. formattertype: '',
  2568. formatterstring: '',
  2569. remark: 'totalydqty',
  2570. needsummary: 0,
  2571. summarytype: 0,
  2572. groupname: ''
  2573. },
  2574. {
  2575. autoid: 11362,
  2576. tablekey: 'table_pcweb_exposure_futuresposition',
  2577. columnfield: 'increaseqty',
  2578. columntitle: '增加数量',
  2579. columnwidth: '0',
  2580. orderindex: 40,
  2581. isshow: 1,
  2582. aligntype: 1,
  2583. formattertype: '',
  2584. formatterstring: '',
  2585. remark: 'increaseqty',
  2586. needsummary: 0,
  2587. summarytype: 0,
  2588. groupname: ''
  2589. },
  2590. {
  2591. autoid: 11363,
  2592. tablekey: 'table_pcweb_exposure_futuresposition',
  2593. columnfield: 'decreaseqty',
  2594. columntitle: '减少数量 ',
  2595. columnwidth: '0',
  2596. orderindex: 50,
  2597. isshow: 1,
  2598. aligntype: 1,
  2599. formattertype: '',
  2600. formatterstring: '',
  2601. remark: 'decreaseqty',
  2602. needsummary: 0,
  2603. summarytype: 0,
  2604. groupname: ''
  2605. },
  2606. {
  2607. autoid: 11364,
  2608. tablekey: 'table_pcweb_exposure_futuresposition',
  2609. columnfield: 'totalcurqty',
  2610. columntitle: '当前数量',
  2611. columnwidth: '0',
  2612. orderindex: 60,
  2613. isshow: 1,
  2614. aligntype: 1,
  2615. formattertype: '',
  2616. formatterstring: '',
  2617. remark: 'totalcurqty',
  2618. needsummary: 0,
  2619. summarytype: 0,
  2620. groupname: ''
  2621. }
  2622. ]
  2623. },
  2624. {
  2625. tablekey: 'table_pcweb_exposure_futuresposition_detail',
  2626. tabletype: 2,
  2627. tablename: '敞口--现货头寸--期货明细',
  2628. tabelmenu: '',
  2629. remark: 'web端-敞口--现货头寸--期货明细',
  2630. columns: []
  2631. },
  2632. {
  2633. tablekey: 'table_pcweb_report_expose',
  2634. tabletype: 2,
  2635. tablename: '报表-敞口报表',
  2636. tabelmenu: '',
  2637. remark: 'web端-报表-敞口报表',
  2638. columns: [
  2639. {
  2640. autoid: 11371,
  2641. tablekey: 'table_pcweb_report_expose',
  2642. columnfield: 'middlegoodscode',
  2643. columntitle: '代码 ',
  2644. columnwidth: '0',
  2645. orderindex: 20,
  2646. isshow: 1,
  2647. aligntype: 1,
  2648. formattertype: '',
  2649. formatterstring: '',
  2650. remark: 'middlegoodscode',
  2651. needsummary: 0,
  2652. summarytype: 0,
  2653. groupname: ''
  2654. },
  2655. {
  2656. autoid: 11372,
  2657. tablekey: 'table_pcweb_report_expose',
  2658. columnfield: 'totalspotqty',
  2659. columntitle: '现货数量',
  2660. columnwidth: '0',
  2661. orderindex: 30,
  2662. isshow: 1,
  2663. aligntype: 1,
  2664. formattertype: '',
  2665. formatterstring: '',
  2666. remark: 'totalspotqty',
  2667. needsummary: 0,
  2668. summarytype: 0,
  2669. groupname: ''
  2670. },
  2671. {
  2672. autoid: 11373,
  2673. tablekey: 'table_pcweb_report_expose',
  2674. columnfield: 'middlegoodshedgeratio',
  2675. columntitle: '应套保比例 ',
  2676. columnwidth: '0',
  2677. orderindex: 40,
  2678. isshow: 1,
  2679. aligntype: 1,
  2680. formattertype: '',
  2681. formatterstring: '',
  2682. remark: 'middlegoodshedgeratio',
  2683. needsummary: 0,
  2684. summarytype: 0,
  2685. groupname: ''
  2686. },
  2687. {
  2688. autoid: 11374,
  2689. tablekey: 'table_pcweb_report_expose',
  2690. columnfield: 'totalneedhedgeqty',
  2691. columntitle: '期货应套保量',
  2692. columnwidth: '0',
  2693. orderindex: 50,
  2694. isshow: 1,
  2695. aligntype: 1,
  2696. formattertype: '',
  2697. formatterstring: '',
  2698. remark: 'totalneedhedgeqty',
  2699. needsummary: 0,
  2700. summarytype: 0,
  2701. groupname: ''
  2702. },
  2703. {
  2704. autoid: 11375,
  2705. tablekey: 'table_pcweb_report_expose',
  2706. columnfield: 'totalfutureqty',
  2707. columntitle: '期货数量 ',
  2708. columnwidth: '0',
  2709. orderindex: 60,
  2710. isshow: 1,
  2711. aligntype: 1,
  2712. formattertype: '',
  2713. formatterstring: '',
  2714. remark: 'totalfutureqty',
  2715. needsummary: 0,
  2716. summarytype: 0,
  2717. groupname: ''
  2718. },
  2719. {
  2720. autoid: 11376,
  2721. tablekey: 'table_pcweb_report_expose',
  2722. columnfield: 'needhedgeexposoure',
  2723. columntitle: '应套保敞口',
  2724. columnwidth: '0',
  2725. orderindex: 70,
  2726. isshow: 1,
  2727. aligntype: 1,
  2728. formattertype: '',
  2729. formatterstring: '',
  2730. remark: 'needhedgeexposoure',
  2731. needsummary: 0,
  2732. summarytype: 0,
  2733. groupname: ''
  2734. },
  2735. {
  2736. autoid: 11377,
  2737. tablekey: 'table_pcweb_report_expose',
  2738. columnfield: 'middlegoodshedgeratio',
  2739. columntitle: '比例 ',
  2740. columnwidth: '0',
  2741. orderindex: 80,
  2742. isshow: 1,
  2743. aligntype: 1,
  2744. formattertype: '',
  2745. formatterstring: '',
  2746. remark: 'middlegoodshedgeratio',
  2747. needsummary: 0,
  2748. summarytype: 0,
  2749. groupname: ''
  2750. },
  2751. {
  2752. autoid: 11378,
  2753. tablekey: 'table_pcweb_report_expose',
  2754. columnfield: 'totalexposure',
  2755. columntitle: '总敞口',
  2756. columnwidth: '0',
  2757. orderindex: 90,
  2758. isshow: 1,
  2759. aligntype: 1,
  2760. formattertype: '',
  2761. formatterstring: '',
  2762. remark: 'totalexposure',
  2763. needsummary: 0,
  2764. summarytype: 0,
  2765. groupname: ''
  2766. },
  2767. {
  2768. autoid: 11379,
  2769. tablekey: 'table_pcweb_report_expose',
  2770. columnfield: 'totalhedgeratio',
  2771. columntitle: '敞口比例 ',
  2772. columnwidth: '0',
  2773. orderindex: 100,
  2774. isshow: 1,
  2775. aligntype: 1,
  2776. formattertype: '',
  2777. formatterstring: '',
  2778. remark: 'totalhedgeratio',
  2779. needsummary: 0,
  2780. summarytype: 0,
  2781. groupname: ''
  2782. },
  2783. {
  2784. autoid: 11380,
  2785. tablekey: 'table_pcweb_report_expose',
  2786. columnfield: 'oriTotalSpotQty',
  2787. columntitle: '现货期初量',
  2788. columnwidth: '0',
  2789. orderindex: 110,
  2790. isshow: 1,
  2791. aligntype: 1,
  2792. formattertype: '',
  2793. formatterstring: '',
  2794. remark: 'oriTotalSpotQty',
  2795. needsummary: 0,
  2796. summarytype: 0,
  2797. groupname: ''
  2798. },
  2799. {
  2800. autoid: 11381,
  2801. tablekey: 'table_pcweb_report_expose',
  2802. columnfield: 'diffSpotQty',
  2803. columntitle: '今日变动量 ',
  2804. columnwidth: '0',
  2805. orderindex: 120,
  2806. isshow: 1,
  2807. aligntype: 1,
  2808. formattertype: '',
  2809. formatterstring: '',
  2810. remark: 'diffSpotQty',
  2811. needsummary: 0,
  2812. summarytype: 0,
  2813. groupname: ''
  2814. },
  2815. {
  2816. autoid: 11370,
  2817. tablekey: 'table_pcweb_report_expose',
  2818. columnfield: 'middlegoodsname',
  2819. columntitle: '套保品种 ',
  2820. columnwidth: '0',
  2821. orderindex: 10,
  2822. isshow: 1,
  2823. aligntype: 1,
  2824. formattertype: '',
  2825. formatterstring: '',
  2826. remark: 'middlegoodsname',
  2827. needsummary: 0,
  2828. summarytype: 0,
  2829. groupname: ''
  2830. }
  2831. ]
  2832. },
  2833. {
  2834. tablekey: 'table_pcweb_report_spot',
  2835. tabletype: 2,
  2836. tablename: '报表-现货报表',
  2837. tabelmenu: '',
  2838. remark: 'web端-报表-现货报表',
  2839. columns: [
  2840. {
  2841. autoid: 11382,
  2842. tablekey: 'table_pcweb_report_spot',
  2843. columnfield: 'wrstandardname',
  2844. columntitle: '现货品种',
  2845. columnwidth: '0',
  2846. orderindex: 10,
  2847. isshow: 1,
  2848. aligntype: 1,
  2849. formattertype: '',
  2850. formatterstring: '',
  2851. remark: 'wrstandardname',
  2852. needsummary: 0,
  2853. summarytype: 0,
  2854. groupname: ''
  2855. },
  2856. {
  2857. autoid: 11383,
  2858. tablekey: 'table_pcweb_report_spot',
  2859. columnfield: 'totalbuypricedqty',
  2860. columntitle: '采购定价量',
  2861. columnwidth: '0',
  2862. orderindex: 20,
  2863. isshow: 1,
  2864. aligntype: 1,
  2865. formattertype: '',
  2866. formatterstring: '',
  2867. remark: 'totalbuypricedqty',
  2868. needsummary: 0,
  2869. summarytype: 0,
  2870. groupname: ''
  2871. },
  2872. {
  2873. autoid: 11384,
  2874. tablekey: 'table_pcweb_report_spot',
  2875. columnfield: 'totalsellpricedqty',
  2876. columntitle: '销售定价量 ',
  2877. columnwidth: '0',
  2878. orderindex: 30,
  2879. isshow: 1,
  2880. aligntype: 1,
  2881. formattertype: '',
  2882. formatterstring: '',
  2883. remark: 'totalsellpricedqty',
  2884. needsummary: 0,
  2885. summarytype: 0,
  2886. groupname: ''
  2887. },
  2888. {
  2889. autoid: 11385,
  2890. tablekey: 'table_pcweb_report_spot',
  2891. columnfield: 'todaybuyreckonqty',
  2892. columntitle: '采购确定量',
  2893. columnwidth: '0',
  2894. orderindex: 40,
  2895. isshow: 1,
  2896. aligntype: 1,
  2897. formattertype: '',
  2898. formatterstring: '',
  2899. remark: 'todaybuyreckonqty',
  2900. needsummary: 0,
  2901. summarytype: 0,
  2902. groupname: ''
  2903. },
  2904. {
  2905. autoid: 11386,
  2906. tablekey: 'table_pcweb_report_spot',
  2907. columnfield: 'todaysellreckonqty',
  2908. columntitle: '销售确定量',
  2909. columnwidth: '0',
  2910. orderindex: 50,
  2911. isshow: 1,
  2912. aligntype: 1,
  2913. formattertype: '',
  2914. formatterstring: '',
  2915. remark: 'todaysellreckonqty',
  2916. needsummary: 0,
  2917. summarytype: 0,
  2918. groupname: ''
  2919. },
  2920. {
  2921. autoid: 11387,
  2922. tablekey: 'table_pcweb_report_spot',
  2923. columnfield: 'buyinqty',
  2924. columntitle: '采购入库量',
  2925. columnwidth: '0',
  2926. orderindex: 60,
  2927. isshow: 1,
  2928. aligntype: 1,
  2929. formattertype: '',
  2930. formatterstring: '',
  2931. remark: 'buyinqty',
  2932. needsummary: 0,
  2933. summarytype: 0,
  2934. groupname: ''
  2935. },
  2936. {
  2937. autoid: 11388,
  2938. tablekey: 'table_pcweb_report_spot',
  2939. columnfield: 'selloutqty',
  2940. columntitle: '销售出库量',
  2941. columnwidth: '0',
  2942. orderindex: 70,
  2943. isshow: 1,
  2944. aligntype: 1,
  2945. formattertype: '',
  2946. formatterstring: '',
  2947. remark: 'selloutqty',
  2948. needsummary: 0,
  2949. summarytype: 0,
  2950. groupname: ''
  2951. }
  2952. ]
  2953. },
  2954. {
  2955. tablekey: 'table_pcweb_report_spot_detail_day',
  2956. tabletype: 2,
  2957. tablename: '现货日报表-详情',
  2958. tabelmenu: '',
  2959. remark: 'web端-现货日报表-详情',
  2960. columns: [
  2961. {
  2962. autoid: 11389,
  2963. tablekey: 'table_pcweb_report_spot_detail_day',
  2964. columnfield: 'logdatetime',
  2965. columntitle: '发生时间',
  2966. columnwidth: '0',
  2967. orderindex: 10,
  2968. isshow: 1,
  2969. aligntype: 1,
  2970. formattertype: '',
  2971. formatterstring: '',
  2972. remark: 'logdatetime',
  2973. needsummary: 0,
  2974. summarytype: 0,
  2975. groupname: ''
  2976. },
  2977. {
  2978. autoid: 11390,
  2979. tablekey: 'table_pcweb_report_spot_detail_day',
  2980. columnfield: 'brandname',
  2981. columntitle: '商品品类 ',
  2982. columnwidth: '0',
  2983. orderindex: 20,
  2984. isshow: 1,
  2985. aligntype: 1,
  2986. formattertype: '',
  2987. formatterstring: '',
  2988. remark: 'brandname',
  2989. needsummary: 0,
  2990. summarytype: 0,
  2991. groupname: ''
  2992. },
  2993. {
  2994. autoid: 11391,
  2995. tablekey: 'table_pcweb_report_spot_detail_day',
  2996. columnfield: 'logtypename',
  2997. columntitle: '合同类型',
  2998. columnwidth: '0',
  2999. orderindex: 30,
  3000. isshow: 1,
  3001. aligntype: 1,
  3002. formattertype: '',
  3003. formatterstring: '',
  3004. remark: 'logtypename',
  3005. needsummary: 0,
  3006. summarytype: 0,
  3007. groupname: ''
  3008. },
  3009. {
  3010. autoid: 11392,
  3011. tablekey: 'table_pcweb_report_spot_detail_day',
  3012. columnfield: 'relatedno',
  3013. columntitle: '合同编号 ',
  3014. columnwidth: '0',
  3015. orderindex: 40,
  3016. isshow: 1,
  3017. aligntype: 1,
  3018. formattertype: '',
  3019. formatterstring: '',
  3020. remark: 'relatedno',
  3021. needsummary: 0,
  3022. summarytype: 0,
  3023. groupname: ''
  3024. },
  3025. {
  3026. autoid: 11393,
  3027. tablekey: 'table_pcweb_report_spot_detail_day',
  3028. columnfield: 'biztype',
  3029. columntitle: '操作类型',
  3030. columnwidth: '0',
  3031. orderindex: 50,
  3032. isshow: 1,
  3033. aligntype: 1,
  3034. formattertype: '',
  3035. formatterstring: '',
  3036. remark: 'biztype',
  3037. needsummary: 0,
  3038. summarytype: 0,
  3039. groupname: ''
  3040. },
  3041. {
  3042. autoid: 11394,
  3043. tablekey: 'table_pcweb_report_spot_detail_day',
  3044. columnfield: 'logvalue',
  3045. columntitle: '值 ',
  3046. columnwidth: '0',
  3047. orderindex: 60,
  3048. isshow: 1,
  3049. aligntype: 1,
  3050. formattertype: '',
  3051. formatterstring: '',
  3052. remark: 'logvalue',
  3053. needsummary: 0,
  3054. summarytype: 0,
  3055. groupname: ''
  3056. },
  3057. {
  3058. autoid: 11395,
  3059. tablekey: 'table_pcweb_report_spot_detail_day',
  3060. columnfield: 'applyname',
  3061. columntitle: '操作人',
  3062. columnwidth: '0',
  3063. orderindex: 70,
  3064. isshow: 1,
  3065. aligntype: 1,
  3066. formattertype: '',
  3067. formatterstring: '',
  3068. remark: 'applyname',
  3069. needsummary: 0,
  3070. summarytype: 0,
  3071. groupname: ''
  3072. }
  3073. ]
  3074. },
  3075. {
  3076. tablekey: 'table_pcweb_report_spot_detail_month',
  3077. tabletype: 2,
  3078. tablename: '现货月报表-详情',
  3079. tabelmenu: '',
  3080. remark: 'web端-现货月报表-详情',
  3081. columns: [
  3082. {
  3083. autoid: 11396,
  3084. tablekey: 'table_pcweb_report_spot_detail_month',
  3085. columnfield: 'reckondate',
  3086. columntitle: '日期',
  3087. columnwidth: '0',
  3088. orderindex: 10,
  3089. isshow: 1,
  3090. aligntype: 1,
  3091. formattertype: '',
  3092. formatterstring: '',
  3093. remark: 'reckondate',
  3094. needsummary: 0,
  3095. summarytype: 0,
  3096. groupname: ''
  3097. },
  3098. {
  3099. autoid: 11397,
  3100. tablekey: 'table_pcweb_report_spot_detail_month',
  3101. columnfield: 'totalbuypricedqty',
  3102. columntitle: '采购定价量',
  3103. columnwidth: '0',
  3104. orderindex: 20,
  3105. isshow: 1,
  3106. aligntype: 1,
  3107. formattertype: '',
  3108. formatterstring: '',
  3109. remark: 'totalbuypricedqty',
  3110. needsummary: 0,
  3111. summarytype: 0,
  3112. groupname: ''
  3113. },
  3114. {
  3115. autoid: 11398,
  3116. tablekey: 'table_pcweb_report_spot_detail_month',
  3117. columnfield: 'totalsellpricedqty',
  3118. columntitle: '销售定价量 ',
  3119. columnwidth: '0',
  3120. orderindex: 30,
  3121. isshow: 1,
  3122. aligntype: 1,
  3123. formattertype: '',
  3124. formatterstring: '',
  3125. remark: 'totalsellpricedqty',
  3126. needsummary: 0,
  3127. summarytype: 0,
  3128. groupname: ''
  3129. },
  3130. {
  3131. autoid: 11399,
  3132. tablekey: 'table_pcweb_report_spot_detail_month',
  3133. columnfield: 'todaysellreckonqty',
  3134. columntitle: '采购确定量',
  3135. columnwidth: '0',
  3136. orderindex: 40,
  3137. isshow: 1,
  3138. aligntype: 1,
  3139. formattertype: '',
  3140. formatterstring: '',
  3141. remark: 'todaysellreckonqty',
  3142. needsummary: 0,
  3143. summarytype: 0,
  3144. groupname: ''
  3145. },
  3146. {
  3147. autoid: 11400,
  3148. tablekey: 'table_pcweb_report_spot_detail_month',
  3149. columnfield: 'todaysellreckonqty',
  3150. columntitle: '销售确定量 ',
  3151. columnwidth: '0',
  3152. orderindex: 50,
  3153. isshow: 1,
  3154. aligntype: 1,
  3155. formattertype: '',
  3156. formatterstring: '',
  3157. remark: 'todaysellreckonqty',
  3158. needsummary: 0,
  3159. summarytype: 0,
  3160. groupname: ''
  3161. }
  3162. ]
  3163. },
  3164. {
  3165. tablekey: 'table_pcweb_report_fincial_payment_day',
  3166. tabletype: 2,
  3167. tablename: '报表-财务报表-款项-日报表',
  3168. tabelmenu: '',
  3169. remark: 'web端-报表-财务报表-款项-日报表',
  3170. columns: [
  3171. {
  3172. autoid: 11401,
  3173. tablekey: 'table_pcweb_report_fincial_payment_day',
  3174. columnfield: 'logdatetime',
  3175. columntitle: '款项发生时间',
  3176. columnwidth: '0',
  3177. orderindex: 10,
  3178. isshow: 1,
  3179. aligntype: 1,
  3180. formattertype: '',
  3181. formatterstring: '',
  3182. remark: 'logdatetime',
  3183. needsummary: 0,
  3184. summarytype: 0,
  3185. groupname: ''
  3186. },
  3187. {
  3188. autoid: 11402,
  3189. tablekey: 'table_pcweb_report_fincial_payment_day',
  3190. columnfield: 'logtypename',
  3191. columntitle: '合同类型',
  3192. columnwidth: '0',
  3193. orderindex: 20,
  3194. isshow: 1,
  3195. aligntype: 1,
  3196. formattertype: '',
  3197. formatterstring: '',
  3198. remark: 'logtypename',
  3199. needsummary: 0,
  3200. summarytype: 0,
  3201. groupname: ''
  3202. },
  3203. {
  3204. autoid: 11403,
  3205. tablekey: 'table_pcweb_report_fincial_payment_day',
  3206. columnfield: 'relatedno',
  3207. columntitle: '合同编号 ',
  3208. columnwidth: '0',
  3209. orderindex: 30,
  3210. isshow: 1,
  3211. aligntype: 1,
  3212. formattertype: '',
  3213. formatterstring: '',
  3214. remark: 'relatedno',
  3215. needsummary: 0,
  3216. summarytype: 0,
  3217. groupname: ''
  3218. },
  3219. {
  3220. autoid: 11404,
  3221. tablekey: 'table_pcweb_report_fincial_payment_day',
  3222. columnfield: 'biztype',
  3223. columntitle: '类型',
  3224. columnwidth: '0',
  3225. orderindex: 40,
  3226. isshow: 1,
  3227. aligntype: 1,
  3228. formattertype: '',
  3229. formatterstring: '',
  3230. remark: 'biztype',
  3231. needsummary: 0,
  3232. summarytype: 0,
  3233. groupname: ''
  3234. },
  3235. {
  3236. autoid: 11405,
  3237. tablekey: 'table_pcweb_report_fincial_payment_day',
  3238. columnfield: 'logvalue',
  3239. columntitle: '金额 ',
  3240. columnwidth: '0',
  3241. orderindex: 50,
  3242. isshow: 1,
  3243. aligntype: 1,
  3244. formattertype: '',
  3245. formatterstring: '',
  3246. remark: 'logvalue',
  3247. needsummary: 0,
  3248. summarytype: 0,
  3249. groupname: ''
  3250. },
  3251. {
  3252. autoid: 11406,
  3253. tablekey: 'table_pcweb_report_fincial_payment_day',
  3254. columnfield: 'applyname',
  3255. columntitle: '操作人',
  3256. columnwidth: '0',
  3257. orderindex: 60,
  3258. isshow: 1,
  3259. aligntype: 1,
  3260. formattertype: '',
  3261. formatterstring: '',
  3262. remark: 'applyname',
  3263. needsummary: 0,
  3264. summarytype: 0,
  3265. groupname: ''
  3266. }
  3267. ]
  3268. },
  3269. {
  3270. tablekey: 'table_pcweb_report_fincial_invoice_day',
  3271. tabletype: 2,
  3272. tablename: '报表-财务报表-发票-日报表',
  3273. tabelmenu: '',
  3274. remark: 'web端-报表-财务报表-发票-日报表',
  3275. columns: [
  3276. {
  3277. autoid: 11407,
  3278. tablekey: 'table_pcweb_report_fincial_invoice_day',
  3279. columnfield: 'logdatetime',
  3280. columntitle: '发票发生时间',
  3281. columnwidth: '0',
  3282. orderindex: 10,
  3283. isshow: 1,
  3284. aligntype: 1,
  3285. formattertype: '',
  3286. formatterstring: '',
  3287. remark: 'logdatetime',
  3288. needsummary: 0,
  3289. summarytype: 0,
  3290. groupname: ''
  3291. },
  3292. {
  3293. autoid: 11408,
  3294. tablekey: 'table_pcweb_report_fincial_invoice_day',
  3295. columnfield: 'optypename',
  3296. columntitle: '合同类型',
  3297. columnwidth: '0',
  3298. orderindex: 20,
  3299. isshow: 1,
  3300. aligntype: 1,
  3301. formattertype: '',
  3302. formatterstring: '',
  3303. remark: 'optypename',
  3304. needsummary: 0,
  3305. summarytype: 0,
  3306. groupname: ''
  3307. },
  3308. {
  3309. autoid: 11409,
  3310. tablekey: 'table_pcweb_report_fincial_invoice_day',
  3311. columnfield: 'relatedno',
  3312. columntitle: '合同编号',
  3313. columnwidth: '0',
  3314. orderindex: 30,
  3315. isshow: 1,
  3316. aligntype: 1,
  3317. formattertype: '',
  3318. formatterstring: '',
  3319. remark: 'relatedno',
  3320. needsummary: 0,
  3321. summarytype: 0,
  3322. groupname: ''
  3323. },
  3324. {
  3325. autoid: 11410,
  3326. tablekey: 'table_pcweb_report_fincial_invoice_day',
  3327. columnfield: 'contracttype',
  3328. columntitle: '类型',
  3329. columnwidth: '0',
  3330. orderindex: 40,
  3331. isshow: 1,
  3332. aligntype: 1,
  3333. formattertype: '',
  3334. formatterstring: '',
  3335. remark: 'contracttype',
  3336. needsummary: 0,
  3337. summarytype: 0,
  3338. groupname: ''
  3339. },
  3340. {
  3341. autoid: 11411,
  3342. tablekey: 'table_pcweb_report_fincial_invoice_day',
  3343. columnfield: 'logvalue',
  3344. columntitle: '金额 ',
  3345. columnwidth: '0',
  3346. orderindex: 50,
  3347. isshow: 1,
  3348. aligntype: 1,
  3349. formattertype: '',
  3350. formatterstring: '',
  3351. remark: 'logvalue',
  3352. needsummary: 0,
  3353. summarytype: 0,
  3354. groupname: ''
  3355. },
  3356. {
  3357. autoid: 11412,
  3358. tablekey: 'table_pcweb_report_fincial_invoice_day',
  3359. columnfield: 'applyname',
  3360. columntitle: '操作人',
  3361. columnwidth: '0',
  3362. orderindex: 60,
  3363. isshow: 1,
  3364. aligntype: 1,
  3365. formattertype: '',
  3366. formatterstring: '',
  3367. remark: 'applyname',
  3368. needsummary: 0,
  3369. summarytype: 0,
  3370. groupname: ''
  3371. }
  3372. ]
  3373. },
  3374. {
  3375. tablekey: 'table_pcweb_report_fincial_month',
  3376. tabletype: 2,
  3377. tablename: '报表-财务报表-月报表',
  3378. tabelmenu: '',
  3379. remark: 'web端-报表-财务报表-月报表',
  3380. columns: [
  3381. {
  3382. autoid: 11413,
  3383. tablekey: 'table_pcweb_report_fincial_month',
  3384. columnfield: 'updatetime',
  3385. columntitle: '日期',
  3386. columnwidth: '0',
  3387. orderindex: 10,
  3388. isshow: 1,
  3389. aligntype: 1,
  3390. formattertype: '',
  3391. formatterstring: '',
  3392. remark: 'updatetime',
  3393. needsummary: 0,
  3394. summarytype: 0,
  3395. groupname: ''
  3396. },
  3397. {
  3398. autoid: 11414,
  3399. tablekey: 'table_pcweb_report_fincial_month',
  3400. columnfield: 'collectmoneycount',
  3401. columntitle: '收笔款数',
  3402. columnwidth: '0',
  3403. orderindex: 20,
  3404. isshow: 1,
  3405. aligntype: 1,
  3406. formattertype: '',
  3407. formatterstring: '',
  3408. remark: 'collectmoneycount',
  3409. needsummary: 0,
  3410. summarytype: 0,
  3411. groupname: ''
  3412. },
  3413. {
  3414. autoid: 11415,
  3415. tablekey: 'table_pcweb_report_fincial_month',
  3416. columnfield: 'collectmoneyamount',
  3417. columntitle: '收款金额 ',
  3418. columnwidth: '0',
  3419. orderindex: 30,
  3420. isshow: 1,
  3421. aligntype: 1,
  3422. formattertype: '',
  3423. formatterstring: '',
  3424. remark: 'collectmoneyamount',
  3425. needsummary: 0,
  3426. summarytype: 0,
  3427. groupname: ''
  3428. },
  3429. {
  3430. autoid: 11416,
  3431. tablekey: 'table_pcweb_report_fincial_month',
  3432. columnfield: 'paymoneycount',
  3433. columntitle: '付款笔数',
  3434. columnwidth: '0',
  3435. orderindex: 40,
  3436. isshow: 1,
  3437. aligntype: 1,
  3438. formattertype: '',
  3439. formatterstring: '',
  3440. remark: 'paymoneycount',
  3441. needsummary: 0,
  3442. summarytype: 0,
  3443. groupname: ''
  3444. },
  3445. {
  3446. autoid: 11417,
  3447. tablekey: 'table_pcweb_report_fincial_month',
  3448. columnfield: 'paymoneyamount',
  3449. columntitle: '付款金额 ',
  3450. columnwidth: '0',
  3451. orderindex: 50,
  3452. isshow: 1,
  3453. aligntype: 1,
  3454. formattertype: '',
  3455. formatterstring: '',
  3456. remark: 'paymoneyamount',
  3457. needsummary: 0,
  3458. summarytype: 0,
  3459. groupname: ''
  3460. },
  3461. {
  3462. autoid: 11418,
  3463. tablekey: 'table_pcweb_report_fincial_month',
  3464. columnfield: 'payinvoicecount',
  3465. columntitle: '收票笔数',
  3466. columnwidth: '0',
  3467. orderindex: 60,
  3468. isshow: 1,
  3469. aligntype: 1,
  3470. formattertype: '',
  3471. formatterstring: '',
  3472. remark: 'payinvoicecount',
  3473. needsummary: 0,
  3474. summarytype: 0,
  3475. groupname: ''
  3476. },
  3477. {
  3478. autoid: 11419,
  3479. tablekey: 'table_pcweb_report_fincial_month',
  3480. columnfield: 'payinvoiceamount',
  3481. columntitle: '收票金额 ',
  3482. columnwidth: '0',
  3483. orderindex: 70,
  3484. isshow: 1,
  3485. aligntype: 1,
  3486. formattertype: '',
  3487. formatterstring: '',
  3488. remark: 'payinvoiceamount',
  3489. needsummary: 0,
  3490. summarytype: 0,
  3491. groupname: ''
  3492. },
  3493. {
  3494. autoid: 11420,
  3495. tablekey: 'table_pcweb_report_fincial_month',
  3496. columnfield: 'collectinvoicecount',
  3497. columntitle: '开票笔数',
  3498. columnwidth: '0',
  3499. orderindex: 80,
  3500. isshow: 1,
  3501. aligntype: 1,
  3502. formattertype: '',
  3503. formatterstring: '',
  3504. remark: 'collectinvoicecount',
  3505. needsummary: 0,
  3506. summarytype: 0,
  3507. groupname: ''
  3508. },
  3509. {
  3510. autoid: 11421,
  3511. tablekey: 'table_pcweb_report_fincial_month',
  3512. columnfield: 'collectinvoiceamount',
  3513. columntitle: '开票金额 ',
  3514. columnwidth: '0',
  3515. orderindex: 90,
  3516. isshow: 1,
  3517. aligntype: 1,
  3518. formattertype: '',
  3519. formatterstring: '',
  3520. remark: 'collectinvoiceamount',
  3521. needsummary: 0,
  3522. summarytype: 0,
  3523. groupname: ''
  3524. }
  3525. ]
  3526. },
  3527. {
  3528. tablekey: 'table_pcweb_business_aduit_dj',
  3529. tabletype: 2,
  3530. tablename: '业务审核-点价',
  3531. tabelmenu: '',
  3532. remark: 'web端-业务审核-点价',
  3533. columns: [
  3534. {
  3535. autoid: 11422,
  3536. tablekey: 'table_pcweb_business_aduit_dj',
  3537. columnfield: 'applystatus',
  3538. columntitle: '状态',
  3539. columnwidth: '0',
  3540. orderindex: 10,
  3541. isshow: 1,
  3542. aligntype: 1,
  3543. formattertype: '',
  3544. formatterstring: '',
  3545. remark: 'contractstatus',
  3546. needsummary: 0,
  3547. summarytype: 0,
  3548. groupname: ''
  3549. },
  3550. {
  3551. autoid: 11423,
  3552. tablekey: 'table_pcweb_business_aduit_dj',
  3553. columnfield: 'contracttype',
  3554. columntitle: '合同类型',
  3555. columnwidth: '0',
  3556. orderindex: 20,
  3557. isshow: 1,
  3558. aligntype: 1,
  3559. formattertype: '',
  3560. formatterstring: '',
  3561. remark: 'contracttype',
  3562. needsummary: 0,
  3563. summarytype: 0,
  3564. groupname: ''
  3565. },
  3566. {
  3567. autoid: 11424,
  3568. tablekey: 'table_pcweb_business_aduit_dj',
  3569. columnfield: 'buyusernameOrsellusername',
  3570. columntitle: '对手方',
  3571. columnwidth: '0',
  3572. orderindex: 30,
  3573. isshow: 1,
  3574. aligntype: 1,
  3575. formattertype: '',
  3576. formatterstring: '',
  3577. remark: 'buyusernameOrsellusername',
  3578. needsummary: 0,
  3579. summarytype: 0,
  3580. groupname: ''
  3581. },
  3582. {
  3583. autoid: 11425,
  3584. tablekey: 'table_pcweb_business_aduit_dj',
  3585. columnfield: 'contractno',
  3586. columntitle: '合同编号',
  3587. columnwidth: '0',
  3588. orderindex: 40,
  3589. isshow: 1,
  3590. aligntype: 1,
  3591. formattertype: '',
  3592. formatterstring: '',
  3593. remark: 'contractno',
  3594. needsummary: 0,
  3595. summarytype: 0,
  3596. groupname: ''
  3597. },
  3598. {
  3599. autoid: 11426,
  3600. tablekey: 'table_pcweb_business_aduit_dj',
  3601. columnfield: 'deliverygoodsname',
  3602. columntitle: '现货品种',
  3603. columnwidth: '0',
  3604. orderindex: 50,
  3605. isshow: 1,
  3606. aligntype: 1,
  3607. formattertype: '',
  3608. formatterstring: '',
  3609. remark: 'deliverygoodsname',
  3610. needsummary: 0,
  3611. summarytype: 0,
  3612. groupname: ''
  3613. },
  3614. {
  3615. autoid: 11427,
  3616. tablekey: 'table_pcweb_business_aduit_dj',
  3617. columnfield: 'pricetype',
  3618. columntitle: '点价类型',
  3619. columnwidth: '0',
  3620. orderindex: 60,
  3621. isshow: 1,
  3622. aligntype: 1,
  3623. formattertype: '',
  3624. formatterstring: '',
  3625. remark: 'pricetype',
  3626. needsummary: 0,
  3627. summarytype: 0,
  3628. groupname: ''
  3629. },
  3630. {
  3631. autoid: 11428,
  3632. tablekey: 'table_pcweb_business_aduit_dj',
  3633. columnfield: 'goodscode',
  3634. columntitle: '点价合约',
  3635. columnwidth: '0',
  3636. orderindex: 70,
  3637. isshow: 1,
  3638. aligntype: 1,
  3639. formattertype: '',
  3640. formatterstring: '',
  3641. remark: 'goodscode',
  3642. needsummary: 0,
  3643. summarytype: 0,
  3644. groupname: ''
  3645. },
  3646. {
  3647. autoid: 11429,
  3648. tablekey: 'table_pcweb_business_aduit_dj',
  3649. columnfield: 'pricedPrice',
  3650. columntitle: '点价价格',
  3651. columnwidth: '0',
  3652. orderindex: 80,
  3653. isshow: 1,
  3654. aligntype: 1,
  3655. formattertype: '',
  3656. formatterstring: '',
  3657. remark: 'pricedPrice',
  3658. needsummary: 0,
  3659. summarytype: 0,
  3660. groupname: ''
  3661. },
  3662. {
  3663. autoid: 11430,
  3664. tablekey: 'table_pcweb_business_aduit_dj',
  3665. columnfield: 'pricemove',
  3666. columntitle: '升贴水',
  3667. columnwidth: '0',
  3668. orderindex: 90,
  3669. isshow: 1,
  3670. aligntype: 1,
  3671. formattertype: '',
  3672. formatterstring: '',
  3673. remark: 'pricemove',
  3674. needsummary: 0,
  3675. summarytype: 0,
  3676. groupname: ''
  3677. },
  3678. {
  3679. autoid: 11431,
  3680. tablekey: 'table_pcweb_business_aduit_dj',
  3681. columnfield: 'pricedQty',
  3682. columntitle: '点价数量',
  3683. columnwidth: '0',
  3684. orderindex: 100,
  3685. isshow: 1,
  3686. aligntype: 1,
  3687. formattertype: '',
  3688. formatterstring: '',
  3689. remark: 'applyname',
  3690. needsummary: 0,
  3691. summarytype: 0,
  3692. groupname: ''
  3693. },
  3694. {
  3695. autoid: 11432,
  3696. tablekey: 'table_pcweb_business_aduit_dj',
  3697. columnfield: 'amount',
  3698. columntitle: '点价金额',
  3699. columnwidth: '0',
  3700. orderindex: 110,
  3701. isshow: 1,
  3702. aligntype: 1,
  3703. formattertype: '',
  3704. formatterstring: '',
  3705. remark: 'amount',
  3706. needsummary: 0,
  3707. summarytype: 0,
  3708. groupname: ''
  3709. },
  3710. {
  3711. autoid: 11433,
  3712. tablekey: 'table_pcweb_business_aduit_dj',
  3713. columnfield: 'audittime',
  3714. columntitle: '登记时间',
  3715. columnwidth: '0',
  3716. orderindex: 120,
  3717. isshow: 1,
  3718. aligntype: 1,
  3719. formattertype: '',
  3720. formatterstring: '',
  3721. remark: 'audittime',
  3722. needsummary: 0,
  3723. summarytype: 0,
  3724. groupname: ''
  3725. },
  3726. {
  3727. autoid: 11434,
  3728. tablekey: 'table_pcweb_business_aduit_dj',
  3729. columnfield: 'auditname',
  3730. columntitle: '登记人',
  3731. columnwidth: '0',
  3732. orderindex: 130,
  3733. isshow: 1,
  3734. aligntype: 1,
  3735. formattertype: '',
  3736. formatterstring: '',
  3737. remark: 'contractstatus',
  3738. needsummary: 0,
  3739. summarytype: 0,
  3740. groupname: ''
  3741. }
  3742. ]
  3743. },
  3744. {
  3745. tablekey: 'table_pcweb_business_aduit_js',
  3746. tabletype: 2,
  3747. tablename: '业务审核-交收',
  3748. tabelmenu: '',
  3749. remark: 'web端-业务审核-交收',
  3750. columns: [
  3751. {
  3752. autoid: 11437,
  3753. tablekey: 'table_pcweb_business_aduit_js',
  3754. columnfield: 'buyusernameOrsellusername',
  3755. columntitle: '对手方',
  3756. columnwidth: '0',
  3757. orderindex: 30,
  3758. isshow: 1,
  3759. aligntype: 1,
  3760. formattertype: '',
  3761. formatterstring: '',
  3762. remark: 'buyusernameOrsellusername',
  3763. needsummary: 0,
  3764. summarytype: 0,
  3765. groupname: ''
  3766. },
  3767. {
  3768. autoid: 11438,
  3769. tablekey: 'table_pcweb_business_aduit_js',
  3770. columnfield: 'contractno',
  3771. columntitle: '合同编号',
  3772. columnwidth: '0',
  3773. orderindex: 40,
  3774. isshow: 1,
  3775. aligntype: 1,
  3776. formattertype: '',
  3777. formatterstring: '',
  3778. remark: 'contractno',
  3779. needsummary: 0,
  3780. summarytype: 0,
  3781. groupname: ''
  3782. },
  3783. {
  3784. autoid: 11439,
  3785. tablekey: 'table_pcweb_business_aduit_js',
  3786. columnfield: 'deliverygoodsname',
  3787. columntitle: '现货品种',
  3788. columnwidth: '0',
  3789. orderindex: 50,
  3790. isshow: 1,
  3791. aligntype: 1,
  3792. formattertype: '',
  3793. formatterstring: '',
  3794. remark: 'deliverygoodsname',
  3795. needsummary: 0,
  3796. summarytype: 0,
  3797. groupname: ''
  3798. },
  3799. {
  3800. autoid: 11440,
  3801. tablekey: 'table_pcweb_business_aduit_js',
  3802. columnfield: 'operateapplytype',
  3803. columntitle: '点价类型',
  3804. columnwidth: '0',
  3805. orderindex: 60,
  3806. isshow: 1,
  3807. aligntype: 1,
  3808. formattertype: '',
  3809. formatterstring: '',
  3810. remark: 'operateapplytype',
  3811. needsummary: 0,
  3812. summarytype: 0,
  3813. groupname: ''
  3814. },
  3815. {
  3816. autoid: 11441,
  3817. tablekey: 'table_pcweb_business_aduit_js',
  3818. columnfield: 'reckonrealqty',
  3819. columntitle: '交收量',
  3820. columnwidth: '0',
  3821. orderindex: 70,
  3822. isshow: 1,
  3823. aligntype: 1,
  3824. formattertype: '',
  3825. formatterstring: '',
  3826. remark: 'reckonrealqty',
  3827. needsummary: 0,
  3828. summarytype: 0,
  3829. groupname: ''
  3830. },
  3831. {
  3832. autoid: 11442,
  3833. tablekey: 'table_pcweb_business_aduit_js',
  3834. columnfield: 'reckonotheramount',
  3835. columntitle: '其它费用',
  3836. columnwidth: '0',
  3837. orderindex: 80,
  3838. isshow: 1,
  3839. aligntype: 1,
  3840. formattertype: '',
  3841. formatterstring: '',
  3842. remark: 'reckonotheramount',
  3843. needsummary: 0,
  3844. summarytype: 0,
  3845. groupname: ''
  3846. },
  3847. {
  3848. autoid: 11443,
  3849. tablekey: 'table_pcweb_business_aduit_js',
  3850. columnfield: 'addmargin||decmargin',
  3851. columntitle: '调整保证金',
  3852. columnwidth: '0',
  3853. orderindex: 90,
  3854. isshow: 1,
  3855. aligntype: 1,
  3856. formattertype: '',
  3857. formatterstring: '',
  3858. remark: 'addmargin||decmargin',
  3859. needsummary: 0,
  3860. summarytype: 0,
  3861. groupname: ''
  3862. },
  3863. {
  3864. autoid: 11444,
  3865. tablekey: 'table_pcweb_business_aduit_js',
  3866. columnfield: 'reckonadjustamount',
  3867. columntitle: '调整金额',
  3868. columnwidth: '0',
  3869. orderindex: 100,
  3870. isshow: 1,
  3871. aligntype: 1,
  3872. formattertype: '',
  3873. formatterstring: '',
  3874. remark: 'reckonadjustamount',
  3875. needsummary: 0,
  3876. summarytype: 0,
  3877. groupname: ''
  3878. },
  3879. {
  3880. autoid: 11445,
  3881. tablekey: 'table_pcweb_business_aduit_js',
  3882. columnfield: 'audittime',
  3883. columntitle: '登记时间',
  3884. columnwidth: '0',
  3885. orderindex: 110,
  3886. isshow: 1,
  3887. aligntype: 1,
  3888. formattertype: '',
  3889. formatterstring: '',
  3890. remark: 'audittime',
  3891. needsummary: 0,
  3892. summarytype: 0,
  3893. groupname: ''
  3894. },
  3895. {
  3896. autoid: 11446,
  3897. tablekey: 'table_pcweb_business_aduit_js',
  3898. columnfield: 'auditname',
  3899. columntitle: '登记人',
  3900. columnwidth: '0',
  3901. orderindex: 120,
  3902. isshow: 1,
  3903. aligntype: 1,
  3904. formattertype: '',
  3905. formatterstring: '',
  3906. remark: 'auditname',
  3907. needsummary: 0,
  3908. summarytype: 0,
  3909. groupname: ''
  3910. },
  3911. {
  3912. autoid: 11435,
  3913. tablekey: 'table_pcweb_business_aduit_js',
  3914. columnfield: 'applystatus',
  3915. columntitle: '状态',
  3916. columnwidth: '0',
  3917. orderindex: 10,
  3918. isshow: 1,
  3919. aligntype: 1,
  3920. formattertype: '',
  3921. formatterstring: '',
  3922. remark: 'applystatus',
  3923. needsummary: 0,
  3924. summarytype: 0,
  3925. groupname: ''
  3926. },
  3927. {
  3928. autoid: 11436,
  3929. tablekey: 'table_pcweb_business_aduit_js',
  3930. columnfield: 'contracttype',
  3931. columntitle: '合同类型',
  3932. columnwidth: '0',
  3933. orderindex: 20,
  3934. isshow: 1,
  3935. aligntype: 1,
  3936. formattertype: '',
  3937. formatterstring: '',
  3938. remark: 'contracttype',
  3939. needsummary: 0,
  3940. summarytype: 0,
  3941. groupname: ''
  3942. }
  3943. ]
  3944. },
  3945. {
  3946. tablekey: 'table_pcweb_fincial_aduit_fp',
  3947. tabletype: 2,
  3948. tablename: '业务审核-发票',
  3949. tabelmenu: '',
  3950. remark: 'web端-业务审核-发票',
  3951. columns: [
  3952. {
  3953. autoid: 11447,
  3954. tablekey: 'table_pcweb_fincial_aduit_fp',
  3955. columnfield: 'applystatus',
  3956. columntitle: '状态',
  3957. columnwidth: '0',
  3958. orderindex: 70,
  3959. isshow: 1,
  3960. aligntype: 1,
  3961. formattertype: '',
  3962. formatterstring: '',
  3963. remark: 'applystatus',
  3964. needsummary: 0,
  3965. summarytype: 0,
  3966. groupname: ''
  3967. },
  3968. {
  3969. autoid: 11448,
  3970. tablekey: 'table_pcweb_fincial_aduit_fp',
  3971. columnfield: 'contracttype',
  3972. columntitle: '合同类型',
  3973. columnwidth: '0',
  3974. orderindex: 30,
  3975. isshow: 1,
  3976. aligntype: 1,
  3977. formattertype: '',
  3978. formatterstring: '',
  3979. remark: 'contracttype',
  3980. needsummary: 0,
  3981. summarytype: 0,
  3982. groupname: ''
  3983. },
  3984. {
  3985. autoid: 11449,
  3986. tablekey: 'table_pcweb_fincial_aduit_fp',
  3987. columnfield: 'buyusernameOrsellusername',
  3988. columntitle: '对手方',
  3989. columnwidth: '0',
  3990. orderindex: 30,
  3991. isshow: 1,
  3992. aligntype: 1,
  3993. formattertype: '',
  3994. formatterstring: '',
  3995. remark: 'contracttype',
  3996. needsummary: 0,
  3997. summarytype: 0,
  3998. groupname: ''
  3999. },
  4000. {
  4001. autoid: 11450,
  4002. tablekey: 'table_pcweb_fincial_aduit_fp',
  4003. columnfield: 'contractno',
  4004. columntitle: '合同编号',
  4005. columnwidth: '0',
  4006. orderindex: 40,
  4007. isshow: 1,
  4008. aligntype: 1,
  4009. formattertype: '',
  4010. formatterstring: '',
  4011. remark: 'contractno',
  4012. needsummary: 0,
  4013. summarytype: 0,
  4014. groupname: ''
  4015. },
  4016. {
  4017. autoid: 11451,
  4018. tablekey: 'table_pcweb_fincial_aduit_fp',
  4019. columnfield: 'deliverygoodsname',
  4020. columntitle: '现货品种',
  4021. columnwidth: '0',
  4022. orderindex: 20,
  4023. isshow: 1,
  4024. aligntype: 1,
  4025. formattertype: '',
  4026. formatterstring: '',
  4027. remark: 'audittime',
  4028. needsummary: 0,
  4029. summarytype: 0,
  4030. groupname: ''
  4031. },
  4032. {
  4033. autoid: 11452,
  4034. tablekey: 'table_pcweb_fincial_aduit_fp',
  4035. columnfield: 'operateapplytype',
  4036. columntitle: '点价类型',
  4037. columnwidth: '0',
  4038. orderindex: 20,
  4039. isshow: 1,
  4040. aligntype: 1,
  4041. formattertype: '',
  4042. formatterstring: '',
  4043. remark: 'audittime',
  4044. needsummary: 0,
  4045. summarytype: 0,
  4046. groupname: ''
  4047. },
  4048. {
  4049. autoid: 11453,
  4050. tablekey: 'table_pcweb_fincial_aduit_fp',
  4051. columnfield: 'invoicetype',
  4052. columntitle: '发票类型',
  4053. columnwidth: '0',
  4054. orderindex: 20,
  4055. isshow: 1,
  4056. aligntype: 1,
  4057. formattertype: '',
  4058. formatterstring: '',
  4059. remark: 'contracttype',
  4060. needsummary: 0,
  4061. summarytype: 0,
  4062. groupname: ''
  4063. },
  4064. {
  4065. autoid: 11454,
  4066. tablekey: 'table_pcweb_fincial_aduit_fp',
  4067. columnfield: 'InvoiceAmount',
  4068. columntitle: '金额',
  4069. columnwidth: '0',
  4070. orderindex: 60,
  4071. isshow: 1,
  4072. aligntype: 1,
  4073. formattertype: '',
  4074. formatterstring: '',
  4075. remark: 'InvoiceAmount',
  4076. needsummary: 0,
  4077. summarytype: 0,
  4078. groupname: ''
  4079. },
  4080. {
  4081. autoid: 11455,
  4082. tablekey: 'table_pcweb_fincial_aduit_fp',
  4083. columnfield: 'attachurl',
  4084. columntitle: '发票附件',
  4085. columnwidth: '0',
  4086. orderindex: 60,
  4087. isshow: 1,
  4088. aligntype: 1,
  4089. formattertype: '',
  4090. formatterstring: '',
  4091. remark: 'attachurl',
  4092. needsummary: 0,
  4093. summarytype: 0,
  4094. groupname: ''
  4095. },
  4096. {
  4097. autoid: 11456,
  4098. tablekey: 'table_pcweb_fincial_aduit_fp',
  4099. columnfield: 'audittime',
  4100. columntitle: '登记时间',
  4101. columnwidth: '0',
  4102. orderindex: 60,
  4103. isshow: 1,
  4104. aligntype: 1,
  4105. formattertype: '',
  4106. formatterstring: '',
  4107. remark: 'audittime',
  4108. needsummary: 0,
  4109. summarytype: 0,
  4110. groupname: ''
  4111. },
  4112. {
  4113. autoid: 11457,
  4114. tablekey: 'table_pcweb_fincial_aduit_fp',
  4115. columnfield: 'auditname',
  4116. columntitle: '登记人',
  4117. columnwidth: '0',
  4118. orderindex: 60,
  4119. isshow: 1,
  4120. aligntype: 1,
  4121. formattertype: '',
  4122. formatterstring: '',
  4123. remark: 'auditname',
  4124. needsummary: 0,
  4125. summarytype: 0,
  4126. groupname: ''
  4127. }
  4128. ]
  4129. },
  4130. {
  4131. tablekey: 'table_pcweb_fincial_aduit_kx',
  4132. tabletype: 2,
  4133. tablename: '财务审核-款项',
  4134. tabelmenu: '',
  4135. remark: 'web端-财务审核-款项',
  4136. columns: [
  4137. {
  4138. autoid: 11458,
  4139. tablekey: 'table_pcweb_fincial_aduit_kx',
  4140. columnfield: 'contractstatus',
  4141. columntitle: '状态',
  4142. columnwidth: '0',
  4143. orderindex: 10,
  4144. isshow: 1,
  4145. aligntype: 1,
  4146. formattertype: '',
  4147. formatterstring: '',
  4148. remark: 'contractstatus',
  4149. needsummary: 0,
  4150. summarytype: 0,
  4151. groupname: ''
  4152. },
  4153. {
  4154. autoid: 11459,
  4155. tablekey: 'table_pcweb_fincial_aduit_kx',
  4156. columnfield: 'contracttype',
  4157. columntitle: '合同类型',
  4158. columnwidth: '0',
  4159. orderindex: 20,
  4160. isshow: 1,
  4161. aligntype: 1,
  4162. formattertype: '',
  4163. formatterstring: '',
  4164. remark: 'contracttype',
  4165. needsummary: 0,
  4166. summarytype: 0,
  4167. groupname: ''
  4168. },
  4169. {
  4170. autoid: 11460,
  4171. tablekey: 'table_pcweb_fincial_aduit_kx',
  4172. columnfield: 'buyusernameOrsellusername',
  4173. columntitle: '对手方',
  4174. columnwidth: '0',
  4175. orderindex: 30,
  4176. isshow: 1,
  4177. aligntype: 1,
  4178. formattertype: '',
  4179. formatterstring: '',
  4180. remark: 'userinfotype',
  4181. needsummary: 0,
  4182. summarytype: 0,
  4183. groupname: ''
  4184. },
  4185. {
  4186. autoid: 11461,
  4187. tablekey: 'table_pcweb_fincial_aduit_kx',
  4188. columnfield: 'contractno',
  4189. columntitle: '合同编号',
  4190. columnwidth: '0',
  4191. orderindex: 40,
  4192. isshow: 1,
  4193. aligntype: 1,
  4194. formattertype: '',
  4195. formatterstring: '',
  4196. remark: 'contractno',
  4197. needsummary: 0,
  4198. summarytype: 0,
  4199. groupname: ''
  4200. },
  4201. {
  4202. autoid: 11462,
  4203. tablekey: 'table_pcweb_fincial_aduit_kx',
  4204. columnfield: 'deliverygoodsname',
  4205. columntitle: '现货品种',
  4206. columnwidth: '0',
  4207. orderindex: 50,
  4208. isshow: 1,
  4209. aligntype: 1,
  4210. formattertype: '',
  4211. formatterstring: '',
  4212. remark: 'deliverygoodsname',
  4213. needsummary: 0,
  4214. summarytype: 0,
  4215. groupname: ''
  4216. },
  4217. {
  4218. autoid: 11463,
  4219. tablekey: 'table_pcweb_fincial_aduit_kx',
  4220. columnfield: 'operateapplytype',
  4221. columntitle: '点价类型',
  4222. columnwidth: '0',
  4223. orderindex: 60,
  4224. isshow: 1,
  4225. aligntype: 1,
  4226. formattertype: '',
  4227. formatterstring: '',
  4228. remark: 'operateapplytype',
  4229. needsummary: 0,
  4230. summarytype: 0,
  4231. groupname: ''
  4232. },
  4233. {
  4234. autoid: 11464,
  4235. tablekey: 'table_pcweb_fincial_aduit_kx',
  4236. columnfield: 'kxtype',
  4237. columntitle: '款项类型',
  4238. columnwidth: '0',
  4239. orderindex: 70,
  4240. isshow: 1,
  4241. aligntype: 1,
  4242. formattertype: '',
  4243. formatterstring: '',
  4244. remark: 'kxtype',
  4245. needsummary: 0,
  4246. summarytype: 0,
  4247. groupname: ''
  4248. },
  4249. {
  4250. autoid: 11465,
  4251. tablekey: 'table_pcweb_fincial_aduit_kx',
  4252. columnfield: 'payamount',
  4253. columntitle: '金额',
  4254. columnwidth: '0',
  4255. orderindex: 80,
  4256. isshow: 1,
  4257. aligntype: 1,
  4258. formattertype: '',
  4259. formatterstring: '',
  4260. remark: 'payamount',
  4261. needsummary: 0,
  4262. summarytype: 0,
  4263. groupname: ''
  4264. },
  4265. {
  4266. autoid: 11466,
  4267. tablekey: 'table_pcweb_fincial_aduit_kx',
  4268. columnfield: 'audittime',
  4269. columntitle: '登记时间',
  4270. columnwidth: '0',
  4271. orderindex: 90,
  4272. isshow: 1,
  4273. aligntype: 1,
  4274. formattertype: '',
  4275. formatterstring: '',
  4276. remark: 'audittime',
  4277. needsummary: 0,
  4278. summarytype: 0,
  4279. groupname: ''
  4280. },
  4281. {
  4282. autoid: 11467,
  4283. tablekey: 'table_pcweb_fincial_aduit_kx',
  4284. columnfield: 'auditname',
  4285. columntitle: '登记人',
  4286. columnwidth: '0',
  4287. orderindex: 100,
  4288. isshow: 1,
  4289. aligntype: 1,
  4290. formattertype: '',
  4291. formatterstring: '',
  4292. remark: 'auditname',
  4293. needsummary: 0,
  4294. summarytype: 0,
  4295. groupname: ''
  4296. }
  4297. ]
  4298. },
  4299. {
  4300. tablekey: 'table_pcweb_stock_aduit',
  4301. tabletype: 2,
  4302. tablename: '库存审核-入库',
  4303. tabelmenu: '',
  4304. remark: 'web端-库存审核-入库',
  4305. columns: [
  4306. {
  4307. autoid: 11468,
  4308. tablekey: 'table_pcweb_stock_aduit',
  4309. columnfield: 'applystatus',
  4310. columntitle: '状态',
  4311. columnwidth: '0',
  4312. orderindex: 10,
  4313. isshow: 1,
  4314. aligntype: 1,
  4315. formattertype: '',
  4316. formatterstring: '',
  4317. remark: 'applystatus',
  4318. needsummary: 0,
  4319. summarytype: 0,
  4320. groupname: ''
  4321. },
  4322. {
  4323. autoid: 11469,
  4324. tablekey: 'table_pcweb_stock_aduit',
  4325. columnfield: 'inouttype',
  4326. columntitle: '入库类型',
  4327. columnwidth: '0',
  4328. orderindex: 20,
  4329. isshow: 1,
  4330. aligntype: 1,
  4331. formattertype: '',
  4332. formatterstring: '',
  4333. remark: 'inouttype',
  4334. needsummary: 0,
  4335. summarytype: 0,
  4336. groupname: ''
  4337. },
  4338. {
  4339. autoid: 11470,
  4340. tablekey: 'table_pcweb_stock_aduit',
  4341. columnfield: 'deliverygoodsname',
  4342. columntitle: '现货品种',
  4343. columnwidth: '0',
  4344. orderindex: 30,
  4345. isshow: 1,
  4346. aligntype: 1,
  4347. formattertype: '',
  4348. formatterstring: '',
  4349. remark: 'deliverygoodsname',
  4350. needsummary: 0,
  4351. summarytype: 0,
  4352. groupname: ''
  4353. },
  4354. {
  4355. autoid: 11471,
  4356. tablekey: 'table_pcweb_stock_aduit',
  4357. columnfield: 'wrstandardname',
  4358. columntitle: '品类',
  4359. columnwidth: '0',
  4360. orderindex: 40,
  4361. isshow: 1,
  4362. aligntype: 1,
  4363. formattertype: '',
  4364. formatterstring: '',
  4365. remark: 'wrstandardname',
  4366. needsummary: 0,
  4367. summarytype: 0,
  4368. groupname: ''
  4369. },
  4370. {
  4371. autoid: 11472,
  4372. tablekey: 'table_pcweb_stock_aduit',
  4373. columnfield: 'brandname',
  4374. columntitle: '品牌',
  4375. columnwidth: '0',
  4376. orderindex: 50,
  4377. isshow: 1,
  4378. aligntype: 1,
  4379. formattertype: '',
  4380. formatterstring: '',
  4381. remark: 'brandname',
  4382. needsummary: 0,
  4383. summarytype: 0,
  4384. groupname: ''
  4385. },
  4386. {
  4387. autoid: 11473,
  4388. tablekey: 'table_pcweb_stock_aduit',
  4389. columnfield: 'warehousename',
  4390. columntitle: '仓库',
  4391. columnwidth: '0',
  4392. orderindex: 60,
  4393. isshow: 1,
  4394. aligntype: 1,
  4395. formattertype: '',
  4396. formatterstring: '',
  4397. remark: 'warehousename',
  4398. needsummary: 0,
  4399. summarytype: 0,
  4400. groupname: ''
  4401. },
  4402. {
  4403. autoid: 11474,
  4404. tablekey: 'table_pcweb_stock_aduit',
  4405. columnfield: 'contracttype',
  4406. columntitle: '合同类型',
  4407. columnwidth: '0',
  4408. orderindex: 70,
  4409. isshow: 1,
  4410. aligntype: 1,
  4411. formattertype: '',
  4412. formatterstring: '',
  4413. remark: 'contracttype',
  4414. needsummary: 0,
  4415. summarytype: 0,
  4416. groupname: ''
  4417. },
  4418. {
  4419. autoid: 11475,
  4420. tablekey: 'table_pcweb_stock_aduit',
  4421. columnfield: 'buynicknameOrsellusername',
  4422. columntitle: '对手方',
  4423. columnwidth: '0',
  4424. orderindex: 80,
  4425. isshow: 1,
  4426. aligntype: 1,
  4427. formattertype: '',
  4428. formatterstring: '',
  4429. remark: 'buynicknameOrsellusername',
  4430. needsummary: 0,
  4431. summarytype: 0,
  4432. groupname: ''
  4433. },
  4434. {
  4435. autoid: 11476,
  4436. tablekey: 'table_pcweb_stock_aduit',
  4437. columnfield: 'contractno',
  4438. columntitle: '合同编号',
  4439. columnwidth: '0',
  4440. orderindex: 90,
  4441. isshow: 1,
  4442. aligntype: 1,
  4443. formattertype: '',
  4444. formatterstring: '',
  4445. remark: 'contractno',
  4446. needsummary: 0,
  4447. summarytype: 0,
  4448. groupname: ''
  4449. },
  4450. {
  4451. autoid: 11477,
  4452. tablekey: 'table_pcweb_stock_aduit',
  4453. columnfield: 'pricetype',
  4454. columntitle: '点价类型',
  4455. columnwidth: '0',
  4456. orderindex: 100,
  4457. isshow: 1,
  4458. aligntype: 1,
  4459. formattertype: '',
  4460. formatterstring: '',
  4461. remark: 'pricetype',
  4462. needsummary: 0,
  4463. summarytype: 0,
  4464. groupname: ''
  4465. },
  4466. {
  4467. autoid: 11478,
  4468. tablekey: 'table_pcweb_stock_aduit',
  4469. columnfield: 'audittime',
  4470. columntitle: '登记时间',
  4471. columnwidth: '0',
  4472. orderindex: 110,
  4473. isshow: 1,
  4474. aligntype: 1,
  4475. formattertype: '',
  4476. formatterstring: '',
  4477. remark: 'audittime',
  4478. needsummary: 0,
  4479. summarytype: 0,
  4480. groupname: ''
  4481. },
  4482. {
  4483. autoid: 11479,
  4484. tablekey: 'table_pcweb_stock_aduit',
  4485. columnfield: 'auditname',
  4486. columntitle: '登记人',
  4487. columnwidth: '0',
  4488. orderindex: 120,
  4489. isshow: 1,
  4490. aligntype: 1,
  4491. formattertype: '',
  4492. formatterstring: '',
  4493. remark: 'auditname',
  4494. needsummary: 0,
  4495. summarytype: 0,
  4496. groupname: ''
  4497. }
  4498. ]
  4499. },
  4500. {
  4501. tablekey: 'table_pcweb_stock_aduit_out',
  4502. tabletype: 2,
  4503. tablename: '库存审核-出库',
  4504. tabelmenu: '',
  4505. remark: 'web端-库存审核-出库',
  4506. columns: [
  4507. {
  4508. autoid: 11480,
  4509. tablekey: 'table_pcweb_stock_aduit_out',
  4510. columnfield: 'applystatus',
  4511. columntitle: '状态',
  4512. columnwidth: '0',
  4513. orderindex: 10,
  4514. isshow: 1,
  4515. aligntype: 1,
  4516. formattertype: '',
  4517. formatterstring: '',
  4518. remark: 'applystatus',
  4519. needsummary: 0,
  4520. summarytype: 0,
  4521. groupname: ''
  4522. },
  4523. {
  4524. autoid: 11481,
  4525. tablekey: 'table_pcweb_stock_aduit_out',
  4526. columnfield: 'inouttype',
  4527. columntitle: '出库类型',
  4528. columnwidth: '0',
  4529. orderindex: 20,
  4530. isshow: 1,
  4531. aligntype: 1,
  4532. formattertype: '',
  4533. formatterstring: '',
  4534. remark: 'inouttype',
  4535. needsummary: 0,
  4536. summarytype: 0,
  4537. groupname: ''
  4538. },
  4539. {
  4540. autoid: 11482,
  4541. tablekey: 'table_pcweb_stock_aduit_out',
  4542. columnfield: 'deliverygoodsname',
  4543. columntitle: '现货品种',
  4544. columnwidth: '0',
  4545. orderindex: 30,
  4546. isshow: 1,
  4547. aligntype: 1,
  4548. formattertype: '',
  4549. formatterstring: '',
  4550. remark: 'deliverygoodsname',
  4551. needsummary: 0,
  4552. summarytype: 0,
  4553. groupname: ''
  4554. },
  4555. {
  4556. autoid: 11483,
  4557. tablekey: 'table_pcweb_stock_aduit_out',
  4558. columnfield: 'wrstandardname',
  4559. columntitle: '品类',
  4560. columnwidth: '0',
  4561. orderindex: 40,
  4562. isshow: 1,
  4563. aligntype: 1,
  4564. formattertype: '',
  4565. formatterstring: '',
  4566. remark: 'wrstandardname',
  4567. needsummary: 0,
  4568. summarytype: 0,
  4569. groupname: ''
  4570. },
  4571. {
  4572. autoid: 11484,
  4573. tablekey: 'table_pcweb_stock_aduit_out',
  4574. columnfield: 'brandname',
  4575. columntitle: '品牌',
  4576. columnwidth: '0',
  4577. orderindex: 50,
  4578. isshow: 1,
  4579. aligntype: 1,
  4580. formattertype: '',
  4581. formatterstring: '',
  4582. remark: 'brandname',
  4583. needsummary: 0,
  4584. summarytype: 0,
  4585. groupname: ''
  4586. },
  4587. {
  4588. autoid: 11485,
  4589. tablekey: 'table_pcweb_stock_aduit_out',
  4590. columnfield: 'warehousename',
  4591. columntitle: '仓库',
  4592. columnwidth: '0',
  4593. orderindex: 60,
  4594. isshow: 1,
  4595. aligntype: 1,
  4596. formattertype: '',
  4597. formatterstring: '',
  4598. remark: 'warehousename',
  4599. needsummary: 0,
  4600. summarytype: 0,
  4601. groupname: ''
  4602. },
  4603. {
  4604. autoid: 11486,
  4605. tablekey: 'table_pcweb_stock_aduit_out',
  4606. columnfield: 'contracttype',
  4607. columntitle: '合同类型',
  4608. columnwidth: '0',
  4609. orderindex: 70,
  4610. isshow: 1,
  4611. aligntype: 1,
  4612. formattertype: '',
  4613. formatterstring: '',
  4614. remark: 'contracttype',
  4615. needsummary: 0,
  4616. summarytype: 0,
  4617. groupname: ''
  4618. },
  4619. {
  4620. autoid: 11487,
  4621. tablekey: 'table_pcweb_stock_aduit_out',
  4622. columnfield: 'buynicknameOrsellusername',
  4623. columntitle: '对手方',
  4624. columnwidth: '0',
  4625. orderindex: 80,
  4626. isshow: 1,
  4627. aligntype: 1,
  4628. formattertype: '',
  4629. formatterstring: '',
  4630. remark: 'buynicknameOrsellusername',
  4631. needsummary: 0,
  4632. summarytype: 0,
  4633. groupname: ''
  4634. },
  4635. {
  4636. autoid: 11488,
  4637. tablekey: 'table_pcweb_stock_aduit_out',
  4638. columnfield: 'contractno',
  4639. columntitle: '合同编号',
  4640. columnwidth: '0',
  4641. orderindex: 90,
  4642. isshow: 1,
  4643. aligntype: 1,
  4644. formattertype: '',
  4645. formatterstring: '',
  4646. remark: 'contractno',
  4647. needsummary: 0,
  4648. summarytype: 0,
  4649. groupname: ''
  4650. },
  4651. {
  4652. autoid: 11489,
  4653. tablekey: 'table_pcweb_stock_aduit_out',
  4654. columnfield: 'pricetype',
  4655. columntitle: '点价类型',
  4656. columnwidth: '0',
  4657. orderindex: 100,
  4658. isshow: 1,
  4659. aligntype: 1,
  4660. formattertype: '',
  4661. formatterstring: '',
  4662. remark: 'pricetype',
  4663. needsummary: 0,
  4664. summarytype: 0,
  4665. groupname: ''
  4666. },
  4667. {
  4668. autoid: 11490,
  4669. tablekey: 'table_pcweb_stock_aduit_out',
  4670. columnfield: 'audittime',
  4671. columntitle: '登记时间',
  4672. columnwidth: '0',
  4673. orderindex: 110,
  4674. isshow: 1,
  4675. aligntype: 1,
  4676. formattertype: '',
  4677. formatterstring: '',
  4678. remark: 'audittime',
  4679. needsummary: 0,
  4680. summarytype: 0,
  4681. groupname: ''
  4682. },
  4683. {
  4684. autoid: 11491,
  4685. tablekey: 'table_pcweb_stock_aduit_out',
  4686. columnfield: 'auditname',
  4687. columntitle: '登记人',
  4688. columnwidth: '0',
  4689. orderindex: 120,
  4690. isshow: 1,
  4691. aligntype: 1,
  4692. formattertype: '',
  4693. formatterstring: '',
  4694. remark: 'auditname',
  4695. needsummary: 0,
  4696. summarytype: 0,
  4697. groupname: ''
  4698. }
  4699. ]
  4700. },
  4701. {
  4702. tablekey: 'table_pcweb_stock_manage_current',
  4703. tabletype: 2,
  4704. tablename: '库存管理-当前库存',
  4705. tabelmenu: '',
  4706. remark: '手机端-库存管理-当前库存',
  4707. columns: [
  4708. {
  4709. autoid: 11492,
  4710. tablekey: 'table_pcweb_stock_manage_current',
  4711. columnfield: 'userinfotype',
  4712. columntitle: '现货品种',
  4713. columnwidth: '0',
  4714. orderindex: 10,
  4715. isshow: 1,
  4716. aligntype: 1,
  4717. formattertype: '',
  4718. formatterstring: '',
  4719. remark: 'userinfotype',
  4720. needsummary: 0,
  4721. summarytype: 0,
  4722. groupname: ''
  4723. },
  4724. {
  4725. autoid: 11493,
  4726. tablekey: 'table_pcweb_stock_manage_current',
  4727. columnfield: 'userinfotype',
  4728. columntitle: '品类',
  4729. columnwidth: '0',
  4730. orderindex: 20,
  4731. isshow: 1,
  4732. aligntype: 1,
  4733. formattertype: '',
  4734. formatterstring: '',
  4735. remark: 'userinfotype',
  4736. needsummary: 0,
  4737. summarytype: 0,
  4738. groupname: ''
  4739. },
  4740. {
  4741. autoid: 11494,
  4742. tablekey: 'table_pcweb_stock_manage_current',
  4743. columnfield: 'userinfotype',
  4744. columntitle: '品牌',
  4745. columnwidth: '0',
  4746. orderindex: 30,
  4747. isshow: 1,
  4748. aligntype: 1,
  4749. formattertype: '',
  4750. formatterstring: '',
  4751. remark: 'userinfotype',
  4752. needsummary: 0,
  4753. summarytype: 0,
  4754. groupname: ''
  4755. },
  4756. {
  4757. autoid: 11495,
  4758. tablekey: 'table_pcweb_stock_manage_current',
  4759. columnfield: 'userinfotype',
  4760. columntitle: '仓库',
  4761. columnwidth: '0',
  4762. orderindex: 40,
  4763. isshow: 1,
  4764. aligntype: 1,
  4765. formattertype: '',
  4766. formatterstring: '',
  4767. remark: 'userinfotype',
  4768. needsummary: 0,
  4769. summarytype: 0,
  4770. groupname: ''
  4771. },
  4772. {
  4773. autoid: 11496,
  4774. tablekey: 'table_pcweb_stock_manage_current',
  4775. columnfield: 'userinfotype',
  4776. columntitle: '昨日量',
  4777. columnwidth: '0',
  4778. orderindex: 50,
  4779. isshow: 1,
  4780. aligntype: 1,
  4781. formattertype: '',
  4782. formatterstring: '',
  4783. remark: 'userinfotype',
  4784. needsummary: 0,
  4785. summarytype: 0,
  4786. groupname: ''
  4787. },
  4788. {
  4789. autoid: 11497,
  4790. tablekey: 'table_pcweb_stock_manage_current',
  4791. columnfield: 'userinfotype',
  4792. columntitle: '今日量 ',
  4793. columnwidth: '0',
  4794. orderindex: 60,
  4795. isshow: 1,
  4796. aligntype: 1,
  4797. formattertype: '',
  4798. formatterstring: '',
  4799. remark: 'userinfotype',
  4800. needsummary: 0,
  4801. summarytype: 0,
  4802. groupname: ''
  4803. },
  4804. {
  4805. autoid: 11498,
  4806. tablekey: 'table_pcweb_stock_manage_current',
  4807. columnfield: 'userinfotype',
  4808. columntitle: '今日入库量',
  4809. columnwidth: '0',
  4810. orderindex: 70,
  4811. isshow: 1,
  4812. aligntype: 1,
  4813. formattertype: '',
  4814. formatterstring: '',
  4815. remark: 'userinfotype',
  4816. needsummary: 0,
  4817. summarytype: 0,
  4818. groupname: ''
  4819. },
  4820. {
  4821. autoid: 11499,
  4822. tablekey: 'table_pcweb_stock_manage_current',
  4823. columnfield: 'userinfotype',
  4824. columntitle: '今日出库量',
  4825. columnwidth: '0',
  4826. orderindex: 80,
  4827. isshow: 1,
  4828. aligntype: 1,
  4829. formattertype: '',
  4830. formatterstring: '',
  4831. remark: 'userinfotype',
  4832. needsummary: 0,
  4833. summarytype: 0,
  4834. groupname: ''
  4835. }
  4836. ]
  4837. },
  4838. {
  4839. tablekey: 'table_pcweb_stock_manage_applylog',
  4840. tabletype: 2,
  4841. tablename: '库存管理-当前库存',
  4842. tabelmenu: '',
  4843. remark: 'web端-库存管理-当前库存',
  4844. columns: [
  4845. {
  4846. autoid: 11507,
  4847. tablekey: 'table_pcweb_stock_manage_applylog',
  4848. columnfield: 'userinfotype',
  4849. columntitle: '品类',
  4850. columnwidth: '0',
  4851. orderindex: 60,
  4852. isshow: 1,
  4853. aligntype: 1,
  4854. formattertype: '',
  4855. formatterstring: '',
  4856. remark: 'userinfotype',
  4857. needsummary: 0,
  4858. summarytype: 0,
  4859. groupname: ''
  4860. },
  4861. {
  4862. autoid: 11508,
  4863. tablekey: 'table_pcweb_stock_manage_applylog',
  4864. columnfield: 'userinfotype',
  4865. columntitle: '品牌',
  4866. columnwidth: '0',
  4867. orderindex: 60,
  4868. isshow: 1,
  4869. aligntype: 1,
  4870. formattertype: '',
  4871. formatterstring: '',
  4872. remark: 'userinfotype',
  4873. needsummary: 0,
  4874. summarytype: 0,
  4875. groupname: ''
  4876. },
  4877. {
  4878. autoid: 11509,
  4879. tablekey: 'table_pcweb_stock_manage_applylog',
  4880. columnfield: 'userinfotype',
  4881. columntitle: '仓库',
  4882. columnwidth: '0',
  4883. orderindex: 70,
  4884. isshow: 1,
  4885. aligntype: 1,
  4886. formattertype: '',
  4887. formatterstring: '',
  4888. remark: 'userinfotype',
  4889. needsummary: 0,
  4890. summarytype: 0,
  4891. groupname: ''
  4892. },
  4893. {
  4894. autoid: 11510,
  4895. tablekey: 'table_pcweb_stock_manage_applylog',
  4896. columnfield: 'userinfotype',
  4897. columntitle: '申请人',
  4898. columnwidth: '0',
  4899. orderindex: 80,
  4900. isshow: 1,
  4901. aligntype: 1,
  4902. formattertype: '',
  4903. formatterstring: '',
  4904. remark: 'userinfotype',
  4905. needsummary: 0,
  4906. summarytype: 0,
  4907. groupname: ''
  4908. },
  4909. {
  4910. autoid: 11511,
  4911. tablekey: 'table_pcweb_stock_manage_applylog',
  4912. columnfield: 'userinfotype',
  4913. columntitle: '审核人',
  4914. columnwidth: '0',
  4915. orderindex: 90,
  4916. isshow: 1,
  4917. aligntype: 1,
  4918. formattertype: '',
  4919. formatterstring: '',
  4920. remark: 'userinfotype',
  4921. needsummary: 0,
  4922. summarytype: 0,
  4923. groupname: ''
  4924. },
  4925. {
  4926. autoid: 11500,
  4927. tablekey: 'table_pcweb_stock_manage_applylog',
  4928. columnfield: 'userinfotype',
  4929. columntitle: '登记时间',
  4930. columnwidth: '0',
  4931. orderindex: 10,
  4932. isshow: 1,
  4933. aligntype: 1,
  4934. formattertype: '',
  4935. formatterstring: '',
  4936. remark: 'userinfotype',
  4937. needsummary: 0,
  4938. summarytype: 0,
  4939. groupname: ''
  4940. },
  4941. {
  4942. autoid: 11501,
  4943. tablekey: 'table_pcweb_stock_manage_applylog',
  4944. columnfield: 'userinfotype',
  4945. columntitle: '审核时间',
  4946. columnwidth: '0',
  4947. orderindex: 10,
  4948. isshow: 1,
  4949. aligntype: 1,
  4950. formattertype: '',
  4951. formatterstring: '',
  4952. remark: 'userinfotype',
  4953. needsummary: 0,
  4954. summarytype: 0,
  4955. groupname: ''
  4956. },
  4957. {
  4958. autoid: 11502,
  4959. tablekey: 'table_pcweb_stock_manage_applylog',
  4960. columnfield: 'userinfotype',
  4961. columntitle: '现货品种',
  4962. columnwidth: '0',
  4963. orderindex: 20,
  4964. isshow: 1,
  4965. aligntype: 1,
  4966. formattertype: '',
  4967. formatterstring: '',
  4968. remark: 'userinfotype',
  4969. needsummary: 0,
  4970. summarytype: 0,
  4971. groupname: ''
  4972. },
  4973. {
  4974. autoid: 11503,
  4975. tablekey: 'table_pcweb_stock_manage_applylog',
  4976. columnfield: 'userinfotype',
  4977. columntitle: '类型',
  4978. columnwidth: '0',
  4979. orderindex: 30,
  4980. isshow: 1,
  4981. aligntype: 1,
  4982. formattertype: '',
  4983. formatterstring: '',
  4984. remark: 'userinfotype',
  4985. needsummary: 0,
  4986. summarytype: 0,
  4987. groupname: ''
  4988. },
  4989. {
  4990. autoid: 11504,
  4991. tablekey: 'table_pcweb_stock_manage_applylog',
  4992. columnfield: 'userinfotype',
  4993. columntitle: '数量',
  4994. columnwidth: '0',
  4995. orderindex: 30,
  4996. isshow: 1,
  4997. aligntype: 1,
  4998. formattertype: '',
  4999. formatterstring: '',
  5000. remark: 'userinfotype',
  5001. needsummary: 0,
  5002. summarytype: 0,
  5003. groupname: ''
  5004. },
  5005. {
  5006. autoid: 11505,
  5007. tablekey: 'table_pcweb_stock_manage_applylog',
  5008. columnfield: 'userinfotype',
  5009. columntitle: '状态',
  5010. columnwidth: '0',
  5011. orderindex: 40,
  5012. isshow: 1,
  5013. aligntype: 1,
  5014. formattertype: '',
  5015. formatterstring: '',
  5016. remark: 'userinfotype',
  5017. needsummary: 0,
  5018. summarytype: 0,
  5019. groupname: ''
  5020. },
  5021. {
  5022. autoid: 11506,
  5023. tablekey: 'table_pcweb_stock_manage_applylog',
  5024. columnfield: 'userinfotype',
  5025. columntitle: '合同编号',
  5026. columnwidth: '0',
  5027. orderindex: 50,
  5028. isshow: 1,
  5029. aligntype: 1,
  5030. formattertype: '',
  5031. formatterstring: '',
  5032. remark: 'userinfotype',
  5033. needsummary: 0,
  5034. summarytype: 0,
  5035. groupname: ''
  5036. }
  5037. ]
  5038. },
  5039. {
  5040. tablekey: 'table_pcweb_hedging_plan',
  5041. tabletype: 2,
  5042. tablename: '业务-套保计划',
  5043. tabelmenu: '',
  5044. remark: 'web端-业务-套保计划',
  5045. columns: [
  5046. {
  5047. autoid: 11512,
  5048. tablekey: 'table_pcweb_hedging_plan',
  5049. columnfield: 'contracttype',
  5050. columntitle: '计划类型',
  5051. columnwidth: '0',
  5052. orderindex: 10,
  5053. isshow: 1,
  5054. aligntype: 1,
  5055. formattertype: '',
  5056. formatterstring: '',
  5057. remark: 'contracttype',
  5058. needsummary: 0,
  5059. summarytype: 0,
  5060. groupname: ''
  5061. },
  5062. {
  5063. autoid: 11513,
  5064. tablekey: 'table_pcweb_hedging_plan',
  5065. columnfield: 'hedgeplanno',
  5066. columntitle: '计划名称',
  5067. columnwidth: '0',
  5068. orderindex: 20,
  5069. isshow: 1,
  5070. aligntype: 1,
  5071. formattertype: '',
  5072. formatterstring: '',
  5073. remark: 'hedgeplanno',
  5074. needsummary: 0,
  5075. summarytype: 0,
  5076. groupname: ''
  5077. },
  5078. {
  5079. autoid: 11514,
  5080. tablekey: 'table_pcweb_hedging_plan',
  5081. columnfield: 'deliverygoodsname',
  5082. columntitle: '现货品种',
  5083. columnwidth: '0',
  5084. orderindex: 30,
  5085. isshow: 1,
  5086. aligntype: 1,
  5087. formattertype: '',
  5088. formatterstring: '',
  5089. remark: 'deliverygoodsname',
  5090. needsummary: 0,
  5091. summarytype: 0,
  5092. groupname: ''
  5093. },
  5094. {
  5095. autoid: 11515,
  5096. tablekey: 'table_pcweb_hedging_plan',
  5097. columnfield: 'convertfactor',
  5098. columntitle: '标仓系数',
  5099. columnwidth: '0',
  5100. orderindex: 40,
  5101. isshow: 1,
  5102. aligntype: 1,
  5103. formattertype: '',
  5104. formatterstring: '',
  5105. remark: 'convertfactor',
  5106. needsummary: 0,
  5107. summarytype: 0,
  5108. groupname: ''
  5109. },
  5110. {
  5111. autoid: 11516,
  5112. tablekey: 'table_pcweb_hedging_plan',
  5113. columnfield: 'planqty',
  5114. columntitle: '计划量',
  5115. columnwidth: '0',
  5116. orderindex: 50,
  5117. isshow: 1,
  5118. aligntype: 1,
  5119. formattertype: '',
  5120. formatterstring: '',
  5121. remark: 'planqty',
  5122. needsummary: 0,
  5123. summarytype: 0,
  5124. groupname: ''
  5125. },
  5126. {
  5127. autoid: 11517,
  5128. tablekey: 'table_pcweb_hedging_plan',
  5129. columnfield: 'hedgeplanstatus',
  5130. columntitle: '状态',
  5131. columnwidth: '0',
  5132. orderindex: 60,
  5133. isshow: 1,
  5134. aligntype: 1,
  5135. formattertype: '',
  5136. formatterstring: '',
  5137. remark: 'hedgeplanstatus',
  5138. needsummary: 0,
  5139. summarytype: 0,
  5140. groupname: ''
  5141. }
  5142. ]
  5143. },
  5144. {
  5145. tablekey: 'table_pcweb_delivery',
  5146. tabletype: 2,
  5147. tablename: '现货合同',
  5148. tabelmenu: '',
  5149. remark: 'web端-现货合同',
  5150. columns: [
  5151. {
  5152. autoid: 11171,
  5153. tablekey: 'table_pcweb_delivery',
  5154. columnfield: 'contracctstatus',
  5155. columntitle: '状态',
  5156. columnwidth: '0',
  5157. orderindex: 10,
  5158. isshow: 1,
  5159. aligntype: 1,
  5160. formattertype: '',
  5161. formatterstring: '',
  5162. remark: 'contracctstatus',
  5163. needsummary: 0,
  5164. summarytype: 0,
  5165. groupname: ''
  5166. },
  5167. {
  5168. autoid: 11172,
  5169. tablekey: 'table_pcweb_delivery',
  5170. columnfield: 'contractno',
  5171. columntitle: '合同编号',
  5172. columnwidth: '0',
  5173. orderindex: 20,
  5174. isshow: 1,
  5175. aligntype: 1,
  5176. formattertype: '',
  5177. formatterstring: '',
  5178. remark: 'contractno',
  5179. needsummary: 0,
  5180. summarytype: 0,
  5181. groupname: ''
  5182. },
  5183. {
  5184. autoid: 11173,
  5185. tablekey: 'table_pcweb_delivery',
  5186. columnfield: 'contracttype',
  5187. columntitle: '类型',
  5188. columnwidth: '0',
  5189. orderindex: 30,
  5190. isshow: 1,
  5191. aligntype: 1,
  5192. formattertype: '',
  5193. formatterstring: '',
  5194. remark: 'contracttype',
  5195. needsummary: 0,
  5196. summarytype: 0,
  5197. groupname: ''
  5198. },
  5199. {
  5200. autoid: 11174,
  5201. tablekey: 'table_pcweb_delivery',
  5202. columnfield: 'negative',
  5203. columntitle: '对手方',
  5204. columnwidth: '0',
  5205. orderindex: 40,
  5206. isshow: 1,
  5207. aligntype: 1,
  5208. formattertype: '',
  5209. formatterstring: '',
  5210. remark: 'negative',
  5211. needsummary: 0,
  5212. summarytype: 0,
  5213. groupname: ''
  5214. },
  5215. {
  5216. autoid: 11175,
  5217. tablekey: 'table_pcweb_delivery',
  5218. columnfield: 'qty',
  5219. columntitle: '合同量',
  5220. columnwidth: '0',
  5221. orderindex: 50,
  5222. isshow: 1,
  5223. aligntype: 1,
  5224. formattertype: '',
  5225. formatterstring: '',
  5226. remark: 'qty',
  5227. needsummary: 0,
  5228. summarytype: 0,
  5229. groupname: ''
  5230. },
  5231. {
  5232. autoid: 11176,
  5233. tablekey: 'table_pcweb_delivery',
  5234. columnfield: 'deliverygoodsname',
  5235. columntitle: '现货品种',
  5236. columnwidth: '0',
  5237. orderindex: 60,
  5238. isshow: 1,
  5239. aligntype: 1,
  5240. formattertype: '',
  5241. formatterstring: '',
  5242. remark: 'deliverygoodsname',
  5243. needsummary: 0,
  5244. summarytype: 0,
  5245. groupname: ''
  5246. },
  5247. {
  5248. autoid: 11177,
  5249. tablekey: 'table_pcweb_delivery',
  5250. columnfield: 'wrstandardname',
  5251. columntitle: '品类',
  5252. columnwidth: '0',
  5253. orderindex: 70,
  5254. isshow: 1,
  5255. aligntype: 1,
  5256. formattertype: '',
  5257. formatterstring: '',
  5258. remark: 'wrstandardname',
  5259. needsummary: 0,
  5260. summarytype: 0,
  5261. groupname: ''
  5262. },
  5263. {
  5264. autoid: 11178,
  5265. tablekey: 'table_pcweb_delivery',
  5266. columnfield: 'biztype',
  5267. columntitle: '业务类型',
  5268. columnwidth: '0',
  5269. orderindex: 80,
  5270. isshow: 1,
  5271. aligntype: 1,
  5272. formattertype: '',
  5273. formatterstring: '',
  5274. remark: 'biztype',
  5275. needsummary: 0,
  5276. summarytype: 0,
  5277. groupname: ''
  5278. },
  5279. {
  5280. autoid: 11179,
  5281. tablekey: 'table_pcweb_delivery',
  5282. columnfield: 'convertfactor',
  5283. columntitle: '标仓系数',
  5284. columnwidth: '0',
  5285. orderindex: 90,
  5286. isshow: 1,
  5287. aligntype: 1,
  5288. formattertype: '',
  5289. formatterstring: '',
  5290. remark: 'convertfactor',
  5291. needsummary: 0,
  5292. summarytype: 0,
  5293. groupname: ''
  5294. },
  5295. {
  5296. autoid: 11180,
  5297. tablekey: 'table_pcweb_delivery',
  5298. columnfield: 'pricetype',
  5299. columntitle: '定价类型',
  5300. columnwidth: '0',
  5301. orderindex: 100,
  5302. isshow: 1,
  5303. aligntype: 1,
  5304. formattertype: '',
  5305. formatterstring: '',
  5306. remark: 'pricetype',
  5307. needsummary: 0,
  5308. summarytype: 0,
  5309. groupname: ''
  5310. },
  5311. {
  5312. autoid: 11181,
  5313. tablekey: 'table_pcweb_delivery',
  5314. columnfield: 'goodscode',
  5315. columntitle: '点价合约',
  5316. columnwidth: '0',
  5317. orderindex: 110,
  5318. isshow: 1,
  5319. aligntype: 1,
  5320. formattertype: '',
  5321. formatterstring: '',
  5322. remark: 'goodscode',
  5323. needsummary: 0,
  5324. summarytype: 0,
  5325. groupname: ''
  5326. },
  5327. {
  5328. autoid: 11182,
  5329. tablekey: 'table_pcweb_delivery',
  5330. columnfield: 'price',
  5331. columntitle: '价格',
  5332. columnwidth: '0',
  5333. orderindex: 120,
  5334. isshow: 1,
  5335. aligntype: 1,
  5336. formattertype: '',
  5337. formatterstring: '',
  5338. remark: 'price',
  5339. needsummary: 0,
  5340. summarytype: 0,
  5341. groupname: ''
  5342. },
  5343. {
  5344. autoid: 11183,
  5345. tablekey: 'table_pcweb_delivery',
  5346. columnfield: 'pricemove',
  5347. columntitle: '升贴水',
  5348. columnwidth: '0',
  5349. orderindex: 130,
  5350. isshow: 1,
  5351. aligntype: 1,
  5352. formattertype: '',
  5353. formatterstring: '',
  5354. remark: 'pricemove',
  5355. needsummary: 0,
  5356. summarytype: 0,
  5357. groupname: ''
  5358. },
  5359. {
  5360. autoid: 11184,
  5361. tablekey: 'table_pcweb_delivery',
  5362. columnfield: 'amount',
  5363. columntitle: '金额',
  5364. columnwidth: '0',
  5365. orderindex: 140,
  5366. isshow: 1,
  5367. aligntype: 1,
  5368. formattertype: '',
  5369. formatterstring: '',
  5370. remark: 'amount',
  5371. needsummary: 0,
  5372. summarytype: 0,
  5373. groupname: ''
  5374. },
  5375. {
  5376. autoid: 11185,
  5377. tablekey: 'table_pcweb_delivery',
  5378. columnfield: 'margin',
  5379. columntitle: '保证金',
  5380. columnwidth: '0',
  5381. orderindex: 150,
  5382. isshow: 1,
  5383. aligntype: 1,
  5384. formattertype: '',
  5385. formatterstring: '',
  5386. remark: 'margin',
  5387. needsummary: 0,
  5388. summarytype: 0,
  5389. groupname: ''
  5390. },
  5391. {
  5392. autoid: 11186,
  5393. tablekey: 'table_pcweb_delivery',
  5394. columnfield: 'date',
  5395. columntitle: '点价期',
  5396. columnwidth: '0',
  5397. orderindex: 160,
  5398. isshow: 1,
  5399. aligntype: 1,
  5400. formattertype: '',
  5401. formatterstring: '',
  5402. remark: 'date',
  5403. needsummary: 0,
  5404. summarytype: 0,
  5405. groupname: ''
  5406. },
  5407. {
  5408. autoid: 11187,
  5409. tablekey: 'table_pcweb_delivery',
  5410. columnfield: 'deliverydate',
  5411. columntitle: '交收期',
  5412. columnwidth: '0',
  5413. orderindex: 170,
  5414. isshow: 1,
  5415. aligntype: 1,
  5416. formattertype: '',
  5417. formatterstring: '',
  5418. remark: 'deliverydate',
  5419. needsummary: 0,
  5420. summarytype: 0,
  5421. groupname: ''
  5422. },
  5423. {
  5424. autoid: 11188,
  5425. tablekey: 'table_pcweb_delivery',
  5426. columnfield: 'saleuserlogincode',
  5427. columntitle: '业务员',
  5428. columnwidth: '0',
  5429. orderindex: 180,
  5430. isshow: 1,
  5431. aligntype: 1,
  5432. formattertype: '',
  5433. formatterstring: '',
  5434. remark: 'saleuserlogincode',
  5435. needsummary: 0,
  5436. summarytype: 0,
  5437. groupname: ''
  5438. },
  5439. {
  5440. autoid: 11189,
  5441. tablekey: 'table_pcweb_delivery',
  5442. columnfield: 'meruserlogincode',
  5443. columntitle: '跟单员',
  5444. columnwidth: '0',
  5445. orderindex: 190,
  5446. isshow: 1,
  5447. aligntype: 1,
  5448. formattertype: '',
  5449. formatterstring: '',
  5450. remark: 'meruserlogincode',
  5451. needsummary: 0,
  5452. summarytype: 0,
  5453. groupname: ''
  5454. }
  5455. ]
  5456. },
  5457. {
  5458. tablekey: 'table_pcweb_userinfo',
  5459. tabletype: 2,
  5460. tablename: '客户资料',
  5461. tabelmenu: '',
  5462. remark: 'web端-客户资料',
  5463. columns: [
  5464. {
  5465. autoid: 11190,
  5466. tablekey: 'table_pcweb_userinfo',
  5467. columnfield: 'status',
  5468. columntitle: '状态',
  5469. columnwidth: '0',
  5470. orderindex: 10,
  5471. isshow: 1,
  5472. aligntype: 1,
  5473. formattertype: '',
  5474. formatterstring: '',
  5475. remark: 'status',
  5476. needsummary: 0,
  5477. summarytype: 0,
  5478. groupname: ''
  5479. },
  5480. {
  5481. autoid: 11191,
  5482. tablekey: 'table_pcweb_userinfo',
  5483. columnfield: 'userinfotype',
  5484. columntitle: '客户类型',
  5485. columnwidth: '0',
  5486. orderindex: 20,
  5487. isshow: 1,
  5488. aligntype: 1,
  5489. formattertype: '',
  5490. formatterstring: '',
  5491. remark: 'userinfotype',
  5492. needsummary: 0,
  5493. summarytype: 0,
  5494. groupname: ''
  5495. },
  5496. {
  5497. autoid: 11192,
  5498. tablekey: 'table_pcweb_userinfo',
  5499. columnfield: 'nickname',
  5500. columntitle: '客户简称',
  5501. columnwidth: '0',
  5502. orderindex: 30,
  5503. isshow: 1,
  5504. aligntype: 1,
  5505. formattertype: '',
  5506. formatterstring: '',
  5507. remark: 'nickname',
  5508. needsummary: 0,
  5509. summarytype: 0,
  5510. groupname: ''
  5511. },
  5512. {
  5513. autoid: 11193,
  5514. tablekey: 'table_pcweb_userinfo',
  5515. columnfield: 'customername',
  5516. columntitle: '客户名称',
  5517. columnwidth: '0',
  5518. orderindex: 40,
  5519. isshow: 1,
  5520. aligntype: 1,
  5521. formattertype: '',
  5522. formatterstring: '',
  5523. remark: 'customername',
  5524. needsummary: 0,
  5525. summarytype: 0,
  5526. groupname: ''
  5527. },
  5528. {
  5529. autoid: 11194,
  5530. tablekey: 'table_pcweb_userinfo',
  5531. columnfield: 'cardtype',
  5532. columntitle: '证件类型',
  5533. columnwidth: '0',
  5534. orderindex: 50,
  5535. isshow: 1,
  5536. aligntype: 1,
  5537. formattertype: '',
  5538. formatterstring: '',
  5539. remark: 'cardtype',
  5540. needsummary: 0,
  5541. summarytype: 0,
  5542. groupname: ''
  5543. },
  5544. {
  5545. autoid: 11195,
  5546. tablekey: 'table_pcweb_userinfo',
  5547. columnfield: 'cardnum',
  5548. columntitle: '证件号码',
  5549. columnwidth: '0',
  5550. orderindex: 60,
  5551. isshow: 1,
  5552. aligntype: 1,
  5553. formattertype: '',
  5554. formatterstring: '',
  5555. remark: 'cardnum',
  5556. needsummary: 0,
  5557. summarytype: 0,
  5558. groupname: ''
  5559. },
  5560. {
  5561. autoid: 11196,
  5562. tablekey: 'table_pcweb_userinfo',
  5563. columnfield: 'contactname',
  5564. columntitle: '联系人',
  5565. columnwidth: '0',
  5566. orderindex: 70,
  5567. isshow: 1,
  5568. aligntype: 1,
  5569. formattertype: '',
  5570. formatterstring: '',
  5571. remark: 'contactname',
  5572. needsummary: 0,
  5573. summarytype: 0,
  5574. groupname: ''
  5575. },
  5576. {
  5577. autoid: 11197,
  5578. tablekey: 'table_pcweb_userinfo',
  5579. columnfield: 'mobile',
  5580. columntitle: '手机号码',
  5581. columnwidth: '0',
  5582. orderindex: 80,
  5583. isshow: 1,
  5584. aligntype: 1,
  5585. formattertype: '',
  5586. formatterstring: '',
  5587. remark: 'mobile',
  5588. needsummary: 0,
  5589. summarytype: 0,
  5590. groupname: ''
  5591. },
  5592. {
  5593. autoid: 11198,
  5594. tablekey: 'table_pcweb_userinfo',
  5595. columnfield: 'email',
  5596. columntitle: '邮箱',
  5597. columnwidth: '0',
  5598. orderindex: 90,
  5599. isshow: 1,
  5600. aligntype: 1,
  5601. formattertype: '',
  5602. formatterstring: '',
  5603. remark: 'email',
  5604. needsummary: 0,
  5605. summarytype: 0,
  5606. groupname: ''
  5607. },
  5608. {
  5609. autoid: 11199,
  5610. tablekey: 'table_pcweb_userinfo',
  5611. columnfield: 'legalpersonname',
  5612. columntitle: '法定代表人',
  5613. columnwidth: '0',
  5614. orderindex: 100,
  5615. isshow: 1,
  5616. aligntype: 1,
  5617. formattertype: '',
  5618. formatterstring: '',
  5619. remark: 'legalpersonname',
  5620. needsummary: 0,
  5621. summarytype: 0,
  5622. groupname: ''
  5623. },
  5624. {
  5625. autoid: 11200,
  5626. tablekey: 'table_pcweb_userinfo',
  5627. columnfield: 'taxpayernum',
  5628. columntitle: '纳税人识别号',
  5629. columnwidth: '0',
  5630. orderindex: 110,
  5631. isshow: 1,
  5632. aligntype: 1,
  5633. formattertype: '',
  5634. formatterstring: '',
  5635. remark: 'taxpayernum',
  5636. needsummary: 0,
  5637. summarytype: 0,
  5638. groupname: ''
  5639. },
  5640. {
  5641. autoid: 11201,
  5642. tablekey: 'table_pcweb_userinfo',
  5643. columnfield: 'cardphotourl',
  5644. columntitle: '证件照',
  5645. columnwidth: '0',
  5646. orderindex: 120,
  5647. isshow: 1,
  5648. aligntype: 1,
  5649. formattertype: '',
  5650. formatterstring: '',
  5651. remark: 'cardphotourl',
  5652. needsummary: 0,
  5653. summarytype: 0,
  5654. groupname: ''
  5655. },
  5656. {
  5657. autoid: 11202,
  5658. tablekey: 'table_pcweb_userinfo',
  5659. columnfield: 'address',
  5660. columntitle: '地址',
  5661. columnwidth: '0',
  5662. orderindex: 130,
  5663. isshow: 1,
  5664. aligntype: 1,
  5665. formattertype: '',
  5666. formatterstring: '',
  5667. remark: 'address',
  5668. needsummary: 0,
  5669. summarytype: 0,
  5670. groupname: ''
  5671. },
  5672. {
  5673. autoid: 11203,
  5674. tablekey: 'table_pcweb_userinfo',
  5675. columnfield: 'remark',
  5676. columntitle: '备注',
  5677. columnwidth: '0',
  5678. orderindex: 140,
  5679. isshow: 1,
  5680. aligntype: 1,
  5681. formattertype: '',
  5682. formatterstring: '',
  5683. remark: 'remark',
  5684. needsummary: 0,
  5685. summarytype: 0,
  5686. groupname: ''
  5687. }
  5688. ]
  5689. },
  5690. {
  5691. tablekey: 'table_pcweb_current_inventory',
  5692. tabletype: 2,
  5693. tablename: '库存查询-当前库存',
  5694. tabelmenu: '',
  5695. remark: 'web端-库存查询-当前库存',
  5696. columns: [
  5697. {
  5698. autoid: 11518,
  5699. tablekey: 'table_pcweb_current_inventory',
  5700. columnfield: 'deliverygoodsname',
  5701. columntitle: '现货品种',
  5702. columnwidth: '0',
  5703. orderindex: 10,
  5704. isshow: 1,
  5705. aligntype: 1,
  5706. formattertype: '',
  5707. formatterstring: '',
  5708. remark: 'deliverygoodsname',
  5709. needsummary: 0,
  5710. summarytype: 0,
  5711. groupname: ''
  5712. },
  5713. {
  5714. autoid: 11519,
  5715. tablekey: 'table_pcweb_current_inventory',
  5716. columnfield: 'wrstandardname',
  5717. columntitle: '品类',
  5718. columnwidth: '0',
  5719. orderindex: 20,
  5720. isshow: 1,
  5721. aligntype: 1,
  5722. formattertype: '',
  5723. formatterstring: '',
  5724. remark: 'wrstandardname',
  5725. needsummary: 0,
  5726. summarytype: 0,
  5727. groupname: ''
  5728. },
  5729. {
  5730. autoid: 11520,
  5731. tablekey: 'table_pcweb_current_inventory',
  5732. columnfield: 'brandname',
  5733. columntitle: '品牌',
  5734. columnwidth: '0',
  5735. orderindex: 30,
  5736. isshow: 1,
  5737. aligntype: 1,
  5738. formattertype: '',
  5739. formatterstring: '',
  5740. remark: 'brandname',
  5741. needsummary: 0,
  5742. summarytype: 0,
  5743. groupname: ''
  5744. },
  5745. {
  5746. autoid: 11521,
  5747. tablekey: 'table_pcweb_current_inventory',
  5748. columnfield: 'warehousename',
  5749. columntitle: '仓库',
  5750. columnwidth: '0',
  5751. orderindex: 40,
  5752. isshow: 1,
  5753. aligntype: 1,
  5754. formattertype: '',
  5755. formatterstring: '',
  5756. remark: 'warehousename',
  5757. needsummary: 0,
  5758. summarytype: 0,
  5759. groupname: ''
  5760. },
  5761. {
  5762. autoid: 11522,
  5763. tablekey: 'table_pcweb_current_inventory',
  5764. columnfield: 'oristock',
  5765. columntitle: '昨日量',
  5766. columnwidth: '0',
  5767. orderindex: 50,
  5768. isshow: 1,
  5769. aligntype: 1,
  5770. formattertype: '',
  5771. formatterstring: '',
  5772. remark: 'oristock',
  5773. needsummary: 0,
  5774. summarytype: 0,
  5775. groupname: ''
  5776. },
  5777. {
  5778. autoid: 11523,
  5779. tablekey: 'table_pcweb_current_inventory',
  5780. columnfield: 'todayproduceinqty',
  5781. columntitle: '今日入库量',
  5782. columnwidth: '0',
  5783. orderindex: 60,
  5784. isshow: 1,
  5785. aligntype: 1,
  5786. formattertype: '',
  5787. formatterstring: '',
  5788. remark: 'todayproduceinqty',
  5789. needsummary: 0,
  5790. summarytype: 0,
  5791. groupname: ''
  5792. },
  5793. {
  5794. autoid: 11524,
  5795. tablekey: 'table_pcweb_current_inventory',
  5796. columnfield: 'todayproduceoutqty',
  5797. columntitle: '今日出库量',
  5798. columnwidth: '0',
  5799. orderindex: 70,
  5800. isshow: 1,
  5801. aligntype: 1,
  5802. formattertype: '',
  5803. formatterstring: '',
  5804. remark: 'todayproduceoutqty',
  5805. needsummary: 0,
  5806. summarytype: 0,
  5807. groupname: ''
  5808. },
  5809. {
  5810. autoid: 11525,
  5811. tablekey: 'table_pcweb_current_inventory',
  5812. columnfield: 'curstock',
  5813. columntitle: '今日量',
  5814. columnwidth: '0',
  5815. orderindex: 80,
  5816. isshow: 1,
  5817. aligntype: 1,
  5818. formattertype: '',
  5819. formatterstring: '',
  5820. remark: 'curstock',
  5821. needsummary: 0,
  5822. summarytype: 0,
  5823. groupname: ''
  5824. }
  5825. ]
  5826. },
  5827. {
  5828. tablekey: 'table_pcweb_application_record',
  5829. tabletype: 2,
  5830. tablename: '库存查询-申请记录',
  5831. tabelmenu: '',
  5832. remark: 'web端-库存查询-申请记录',
  5833. columns: [
  5834. {
  5835. autoid: 11526,
  5836. tablekey: 'table_pcweb_application_record',
  5837. columnfield: 'deliverygoodsname',
  5838. columntitle: '现货品种',
  5839. columnwidth: '0',
  5840. orderindex: 10,
  5841. isshow: 1,
  5842. aligntype: 1,
  5843. formattertype: '',
  5844. formatterstring: '',
  5845. remark: 'deliverygoodsname',
  5846. needsummary: 0,
  5847. summarytype: 0,
  5848. groupname: ''
  5849. },
  5850. {
  5851. autoid: 11527,
  5852. tablekey: 'table_pcweb_application_record',
  5853. columnfield: 'wrstandardname',
  5854. columntitle: '品类',
  5855. columnwidth: '0',
  5856. orderindex: 20,
  5857. isshow: 1,
  5858. aligntype: 1,
  5859. formattertype: '',
  5860. formatterstring: '',
  5861. remark: 'wrstandardname',
  5862. needsummary: 0,
  5863. summarytype: 0,
  5864. groupname: ''
  5865. },
  5866. {
  5867. autoid: 11528,
  5868. tablekey: 'table_pcweb_application_record',
  5869. columnfield: 'brandname',
  5870. columntitle: '品牌',
  5871. columnwidth: '0',
  5872. orderindex: 30,
  5873. isshow: 1,
  5874. aligntype: 1,
  5875. formattertype: '',
  5876. formatterstring: '',
  5877. remark: 'brandname',
  5878. needsummary: 0,
  5879. summarytype: 0,
  5880. groupname: ''
  5881. },
  5882. {
  5883. autoid: 11529,
  5884. tablekey: 'table_pcweb_application_record',
  5885. columnfield: 'warehousename',
  5886. columntitle: '仓库',
  5887. columnwidth: '0',
  5888. orderindex: 40,
  5889. isshow: 1,
  5890. aligntype: 1,
  5891. formattertype: '',
  5892. formatterstring: '',
  5893. remark: 'warehousename',
  5894. needsummary: 0,
  5895. summarytype: 0,
  5896. groupname: ''
  5897. },
  5898. {
  5899. autoid: 11530,
  5900. tablekey: 'table_pcweb_application_record',
  5901. columnfield: 'pricetype',
  5902. columntitle: '类型',
  5903. columnwidth: '0',
  5904. orderindex: 50,
  5905. isshow: 1,
  5906. aligntype: 1,
  5907. formattertype: '',
  5908. formatterstring: '',
  5909. remark: 'pricetype',
  5910. needsummary: 0,
  5911. summarytype: 0,
  5912. groupname: ''
  5913. },
  5914. {
  5915. autoid: 11531,
  5916. tablekey: 'table_pcweb_application_record',
  5917. columnfield: 'qty',
  5918. columntitle: '数量',
  5919. columnwidth: '0',
  5920. orderindex: 60,
  5921. isshow: 1,
  5922. aligntype: 1,
  5923. formattertype: '',
  5924. formatterstring: '',
  5925. remark: 'qty',
  5926. needsummary: 0,
  5927. summarytype: 0,
  5928. groupname: ''
  5929. },
  5930. {
  5931. autoid: 11532,
  5932. tablekey: 'table_pcweb_application_record',
  5933. columnfield: 'contractno',
  5934. columntitle: '合同编号',
  5935. columnwidth: '0',
  5936. orderindex: 70,
  5937. isshow: 1,
  5938. aligntype: 1,
  5939. formattertype: '',
  5940. formatterstring: '',
  5941. remark: 'contractno',
  5942. needsummary: 0,
  5943. summarytype: 0,
  5944. groupname: ''
  5945. },
  5946. {
  5947. autoid: 11533,
  5948. tablekey: 'table_pcweb_application_record',
  5949. columnfield: 'applytime',
  5950. columntitle: '登记时间',
  5951. columnwidth: '0',
  5952. orderindex: 80,
  5953. isshow: 1,
  5954. aligntype: 1,
  5955. formattertype: '',
  5956. formatterstring: '',
  5957. remark: 'hedgeplanstatus',
  5958. needsummary: 0,
  5959. summarytype: 0,
  5960. groupname: ''
  5961. },
  5962. {
  5963. autoid: 11534,
  5964. tablekey: 'table_pcweb_application_record',
  5965. columnfield: 'applyname',
  5966. columntitle: '登记人',
  5967. columnwidth: '0',
  5968. orderindex: 90,
  5969. isshow: 1,
  5970. aligntype: 1,
  5971. formattertype: '',
  5972. formatterstring: '',
  5973. remark: 'hedgeplanstatus',
  5974. needsummary: 0,
  5975. summarytype: 0,
  5976. groupname: ''
  5977. },
  5978. {
  5979. autoid: 11535,
  5980. tablekey: 'table_pcweb_application_record',
  5981. columnfield: 'audittime',
  5982. columntitle: '审核时间',
  5983. columnwidth: '0',
  5984. orderindex: 100,
  5985. isshow: 1,
  5986. aligntype: 1,
  5987. formattertype: '',
  5988. formatterstring: '',
  5989. remark: 'hedgeplanstatus',
  5990. needsummary: 0,
  5991. summarytype: 0,
  5992. groupname: ''
  5993. },
  5994. {
  5995. autoid: 11536,
  5996. tablekey: 'table_pcweb_application_record',
  5997. columnfield: 'auditname',
  5998. columntitle: '审核人',
  5999. columnwidth: '0',
  6000. orderindex: 110,
  6001. isshow: 1,
  6002. aligntype: 1,
  6003. formattertype: '',
  6004. formatterstring: '',
  6005. remark: 'hedgeplanstatus',
  6006. needsummary: 0,
  6007. summarytype: 0,
  6008. groupname: ''
  6009. }
  6010. ]
  6011. }
  6012. ]
  6013. const result = {};
  6014. table.forEach((el) => {
  6015. const { tablekey, tablename } = el;
  6016. result[tablekey] = `string; // ${tablename}`;
  6017. });
  6018. console.log(result);
  6019. </script>
  6020. <!-- <script>
  6021. const result = {};
  6022. table.forEach((el) => {
  6023. const { tablekey, tablename } = el;
  6024. result[tablekey] = `'string'// ${tablename}`;
  6025. });
  6026. console.log(result);
  6027. </script> -->
  6028. </body>
  6029. </html>