123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.ruoyi.warehouseBusiness.mapper.TWarehouseBillsMapper">
- <resultMap type="TWarehousebills" id="TWarehousebillsResult">
- <result property="fId" column="f_id"/>
- <result property="fBillno" column="f_billno"/>
- <result property="fCustomsdeclartion" column="f_customsdeclartion"/>
- <result property="fOriginalbillno" column="f_originalbillno"/>
- <result property="fDeptid" column="f_deptid"/>
- <result property="fBsdeptid" column="f_bsdeptid"/>
- <result property="fContacts" column="f_contacts"/>
- <result property="fTel" column="f_tel"/>
- <result property="fCorpid" column="f_corpid"/>
- <result property="fTocorpid" column="f_tocorpid"/>
- <result property="fStltypeid" column="f_stltypeid"/>
- <result property="fBscorpno" column="f_bscorpno"/>
- <result property="fWarehouseid" column="f_warehouseid"/>
- <result property="fStorekeeper" column="f_storekeeper"/>
- <result property="fChargedate" column="f_chargedate"/>
- <result property="fBsdate" column="f_bsdate"/>
- <result property="fPlanqty" column="f_planqty"/>
- <result property="fPlangrossweight" column="f_plangrossweight"/>
- <result property="fPlannetweight" column="f_plannetweight"/>
- <result property="fPlanvolumn" column="f_planvolumn"/>
- <result property="fQty" column="f_qty"/>
- <result property="fGrossweight" column="f_grossweight"/>
- <result property="fNetweight" column="f_netweight"/>
- <result property="fVolumn" column="f_volumn"/>
- <result property="fBillingway" column="f_billingway"/>
- <result property="fTrademodeid" column="f_trademodeid"/>
- <result property="fSbu" column="f_sbu"/>
- <result property="fFeetunit" column="f_feetunit"/>
- <result property="fMblno" column="f_mblno"/>
- <result property="fMarks" column="f_marks"/>
- <result property="fVslvoy" column="f_vslvoy"/>
- <result property="fEta" column="f_eta"/>
- <result property="fCustomno" column="f_customno"/>
- <result property="fIfweigh" column="f_ifweigh"/>
- <result property="fIfpledge" column="f_ifpledge"/>
- <result property="fIfdamage" column="f_ifdamage"/>
- <result property="fBankcorpid" column="f_bankcorpid"/>
- <result property="fBilltype" column="f_billtype"/>
- <result property="fBillstatus" column="f_billstatus"/>
- <result property="fItemsStatus" column="f_items_status"/>
- <result property="delFlag" column="del_flag"/>
- <result property="createBy" column="create_by"/>
- <result property="createTime" column="create_time"/>
- <result property="updateBy" column="update_by"/>
- <result property="updateTime" column="update_time"/>
- <result property="remark" column="remark"/>
- <result property="fBillingDeadline" column="f_billing_deadline"/>
- <result property="fProductName" column="f_product_name"/>
- <result property="fReviewDate" column="f_review_date"/>
- <result property="fTruckno" column="f_truckno"/>
- <result property="fDriverName" column="f_driver_name"/>
- <result property="fDriverTel" column="f_driver_tel"/>
- <result property="fDriverIdCar" column="f_driver_id_car"/>
- <result property="fBusinessType" column="f_business_type"/>
- <result property="fLabour" column="f_labour"/>
- <result property="fFleet" column="f_fleet"/>
- <result property="fInwarehouseid" column="f_inwarehouseid"/>
- <result property="fBstime" column="f_bstime"/>
- <result property="fCartype" column="f_cartype"/>
- <result property="fGoodsid" column="f_goodsid"/>
- <result property="fNewTrademodeid" column="f_new_trademodeid"/>
- <result property="fLoadportid" column="f_loadportid"/>
- <result property="fDestportid" column="f_destportid"/>
- <result property="fServiceitems" column="f_serviceitems"/>
- <result property="fInvoceobj" column="f_invoceobj"/>
- <result property="fSign" column="f_sign"/>
- <result property="fDetentioncargo" column="f_detentioncargo"/>
- <result property="fBooksmarks" column="f_booksmarks"/>
- <result property="fShippername" column="f_shippername"/>
- <result property="fShipperattn" column="f_shipperattn"/>
- <result property="fShippertel" column="f_shippertel"/>
- <result property="fConsigneername" column="f_consigneername"/>
- <result property="fConsigneeattn" column="f_consigneeattn"/>
- <result property="fConsigneetel" column="f_consigneetel"/>
- <result property="fInsurance" column="f_insurance"/>
- <result property="fInsuranceamt" column="f_insuranceamt"/>
- <result property="fClosedate" column="f_closedate"/>
- <result property="fDocmentdate" column="f_docmentdate"/>
- <result property="fVslid" column="f_vslid"/>
- <result property="fVoyid" column="f_voyid"/>
- <result property="fTypeid" column="f_typeid"/>
- <result property="fPaymode" column="f_paymode"/>
- <result property="fLaneid" column="f_laneid"/>
- <result property="fCntval" column="f_cntval"/>
- <result property="freeContainerDate" column="free_container_date"/>
- </resultMap>
- <sql id="selectTWarehousebillsVo">
- select f_id, f_billno, f_customsdeclartion, f_originalbillno, f_deptid, f_bsdeptid, f_contacts, f_tel, f_corpid, f_tocorpid, f_stltypeid, f_bscorpno,
- f_warehouseid, f_storekeeper, f_chargedate, f_bsdate, f_planqty, f_plangrossweight, f_plannetweight, f_planvolumn, f_qty, f_grossweight, f_netweight,
- f_volumn, f_billingway, f_trademodeid, f_sbu, f_feetunit, f_mblno, f_marks, f_vslvoy, f_eta, f_customno, f_ifweigh, f_ifpledge, f_ifdamage, f_bankcorpid,
- f_billtype, f_billstatus, f_items_status, del_flag, create_by, create_time, update_by, update_time, remark, f_billing_deadline, f_product_name, f_review_date,
- f_truckno, f_driver_name, f_driver_tel, f_driver_id_car, f_business_type, f_labour, f_fleet, f_inwarehouseid, f_bstime, f_cartype, f_goodsid, f_new_trademodeid,
- f_loadportid, f_destportid, f_serviceitems, f_invoceobj, f_sign, f_detentioncargo, f_booksmarks, f_shippername, f_shipperattn, f_shippertel, f_consigneername,
- f_consigneeattn, f_consigneetel, f_insurance, f_insuranceamt, f_closedate, f_docmentdate, f_vslid, f_voyid, f_typeid, f_paymode, f_laneid, f_cntval,
- free_container_date from t_warehousebills
- </sql>
- <select id="selectTWarehousebillsList" parameterType="TWarehousebills" resultMap="TWarehousebillsResult">
- select
- ware.*
- from
- t_warehousebills ware
- left join sys_user u on ware.create_by = u.user_name
- left join sys_dept d on ware.f_bsdeptid = d.dept_id
- <where>
- ware.f_typeid IS NULL
- <if test="fBillno != null and fBillno != ''">and f_billno = #{fBillno}</if>
- <if test="fCustomsdeclartion != null and fCustomsdeclartion != ''">and f_customsdeclartion =
- #{fCustomsdeclartion}
- </if>
- <if test="fOriginalbillno != null and fOriginalbillno != ''">and f_originalbillno = #{fOriginalbillno}</if>
- <if test="fDeptid != null ">and f_deptid = #{fDeptid}</if>
- <if test="fBsdeptid != null ">and f_bsdeptid = #{fBsdeptid}</if>
- <if test="fInwarehouseid != null ">and f_inwarehouseid = #{fInwarehouseid}</if>
- <if test="fContacts != null and fContacts != ''">and f_contacts = #{fContacts}</if>
- <if test="fTel != null and fTel != ''">and f_tel = #{fTel}</if>
- <if test="fCorpid != null ">and f_corpid = #{fCorpid}</if>
- <if test="fTocorpid != null ">and f_tocorpid = #{fTocorpid}</if>
- <if test="fChargedate != null ">and f_chargedate = #{fChargedate}</if>
- <if test='timeInterval != null and timeInterval[0] != null and timeInterval[0]!= ""'>
- and f_bsdate >= #{timeInterval[0]}
- </if>
- <if test='timeInterval != null and timeInterval[1] != null and timeInterval[1]!= ""'>
- and f_bsdate <= #{timeInterval[1]}
- </if>
- <if test="fStltypeid != null ">and f_stltypeid = #{fStltypeid}</if>
- <if test="fBscorpno != null and fBscorpno != ''">and f_bscorpno = #{fBscorpno}</if>
- <if test="fWarehouseid != null ">and f_warehouseid = #{fWarehouseid}</if>
- <if test="fStorekeeper != null and fStorekeeper != ''">and f_storekeeper = #{fStorekeeper}</if>
- <if test="fBsdate != null ">and f_bsdate = #{fBsdate}</if>
- <if test="fPlanqty != null ">and f_planqty = #{fPlanqty}</if>
- <if test="fProductName != null and fProductName != ''">and f_product_name like concat('%', #{fProductName},
- '%')
- </if>
- <if test="fPlangrossweight != null ">and f_plangrossweight = #{fPlangrossweight}</if>
- <if test="fPlannetweight != null ">and f_plannetweight = #{fPlannetweight}</if>
- <if test="fPlanvolumn != null ">and f_planvolumn = #{fPlanvolumn}</if>
- <if test="fQty != null ">and f_qty = #{fQty}</if>
- <if test="fMarks != null and fMarks != ''">and f_marks = #{fMarks}</if>
- <if test="fGrossweight != null ">and f_grossweight = #{fGrossweight}</if>
- <if test="fNetweight != null ">and f_netweight = #{fNetweight}</if>
- <if test="fVolumn != null ">and f_volumn = #{fVolumn}</if>
- <if test="fTrademodeid != null ">and f_trademodeid = #{fTrademodeid}</if>
- <if test="fBillingway != null ">and f_billingway = #{fBillingway}</if>
- <if test="fSbu != null ">and f_sbu = #{fSbu}</if>
- <if test="fFeetunit != null and fFeetunit != ''">and f_feetunit = #{fFeetunit}</if>
- <if test="fMblno != null and fMblno != ''">and f_mblno = #{fMblno}</if>
- <if test="fVslvoy != null and fVslvoy != ''">and f_vslvoy = #{fVslvoy}</if>
- <if test="fEta != null ">and f_eta = #{fEta}</if>
- <if test="fCustomno != null and fCustomno != ''">and f_customno = #{fCustomno}</if>
- <if test="fIfweigh != null and fIfweigh != ''">and f_ifweigh = #{fIfweigh}</if>
- <if test="fIfpledge != null and fIfpledge != ''">and f_ifpledge = #{fIfpledge}</if>
- <if test="fIfdamage != null and fIfdamage != ''">and f_ifdamage = #{fIfdamage}</if>
- <if test="fBankcorpid != null ">and f_bankcorpid = #{fBankcorpid}</if>
- <if test="fBillingDeadline != null ">and f_billing_deadline = #{fBillingDeadline}</if>
- <if test="fBilltype != null and fBilltype != ''">and f_billtype = #{fBilltype}</if>
- <if test="fBillstatus != null and fBillstatus != ''">and f_billstatus = #{fBillstatus}</if>
- <if test="fNewTrademodeid != null ">and f_new_trademodeid = #{fNewTrademodeid}</if>
- </where>
- ${params.dataScope}
- </select>
- <select id="selectWarehouseBusinessList" parameterType="TWarehousebills" resultType="Map">
- SELECT
- DISTINCT
- bill.f_id AS fId,
- corp.f_name AS fCorpid,
- corpTo.f_name AS fTocorpid,
- bill.f_mblno AS fMblno,
- corpSub.f_name AS fSbu,
- bill.f_marks AS fMarks,
- bill.remark AS remark,
- bill.f_planqty AS fPlanqty,
- bill.f_plangrossweight AS fPlangrossweight,
- bill.f_plannetweight AS fPlannetweight,
- bill.f_planvolumn AS fPlanvolumn,
- bill.f_bsdate AS fBsdate,
- bill.f_trademodeid AS fTrademodeid,
- bill.f_truckno AS fTruckno,
- bill.f_driver_name AS fDriverName,
- bill.f_driver_tel AS fDriverTel,
- bill.f_driver_id_car AS fDriverIdCar,
- dictIn.dict_label AS fBusinessType,
- ware.f_name AS fWarehouseid,
- bill.f_qty AS fQty,
- bill.f_cntval AS fCntval,
- bill.f_netweight AS fNetweight,
- bill.create_time AS createTime,
- ware1.f_name AS fInwarehouseid,
- bill.create_by AS createBy,
- bill.f_grossweight AS fGrossweight,
- bill.f_product_name AS fProductName,
- bill.f_billing_deadline AS fBillingDeadline,
- bill.free_container_date AS freeContainerDate,
- CASE WHEN bill.f_billstatus = '1' THEN '录入'
- WHEN bill.f_billstatus = '2' THEN '暂存'
- WHEN bill.f_billstatus = '3' THEN '驳回'
- WHEN bill.f_billstatus = '4' THEN '请核'
- WHEN bill.f_billstatus = '5' THEN '审核中'
- WHEN bill.f_billstatus = '6' THEN '全部入账'
- END
- AS fBillstatus,
- CASE
- WHEN bill.f_billtype = 'SJRK'
- AND bill.f_items_status = '1' THEN
- '计划'
- WHEN bill.f_billtype = 'SJRK'
- AND bill.f_items_status = '2' THEN
- '待入库'
- WHEN bill.f_billtype = 'SJRK'
- AND bill.f_items_status = '3' THEN
- '入库中'
- WHEN bill.f_billtype = 'SJRK'
- AND bill.f_items_status = '4' THEN
- '已入库'
- WHEN bill.f_billtype = 'SJCK'
- AND bill.f_items_status = '1' THEN
- '计划'
- WHEN bill.f_billtype = 'SJCK'
- AND bill.f_items_status = '2' THEN
- '待出库'
- WHEN bill.f_billtype = 'SJCK'
- AND bill.f_items_status = '3' THEN
- '出库中'
- WHEN bill.f_billtype = 'SJCK'
- AND bill.f_items_status = '4' THEN
- '已出库'
- WHEN bill.f_billtype = 'CKDB'
- AND bill.f_items_status = '1' THEN
- '计划'
- WHEN bill.f_billtype = 'CKDB'
- AND bill.f_items_status = '2' THEN
- '待调拨'
- WHEN bill.f_billtype = 'CKDB'
- AND bill.f_items_status = '3' THEN
- '调拨中'
- WHEN bill.f_billtype = 'CKDB'
- AND bill.f_items_status = '4' THEN
- '已调拨'
- WHEN bill.f_billtype = 'HWTG'
- AND bill.f_items_status = '1' THEN
- '计划'
- WHEN bill.f_billtype = 'HWTG'
- AND bill.f_items_status = '2' THEN
- '待调拨'
- WHEN bill.f_billtype = 'HWTG'
- AND bill.f_items_status = '3' THEN
- '调拨中'
- WHEN bill.f_billtype = 'HWTG'
- AND bill.f_items_status = '4' THEN
- '已调拨'
- END AS fItemsStatus,
- bill.f_billno AS fBillno,
- g.f_name AS fGoodsid,
- bill.f_storekeeper AS fStorekeeper
- FROM
- t_warehousebills bill
- LEFT JOIN t_goods g ON g.f_id = bill.f_goodsid
- left join sys_user u on bill.create_by = u.user_name
- left join sys_dept d on bill.f_bsdeptid = d.dept_id
- LEFT JOIN t_corps corp ON corp.f_id = bill.f_corpid
- LEFT JOIN t_corps corpTo ON corpTo.f_id = bill.f_tocorpid
- LEFT JOIN t_corps corpSub ON corpSub.f_id = bill.f_sbu
- LEFT JOIN t_warehouse ware ON ware.f_id = bill.f_warehouseid
- LEFT JOIN t_warehouse ware1 ON ware1.f_id = bill.f_inwarehouseid
- LEFT JOIN t_warehousebillsitems item ON item.f_pid = bill.f_id
- LEFT JOIN t_goods goods ON goods.f_id = item.f_goodsid
- LEFT JOIN sys_dict_data dictIn ON dictIn.dict_value = bill.f_business_type
- <where>
- bill.f_typeid IS NULL
- <if test="fBillno != null and fBillno != ''">and bill.f_billno like concat('%', #{fBillno}, '%')</if>
- <if test="fCustomsdeclartion != null and fCustomsdeclartion != ''">and bill.f_customsdeclartion =
- #{fCustomsdeclartion}
- </if>
- <if test="fOriginalbillno != null and fOriginalbillno != ''">and bill.f_originalbillno =
- #{fOriginalbillno}
- </if>
- <if test="fDeptid != null ">and bill.f_deptid = #{fDeptid}</if>
- <if test="fInwarehouseid != null ">and bill.f_inwarehouseid = #{fInwarehouseid}</if>
- <if test="fBsdeptid != null ">and bill.f_bsdeptid = #{fBsdeptid}</if>
- <if test="fChargedate != null ">and bill.f_chargedate = #{fChargedate}</if>
- <if test='timeInterval != null and timeInterval[0] != null and timeInterval[0]!= ""'>
- and bill.f_bsdate >= #{timeInterval[0]}
- </if>
- <if test='timeInterval != null and timeInterval[1] != null and timeInterval[1]!= ""'>
- and bill.f_bsdate <= #{timeInterval[1]}
- </if>
- <if test='freeContainerList != null and freeContainerList[0] != null and freeContainerList[0]!= ""'>
- and bill.free_container_date >= #{freeContainerList[0]}
- </if>
- <if test='freeContainerList != null and freeContainerList[1] != null and freeContainerList[1]!= ""'>
- and bill.free_container_date <= #{freeContainerList[1]}
- </if>
- <if test="fGoodsid != null and fGoodsid != ''">and item.f_goodsid = #{fGoodsid}</if>
- <if test="fContacts != null and fContacts != ''">and bill.f_contacts = #{fContacts}</if>
- <if test="fTel != null and fTel != ''">and bill.f_tel = #{fTel}</if>
- <if test="fCorpid != null ">and bill.f_corpid = #{fCorpid}</if>
- <if test="fBillingDeadline != null ">and bill.f_billing_deadline = #{fBillingDeadline}</if>
- <if test="fTocorpid != null ">and bill.f_tocorpid = #{fTocorpid}</if>
- <if test="fMarks != null and fMarks != ''">and bill.f_marks like concat('%', #{fMarks}, '%')</if>
- <if test="fStltypeid != null ">and bill.f_stltypeid = #{fStltypeid}</if>
- <if test="fReviewDate != null ">and f_review_date = #{fReviewDate}</if>
- <if test="fBscorpno != null and fBscorpno != ''">and bill.f_bscorpno = #{fBscorpno}</if>
- <if test="fWarehouseid != null ">and bill.f_warehouseid = #{fWarehouseid}</if>
- <if test="fStorekeeper != null and fStorekeeper != ''">and bill.f_storekeeper = #{fStorekeeper}</if>
- <if test="fBsdate != null ">and bill.f_bsdate = #{fBsdate}</if>
- <if test="fPlanqty != null ">and bill.f_planqty = #{fPlanqty}</if>
- <if test="fPlangrossweight != null ">and bill.f_plangrossweight = #{fPlangrossweight}</if>
- <if test="fPlannetweight != null ">and bill.f_plannetweight = #{fPlannetweight}</if>
- <if test="fPlanvolumn != null ">and bill.f_planvolumn = #{fPlanvolumn}</if>
- <if test="fQty != null ">and bill.f_qty = #{fQty}</if>
- <if test="fGrossweight != null ">and bill.f_grossweight = #{fGrossweight}</if>
- <if test="fNetweight != null ">and bill.f_netweight = #{fNetweight}</if>
- <if test="fVolumn != null ">and bill.f_volumn = #{fVolumn}</if>
- <if test="fTrademodeid != null ">and bill.f_trademodeid = #{fTrademodeid}</if>
- <if test="fBillingway != null ">and bill.f_billingway = #{fBillingway}</if>
- <if test="fSbu != null ">and bill.f_sbu = #{fSbu}</if>
- <if test="fFeetunit != null and fFeetunit != ''">and bill.f_feetunit = #{fFeetunit}</if>
- <if test="fMblno != null and fMblno != ''">and bill.f_mblno like concat('%', #{fMblno}, '%')</if>
- <if test="fVslvoy != null and fVslvoy != ''">and bill.f_vslvoy = #{fVslvoy}</if>
- <if test="fEta != null ">and bill.f_eta = #{fEta}</if>
- <if test="fCustomno != null and fCustomno != ''">and bill.f_customno = #{fCustomno}</if>
- <if test="fIfweigh != null and fIfweigh != ''">and bill.f_ifweigh = #{fIfweigh}</if>
- <if test="fIfpledge != null and fIfpledge != ''">and bill.f_ifpledge = #{fIfpledge}</if>
- <if test="fIfdamage != null and fIfdamage != ''">and bill.f_ifdamage = #{fIfdamage}</if>
- <if test="fBankcorpid != null ">and bill.f_bankcorpid = #{fBankcorpid}</if>
- <if test="fBilltype != null">and bill.f_billtype = #{fBilltype}</if>
- <if test="fBilltype != null and fBilltype == 'SJRK'">
- AND dictIn.dict_type = 'st_in_type'
- AND dictIn.status = '0'
- </if>
- <if test="fBilltype != null and fBilltype == 'SJCK'">
- AND dictIn.dict_type = 'st_out_type'
- AND dictIn.status = '0'
- </if>
- <if test="fBilltype != null and fBilltype == 'CKDB'">
- AND dictIn.dict_type = 'st_trans_type'
- AND dictIn.status = '0'
- </if>
- <if test="fBilltype != null and fBilltype == 'HWTG'">
- AND dictIn.dict_type = 'st_trans_type'
- AND dictIn.status = '0'
- </if>
- <if test="fBillstatus != null and fBillstatus != ''">and bill.f_billstatus = #{fBillstatus}</if>
- <if test="fItemsStatus != null and fItemsStatus != ''">and bill.f_items_status = #{fItemsStatus}</if>
- <if test="createBy != null and createBy != ''">and bill.create_by = #{createBy}</if>
- <if test="fNewTrademodeid != null ">and bill.f_new_trademodeid = #{fNewTrademodeid}</if>
- </where>
- ${params.dataScope}
- ORDER BY bill.f_billstatus , bill.f_bsdate DESC
- </select>
- <select id="selectWarehouseBusinessList1" parameterType="TWarehousebills" resultType="Map">
- SELECT
- DISTINCT
- bill.f_id AS fId,
- corp.f_name AS fCorpid,
- corpTo.f_name AS fTocorpid,
- bill.f_mblno AS fMblno,
- corpSub.f_name AS fSbu,
- bill.f_marks AS fMarks,
- bill.remark AS remark,
- bill.f_planqty AS fPlanqty,
- bill.f_plangrossweight AS fPlangrossweight,
- bill.f_plannetweight AS fPlannetweight,
- bill.f_planvolumn AS fPlanvolumn,
- bill.f_bsdate AS fBsdate,
- dict.dict_label AS fTrademodeid,
- bill.f_truckno AS fTruckno,
- bill.f_driver_name AS fDriverName,
- bill.f_driver_tel AS fDriverTel,
- bill.f_driver_id_car AS fDriverIdCar,
- ware.f_name AS fWarehouseid,
- bill.f_qty AS fQty,
- bill.f_cntval AS fCntval,
- bill.f_netweight AS fNetweight,
- bill.create_time AS createTime,
- ware1.f_name AS fInwarehouseid,
- bill.create_by AS createBy,
- bill.f_grossweight AS fGrossweight,
- bill.f_product_name AS fProductName,
- bill.f_billing_deadline AS fBillingDeadline,
- bill.free_container_date AS freeContainerDate,
- CASE
- WHEN bill.f_billtype = 'HQZY' AND bill.f_billstatus = '1' THEN '录入'
- WHEN bill.f_billtype = 'HQZY' AND bill.f_billstatus = '2' THEN '暂存'
- WHEN bill.f_billtype = 'HQZY' AND bill.f_billstatus = '3' THEN '驳回'
- WHEN bill.f_billtype = 'HQZY' AND bill.f_billstatus = '4' THEN '请核'
- WHEN bill.f_billtype = 'HQZY' AND bill.f_billstatus = '5' THEN '审核中'
- WHEN bill.f_billtype = 'HQZY' AND bill.f_billstatus = '6' THEN '全部入账'
- WHEN bill.f_billtype = 'JSCCF' AND bill.f_billstatus = '1' THEN '新建'
- WHEN bill.f_billtype = 'JSCCF' AND bill.f_billstatus = '2' THEN '暂存'
- WHEN bill.f_billtype = 'JSCCF' AND bill.f_billstatus = '3' THEN '审核驳回'
- WHEN bill.f_billtype = 'JSCCF' AND bill.f_billstatus = '4' THEN '提交审核'
- WHEN bill.f_billtype = 'JSCCF' AND bill.f_billstatus = '5' THEN '审核中'
- WHEN bill.f_billtype = 'JSCCF' AND bill.f_billstatus = '6' THEN '审核通过'
- END
- AS fBillstatus,
- CASE
- WHEN bill.f_billtype = 'HQZY'
- AND bill.f_items_status = '1' THEN
- '计划'
- WHEN bill.f_billtype = 'HQZY'
- AND bill.f_items_status = '2' THEN
- '待货转'
- WHEN bill.f_billtype = 'HQZY'
- AND bill.f_items_status = '3' THEN
- '货转中'
- WHEN bill.f_billtype = 'HQZY'
- AND bill.f_items_status = '4' THEN
- '已货转'
- END
- AS fItemsStatus,
- bill.f_billno AS fBillno,
- g.f_name AS fGoodsid,
- bill.f_storekeeper AS fStorekeeper
- FROM
- t_warehousebills bill
- LEFT JOIN t_goods g ON g.f_id = bill.f_goodsid
- left join sys_user u on bill.create_by = u.user_name
- left join sys_dept d on bill.f_bsdeptid = d.dept_id
- LEFT JOIN t_corps corp ON corp.f_id = bill.f_corpid
- LEFT JOIN t_corps corpTo ON corpTo.f_id = bill.f_tocorpid
- LEFT JOIN t_corps corpSub ON corpSub.f_id = bill.f_sbu
- LEFT JOIN t_warehouse ware ON ware.f_id = bill.f_warehouseid
- LEFT JOIN t_warehouse ware1 ON ware1.f_id = bill.f_inwarehouseid
- LEFT JOIN t_warehousebillsitems item ON item.f_pid = bill.f_id
- LEFT JOIN t_goods goods ON goods.f_id = item.f_goodsid
- LEFT JOIN sys_dict_data dict ON dict.dict_value = bill.f_trademodeid
- <where>
- dict.status = '0'
- AND dict.dict_type = 'data_trademodes'
- AND bill.f_typeid IS NULL
- <if test="fBillno != null and fBillno != ''">and bill.f_billno like concat('%', #{fBillno}, '%')</if>
- <if test="fCustomsdeclartion != null and fCustomsdeclartion != ''">and bill.f_customsdeclartion =
- #{fCustomsdeclartion}
- </if>
- <if test="fOriginalbillno != null and fOriginalbillno != ''">and bill.f_originalbillno =
- #{fOriginalbillno}
- </if>
- <if test="fDeptid != null ">and bill.f_deptid = #{fDeptid}</if>
- <if test="fInwarehouseid != null ">and bill.f_inwarehouseid = #{fInwarehouseid}</if>
- <if test="fBsdeptid != null ">and bill.f_bsdeptid = #{fBsdeptid}</if>
- <if test="fChargedate != null ">and bill.f_chargedate = #{fChargedate}</if>
- <if test='timeInterval != null and timeInterval[0] != null and timeInterval[0]!= ""'>
- and bill.f_bsdate >= #{timeInterval[0]}
- </if>
- <if test='timeInterval != null and timeInterval[1] != null and timeInterval[1]!= ""'>
- and bill.f_bsdate <= #{timeInterval[1]}
- </if>
- <if test='freeContainerList != null and freeContainerList[0] != null and freeContainerList[0]!= ""'>
- and bill.free_container_date >= #{freeContainerList[0]}
- </if>
- <if test='freeContainerList != null and freeContainerList[1] != null and freeContainerList[1]!= ""'>
- and bill.free_container_date <= #{freeContainerList[1]}
- </if>
- <if test="fGoodsid != null and fGoodsid != ''">and item.f_goodsid = #{fGoodsid}</if>
- <if test="fContacts != null and fContacts != ''">and bill.f_contacts = #{fContacts}</if>
- <if test="fTel != null and fTel != ''">and bill.f_tel = #{fTel}</if>
- <if test="fCorpid != null ">and bill.f_corpid = #{fCorpid}</if>
- <if test="fBillingDeadline != null ">and bill.f_billing_deadline = #{fBillingDeadline}</if>
- <if test="fTocorpid != null ">and bill.f_tocorpid = #{fTocorpid}</if>
- <if test="fMarks != null and fMarks != ''">and bill.f_marks like concat('%', #{fMarks}, '%')</if>
- <if test="fStltypeid != null ">and bill.f_stltypeid = #{fStltypeid}</if>
- <if test="fReviewDate != null ">and f_review_date = #{fReviewDate}</if>
- <if test="fBscorpno != null and fBscorpno != ''">and bill.f_bscorpno = #{fBscorpno}</if>
- <if test="fWarehouseid != null ">and bill.f_warehouseid = #{fWarehouseid}</if>
- <if test="fStorekeeper != null and fStorekeeper != ''">and bill.f_storekeeper = #{fStorekeeper}</if>
- <if test="fBsdate != null ">and bill.f_bsdate = #{fBsdate}</if>
- <if test="fPlanqty != null ">and bill.f_planqty = #{fPlanqty}</if>
- <if test="fPlangrossweight != null ">and bill.f_plangrossweight = #{fPlangrossweight}</if>
- <if test="fPlannetweight != null ">and bill.f_plannetweight = #{fPlannetweight}</if>
- <if test="fPlanvolumn != null ">and bill.f_planvolumn = #{fPlanvolumn}</if>
- <if test="fQty != null ">and bill.f_qty = #{fQty}</if>
- <if test="fGrossweight != null ">and bill.f_grossweight = #{fGrossweight}</if>
- <if test="fNetweight != null ">and bill.f_netweight = #{fNetweight}</if>
- <if test="fVolumn != null ">and bill.f_volumn = #{fVolumn}</if>
- <if test="fTrademodeid != null ">and bill.f_trademodeid = #{fTrademodeid}</if>
- <if test="fBillingway != null ">and bill.f_billingway = #{fBillingway}</if>
- <if test="fSbu != null ">and bill.f_sbu = #{fSbu}</if>
- <if test="fFeetunit != null and fFeetunit != ''">and bill.f_feetunit = #{fFeetunit}</if>
- <if test="fMblno != null and fMblno != ''">and bill.f_mblno like concat('%', #{fMblno}, '%')</if>
- <if test="fVslvoy != null and fVslvoy != ''">and bill.f_vslvoy = #{fVslvoy}</if>
- <if test="fEta != null ">and bill.f_eta = #{fEta}</if>
- <if test="fCustomno != null and fCustomno != ''">and bill.f_customno = #{fCustomno}</if>
- <if test="fIfweigh != null and fIfweigh != ''">and bill.f_ifweigh = #{fIfweigh}</if>
- <if test="fIfpledge != null and fIfpledge != ''">and bill.f_ifpledge = #{fIfpledge}</if>
- <if test="fIfdamage != null and fIfdamage != ''">and bill.f_ifdamage = #{fIfdamage}</if>
- <if test="fBankcorpid != null ">and bill.f_bankcorpid = #{fBankcorpid}</if>
- <if test="fBilltype != null and fBilltype != ''">
- and bill.f_billtype = #{fBilltype}
- </if>
- <if test="fBillstatus != null and fBillstatus != ''">and bill.f_billstatus = #{fBillstatus}</if>
- <if test="fItemsStatus != null and fItemsStatus != ''">and bill.f_items_status = #{fItemsStatus}</if>
- <if test="createBy != null and createBy != ''">and bill.create_by = #{createBy}</if>
- <if test="fNewTrademodeid != null ">and bill.f_new_trademodeid = #{fNewTrademodeid}</if>
- </where>
- ${params.dataScope}
- ORDER BY bill.f_billstatus , bill.f_bsdate DESC
- </select>
- <select id="selectTWarehousebillsById" parameterType="Long" resultMap="TWarehousebillsResult">
- <include refid="selectTWarehousebillsVo"/>
- where f_id = #{fId}
- ORDER BY f_bsdate desc
- </select>
- <select id="selectTWarehousebillsItemsList"
- resultType="com.ruoyi.warehouseBusiness.domain.TWareHouseExcelItems">
- SELECT (@ii := @ii + 1) AS fId,
- CASE
- wi.f_billtype
- WHEN 'SJRK' THEN
- '入库'
- WHEN 'SJCK' THEN
- '出库'
- WHEN 'KCZZ' THEN
- '库存总账'
- END AS fBilltype,
- wi.f_mblno AS fMblno,
- wi.f_product_name AS fGoodsid,
- wi.f_marks AS fMarks,
- wi.f_bsdate AS fBsdate,
- dict.dict_label AS fFeeUnitid,
- wi.f_billing_qty AS fBillingQty,
- wi.f_chargedate AS fChargedate,
- wi.f_billing_deadline AS fBillingDeadline,
- wi.f_billing_days AS fBillingDays,
- wi.f_inventory_days AS fInventoryDays,
- wi.f_amt AS fAmt,
- wi.remark AS remark
- FROM t_warehousebills w
- LEFT JOIN t_warehousebillsfees wi ON w.f_id = wi.f_pid
- LEFT JOIN sys_dict_data dict ON dict.dict_value = wi.f_feeUnitid
- , (
- SELECT @ii := 0
- ) AS ii
- WHERE w.f_id = #{fId}
- AND w.f_typeid IS NULL
- AND dict.status = '0'
- AND dict.dict_type = 'data_unitfees'
- </select>
- <select id="selectInventorySJRKList" parameterType="TWarehousebills" resultType="java.util.Map">
- SELECT
- co.f_name AS fName,
- it.f_bsdate AS fBsdate,
- leg.f_mblno AS fMblno,
- it.f_business_type AS fBusinessType,
- dict.dict_label AS fBusinessTypes,
- it.f_marks AS fMarks ,
- goo.f_name AS fGoodsName,
- it.f_warehouse_information AS fWarehouseLocationids,
- dicttr.dict_label AS fTrademodeid,
- it.f_qty AS fQty,
- it.f_grossweight AS fGrossweight,
- it.f_netweight AS fNetweight,
- CASE
- it.f_billtype
- WHEN 'SJRK' THEN
- '入库'
- WHEN 'SJCK' THEN
- '出库'
- WHEN 'CKDB' THEN
- '调拨'
- END AS fBilltype
- FROM
- t_warehousebills leg
- left join sys_user u on leg.create_by = u.user_name
- left join sys_dept d on leg.f_bsdeptid = d.dept_id
- LEFT JOIN t_warehousebillsitems it ON leg.f_id = it.f_pid
- LEFT JOIN t_goods goo ON it.f_goodsid = goo.f_id
- LEFT JOIN t_corps co ON leg.f_corpid = co.f_id
- LEFT JOIN sys_dict_data dict ON dict.dict_value = it.f_business_type
- LEFT JOIN t_warehouse ware ON ware.f_id = it.f_warehouselocid
- LEFT JOIN sys_dict_data dicttr ON dicttr.dict_value = leg.f_trademodeid
- <where>
- dict.status = '0'
- AND leg.f_typeid IS NULL
- AND dict.dict_type = 'storage_type'
- AND dicttr.STATUS = '0'
- AND dicttr.dict_type = 'data_trademodes'
- AND leg.f_billtype in ('SJRK','CKDB')
- <if test="fGoodsid != null ">and it.f_goodsid = #{fGoodsid}</if>
- <if test="fTrademodeid != null ">and leg.f_trademodeid = #{fTrademodeid}</if>
- <if test="fNewTrademodeid != null ">and leg.f_new_trademodeid = #{fNewTrademodeid}</if>
- <if test="fCorpid != null ">and leg.f_corpid = #{fCorpid}</if>
- <if test="fMblno != null ">and leg.f_mblno = #{fMblno}</if>
- <if test="fLocation != null and fLocation ==1 ">
- and it.f_warehouselocid = #{fWarehouseid}
- </if>
- <if test="fLocation != null and fLocation ==0 ">
- and ware.ancestors LIKE concat('%', #{fWarehouseid}, '%')
- </if>
- <if test='timeInterval != null and timeInterval[0] != null and timeInterval[0]!= ""'>
- and it.f_bsdate >= #{timeInterval[0]}
- </if>
- <if test='timeInterval != null and timeInterval[1] != null and timeInterval[1]!= ""'>
- and it.f_bsdate <= #{timeInterval[1]}
- </if>
- </where>
- ${params.dataScope}
- </select>
- <select id="selectInventorySJCKList" parameterType="TWarehousebills" resultType="java.util.Map">
- SELECT
- co.f_name AS fName,
- it.f_bsdate AS fBsdate,
- leg.f_mblno AS fMblno,
- it.f_business_type AS fBusinessType,
- dict.dict_label AS fBusinessTypes,
- it.f_marks AS fMarks ,
- goo.f_name AS fGoodsName,
- dicttr.dict_label AS fTrademodeid,
- it.f_qty AS fQty,
- it.f_grossweight AS fGrossweight,
- it.f_netweight AS fNetweight,
- CASE
- it.f_billtype
- WHEN 'SJRK' THEN
- '入库'
- WHEN 'SJCK' THEN
- '出库'
- WHEN 'CKDB' THEN
- '调拨'
- END AS fBilltype ,
- CASE
- it.f_billtype
- WHEN 'SJRK' THEN
- it.f_warehouse_information
- WHEN 'SJCK' THEN
- it.f_warehouse_information
- WHEN 'CKDB' THEN
- it.f_orgwarehouse_information
- END AS fWarehouseLocationids
- FROM
- t_warehousebills leg
- left join sys_user u on leg.create_by = u.user_name
- left join sys_dept d on leg.f_bsdeptid = d.dept_id
- LEFT JOIN t_warehousebillsitems it ON leg.f_id = it.f_pid
- LEFT JOIN t_goods goo ON it.f_goodsid = goo.f_id
- LEFT JOIN t_corps co ON leg.f_corpid = co.f_id
- LEFT JOIN sys_dict_data dict ON dict.dict_value = it.f_business_type
- LEFT JOIN t_warehouse ware ON ware.f_id = it.f_warehouselocid
- LEFT JOIN sys_dict_data dicttr ON dicttr.dict_value = leg.f_trademodeid
- <where>
- dict.status = '0'
- AND leg.f_typeid IS NULL
- AND dict.dict_type = 'storage_type'
- AND dicttr.STATUS = '0'
- AND dicttr.dict_type = 'data_trademodes'
- AND leg.f_billtype in ('SJCK','CKDB')
- <if test="fGoodsid != null ">and it.f_goodsid = #{fGoodsid}</if>
- <if test="fTrademodeid != null ">and leg.f_trademodeid = #{fTrademodeid}</if>
- <if test="fNewTrademodeid != null ">and leg.f_new_trademodeid = #{fNewTrademodeid}</if>
- <if test="fCorpid != null ">and leg.f_corpid = #{fCorpid}</if>
- <if test="fMblno != null ">and leg.f_mblno = #{fMblno}</if>
- <if test="fLocation != null and fLocation ==1 ">
- and it.f_warehouselocid = #{fWarehouseid}
- </if>
- <if test="fLocation != null and fLocation ==0 ">
- and ware.ancestors LIKE concat('%', #{fWarehouseid}, '%')
- </if>
- <if test='timeInterval != null and timeInterval[0] != null and timeInterval[0]!= ""'>
- and it.f_bsdate >= #{timeInterval[0]}
- </if>
- <if test='timeInterval != null and timeInterval[1] != null and timeInterval[1]!= ""'>
- and it.f_bsdate <= #{timeInterval[1]}
- </if>
- </where>
- ${params.dataScope}
- </select>
- <select id="selectTWarehousebillsItemList"
- resultType="com.ruoyi.reportManagement.domain.TWareHouseItemsExcel">
- SELECT
- ( @ii := @ii + 1 ) AS fId,
- co.f_name AS fCorpid,
- it.f_bsdate AS fBsdate,
- leg.f_mblno AS fMblno,
- dict.dict_label AS fBusinessType,
- it.f_marks AS fMarks,
- go.f_name AS fGoodsid,
- it.f_warehouse_information AS fWarehouseInformation,
- dicttr.dict_label AS fTrademodeid,
- it.f_qty AS fQty,
- it.f_grossweight AS fGrossweight,
- it.f_netweight AS fNetweight
- FROM
- t_warehousebills leg
- LEFT JOIN t_warehousebillsitems it ON leg.f_id = it.f_pid
- LEFT JOIN t_goods go ON it.f_goodsid = go.f_id
- LEFT JOIN t_corps co ON leg.f_corpid = co.f_id
- LEFT JOIN sys_dict_data dict ON dict.dict_value = it.f_business_type
- LEFT JOIN t_warehouse_area area ON area.f_id = it.f_warehouselocid
- LEFT JOIN sys_dict_data dicttr ON dicttr.dict_value = leg.f_trademodeid,(
- SELECT
- @ii := 0
- ) AS ii
- WHERE
- dict.STATUS = '0'
- AND leg.f_typeid IS NULL
- AND dict.dict_type = 'storage_type'
- AND dicttr.STATUS = '0'
- AND dicttr.dict_type = 'data_trademodes'
- AND leg.f_billtype IN (
- 'SJRk',
- 'SJCK'
- )
- <if test="fBilltype != null">AND leg.f_billtype = #{fBilltype}</if>
- <if test="fGoodsid != null ">and it.f_goodsid = #{fGoodsid}</if>
- <if test="fTrademodeid != null ">and leg.f_trademodeid = #{fTrademodeid}</if>
- <if test="fNewTrademodeid != null ">and leg.f_new_trademodeid = #{fNewTrademodeid}</if>
- <if test="fCorpid != null ">and leg.f_corpid = #{fCorpid}</if>
- <if test="fMblno != null ">and leg.f_mblno = #{fMblno}</if>
- <if test="fLocation != null and fLocation ==1 ">
- and it.f_warehouselocid = #{fWarehouseid}
- </if>
- <if test="fLocation != null and fLocation ==0 ">
- and ware.ancestors LIKE concat('%', #{fWarehouseid}, '%')
- </if>
- <if test='timeInterval != null and timeInterval[0] != null and timeInterval[0]!= ""'>
- and it.f_bsdate >= #{timeInterval[0]}
- </if>
- <if test='timeInterval != null and timeInterval[1] != null and timeInterval[1]!= ""'>
- and it.f_bsdate <= #{timeInterval[1]}
- </if>
- </select>
- <select id="selectContainMblno" parameterType="TWarehousebills" resultType="int">
- SELECT
- count( f_id )
- FROM
- t_warehousebills
- where
- f_mblno = #{fMblno}
- AND f_bsdate = #{fBsdate}
- AND f_billtype = #{fBilltype}
- </select>
- <insert id="insertTWarehousebills" parameterType="TWarehousebills" useGeneratedKeys="true" keyProperty="fId">
- insert into t_warehousebills
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="fBillno != null">f_billno,</if>
- <if test="fCustomsdeclartion != null">f_customsdeclartion,</if>
- <if test="fOriginalbillno != null">f_originalbillno,</if>
- <if test="fDeptid != null">f_deptid,</if>
- <if test="fBsdeptid != null">f_bsdeptid,</if>
- <if test="fContacts != null">f_contacts,</if>
- <if test="fTel != null">f_tel,</if>
- <if test="fCorpid != null">f_corpid,</if>
- <if test="fTocorpid != null">f_tocorpid,</if>
- <if test="fStltypeid != null">f_stltypeid,</if>
- <if test="fBscorpno != null">f_bscorpno,</if>
- <if test="fWarehouseid != null">f_warehouseid,</if>
- <if test="fStorekeeper != null">f_storekeeper,</if>
- <if test="fChargedate != null">f_chargedate,</if>
- <if test="fBsdate != null">f_bsdate,</if>
- <if test="fPlanqty != null">f_planqty,</if>
- <if test="fPlangrossweight != null">f_plangrossweight,</if>
- <if test="fPlannetweight != null">f_plannetweight,</if>
- <if test="fPlanvolumn != null">f_planvolumn,</if>
- <if test="fQty != null">f_qty,</if>
- <if test="fGrossweight != null">f_grossweight,</if>
- <if test="fNetweight != null">f_netweight,</if>
- <if test="fVolumn != null">f_volumn,</if>
- <if test="fBillingway != null">f_billingway,</if>
- <if test="fTrademodeid != null">f_trademodeid,</if>
- <if test="fSbu != null">f_sbu,</if>
- <if test="fFeetunit != null">f_feetunit,</if>
- <if test="fMblno != null">f_mblno,</if>
- <if test="fMarks != null">f_marks,</if>
- <if test="fVslvoy != null">f_vslvoy,</if>
- <if test="fEta != null">f_eta,</if>
- <if test="fCustomno != null">f_customno,</if>
- <if test="fIfweigh != null">f_ifweigh,</if>
- <if test="fIfpledge != null">f_ifpledge,</if>
- <if test="fIfdamage != null">f_ifdamage,</if>
- <if test="fBankcorpid != null">f_bankcorpid,</if>
- <if test="fBilltype != null">f_billtype,</if>
- <if test="fBillstatus != null">f_billstatus,</if>
- <if test="fItemsStatus != null">f_items_status,</if>
- <if test="delFlag != null">del_flag,</if>
- <if test="createBy != null">create_by,</if>
- <if test="createTime != null">create_time,</if>
- <if test="updateBy != null">update_by,</if>
- <if test="updateTime != null">update_time,</if>
- <if test="remark != null">remark,</if>
- <if test="fBillingDeadline != null">f_billing_deadline,</if>
- <if test="fProductName != null">f_product_name,</if>
- <if test="fReviewDate != null">f_review_date,</if>
- <if test="fTruckno != null">f_truckno,</if>
- <if test="fDriverName != null">f_driver_name,</if>
- <if test="fDriverTel != null">f_driver_tel,</if>
- <if test="fDriverIdCar != null">f_driver_id_car,</if>
- <if test="fBusinessType != null">f_business_type,</if>
- <if test="fLabour != null">f_labour,</if>
- <if test="fFleet != null">f_fleet,</if>
- <if test="fInwarehouseid != null">f_inwarehouseid,</if>
- <if test="fBstime != null">f_bstime,</if>
- <if test="fCartype != null">f_cartype,</if>
- <if test="fGoodsid != null">f_goodsid,</if>
- <if test="fNewTrademodeid != null">f_new_trademodeid,</if>
- <if test="fLoadportid != null">f_loadportid,</if>
- <if test="fDestportid != null">f_destportid,</if>
- <if test="fServiceitems != null">f_serviceitems,</if>
- <if test="fInvoceobj != null">f_invoceobj,</if>
- <if test="fSign != null">f_sign,</if>
- <if test="fDetentioncargo != null">f_detentioncargo,</if>
- <if test="fBooksmarks != null">f_booksmarks,</if>
- <if test="fShippername != null">f_shippername,</if>
- <if test="fShipperattn != null">f_shipperattn,</if>
- <if test="fShippertel != null">f_shippertel,</if>
- <if test="fConsigneername != null">f_consigneername,</if>
- <if test="fConsigneeattn != null">f_consigneeattn,</if>
- <if test="fConsigneetel != null">f_consigneetel,</if>
- <if test="fInsurance != null">f_insurance,</if>
- <if test="fInsuranceamt != null">f_insuranceamt,</if>
- <if test="fClosedate != null">f_closedate,</if>
- <if test="fDocmentdate != null">f_docmentdate,</if>
- <if test="fVslid != null">f_vslid,</if>
- <if test="fVoyid != null">f_voyid,</if>
- <if test="fTypeid != null">f_typeid,</if>
- <if test="fPaymode != null">f_paymode,</if>
- <if test="fLaneid != null">f_laneid,</if>
- <if test="fCntval != null">f_cntval,</if>
- <if test="freeContainerDate != null">free_container_date,</if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="fBillno != null">#{fBillno},</if>
- <if test="fCustomsdeclartion != null">#{fCustomsdeclartion},</if>
- <if test="fOriginalbillno != null">#{fOriginalbillno},</if>
- <if test="fDeptid != null">#{fDeptid},</if>
- <if test="fBsdeptid != null">#{fBsdeptid},</if>
- <if test="fContacts != null">#{fContacts},</if>
- <if test="fTel != null">#{fTel},</if>
- <if test="fCorpid != null">#{fCorpid},</if>
- <if test="fTocorpid != null">#{fTocorpid},</if>
- <if test="fStltypeid != null">#{fStltypeid},</if>
- <if test="fBscorpno != null">#{fBscorpno},</if>
- <if test="fWarehouseid != null">#{fWarehouseid},</if>
- <if test="fStorekeeper != null">#{fStorekeeper},</if>
- <if test="fChargedate != null">#{fChargedate},</if>
- <if test="fBsdate != null">#{fBsdate},</if>
- <if test="fPlanqty != null">#{fPlanqty},</if>
- <if test="fPlangrossweight != null">#{fPlangrossweight},</if>
- <if test="fPlannetweight != null">#{fPlannetweight},</if>
- <if test="fPlanvolumn != null">#{fPlanvolumn},</if>
- <if test="fQty != null">#{fQty},</if>
- <if test="fGrossweight != null">#{fGrossweight},</if>
- <if test="fNetweight != null">#{fNetweight},</if>
- <if test="fVolumn != null">#{fVolumn},</if>
- <if test="fBillingway != null">#{fBillingway},</if>
- <if test="fTrademodeid != null">#{fTrademodeid},</if>
- <if test="fSbu != null">#{fSbu},</if>
- <if test="fFeetunit != null">#{fFeetunit},</if>
- <if test="fMblno != null">#{fMblno},</if>
- <if test="fMarks != null">#{fMarks},</if>
- <if test="fVslvoy != null">#{fVslvoy},</if>
- <if test="fEta != null">#{fEta},</if>
- <if test="fCustomno != null">#{fCustomno},</if>
- <if test="fIfweigh != null">#{fIfweigh},</if>
- <if test="fIfpledge != null">#{fIfpledge},</if>
- <if test="fIfdamage != null">#{fIfdamage},</if>
- <if test="fBankcorpid != null">#{fBankcorpid},</if>
- <if test="fBilltype != null">#{fBilltype},</if>
- <if test="fBillstatus != null">#{fBillstatus},</if>
- <if test="fItemsStatus != null">#{fItemsStatus},</if>
- <if test="delFlag != null">#{delFlag},</if>
- <if test="createBy != null">#{createBy},</if>
- <if test="createTime != null">#{createTime},</if>
- <if test="updateBy != null">#{updateBy},</if>
- <if test="updateTime != null">#{updateTime},</if>
- <if test="remark != null">#{remark},</if>
- <if test="fBillingDeadline != null">#{fBillingDeadline},</if>
- <if test="fProductName != null">#{fProductName},</if>
- <if test="fReviewDate != null">#{fReviewDate},</if>
- <if test="fTruckno != null">#{fTruckno},</if>
- <if test="fDriverName != null">#{fDriverName},</if>
- <if test="fDriverTel != null">#{fDriverTel},</if>
- <if test="fDriverIdCar != null">#{fDriverIdCar},</if>
- <if test="fBusinessType != null">#{fBusinessType},</if>
- <if test="fLabour != null">#{fLabour},</if>
- <if test="fFleet != null">#{fFleet},</if>
- <if test="fInwarehouseid != null">#{fInwarehouseid},</if>
- <if test="fBstime != null">#{fBstime},</if>
- <if test="fCartype != null">#{fCartype},</if>
- <if test="fGoodsid != null">#{fGoodsid},</if>
- <if test="fNewTrademodeid != null">#{fNewTrademodeid},</if>
- <if test="fLoadportid != null">#{fLoadportid},</if>
- <if test="fDestportid != null">#{fDestportid},</if>
- <if test="fServiceitems != null">#{fServiceitems},</if>
- <if test="fInvoceobj != null">#{fInvoceobj},</if>
- <if test="fSign != null">#{fSign},</if>
- <if test="fDetentioncargo != null">#{fDetentioncargo},</if>
- <if test="fBooksmarks != null">#{fBooksmarks},</if>
- <if test="fShippername != null">#{fShippername},</if>
- <if test="fShipperattn != null">#{fShipperattn},</if>
- <if test="fShippertel != null">#{fShippertel},</if>
- <if test="fConsigneername != null">#{fConsigneername},</if>
- <if test="fConsigneeattn != null">#{fConsigneeattn},</if>
- <if test="fConsigneetel != null">#{fConsigneetel},</if>
- <if test="fInsurance != null">#{fInsurance},</if>
- <if test="fInsuranceamt != null">#{fInsuranceamt},</if>
- <if test="fClosedate != null">#{fClosedate},</if>
- <if test="fDocmentdate != null">#{fDocmentdate},</if>
- <if test="fVslid != null">#{fVslid},</if>
- <if test="fVoyid != null">#{fVoyid},</if>
- <if test="fTypeid != null">#{fTypeid},</if>
- <if test="fPaymode != null">#{fPaymode},</if>
- <if test="fLaneid != null">#{fLaneid},</if>
- <if test="fCntval != null">#{fCntval},</if>
- <if test="freeContainerDate != null">#{freeContainerDate},</if>
- </trim>
- </insert>
- <update id="updateTWarehousebills" parameterType="TWarehousebills">
- update t_warehousebills
- <trim prefix="SET" suffixOverrides=",">
- <if test="fBillno != null">f_billno = #{fBillno},</if>
- <if test="fCustomsdeclartion != null">f_customsdeclartion = #{fCustomsdeclartion},</if>
- <if test="fOriginalbillno != null">f_originalbillno = #{fOriginalbillno},</if>
- <if test="fDeptid != null">f_deptid = #{fDeptid},</if>
- <if test="fBsdeptid != null">f_bsdeptid = #{fBsdeptid},</if>
- <if test="fContacts != null">f_contacts = #{fContacts},</if>
- <if test="fTel != null">f_tel = #{fTel},</if>
- <if test="fCorpid != null">f_corpid = #{fCorpid},</if>
- <if test="fTocorpid != null">f_tocorpid = #{fTocorpid},</if>
- <if test="fStltypeid != null">f_stltypeid = #{fStltypeid},</if>
- <if test="fBscorpno != null">f_bscorpno = #{fBscorpno},</if>
- <if test="fWarehouseid != null">f_warehouseid = #{fWarehouseid},</if>
- <if test="fStorekeeper != null">f_storekeeper = #{fStorekeeper},</if>
- <if test="fChargedate != null">f_chargedate = #{fChargedate},</if>
- <if test="fBsdate != null">f_bsdate = #{fBsdate},</if>
- <if test="fPlanqty != null">f_planqty = #{fPlanqty},</if>
- <if test="fPlangrossweight != null">f_plangrossweight = #{fPlangrossweight},</if>
- <if test="fPlannetweight != null">f_plannetweight = #{fPlannetweight},</if>
- <if test="fPlanvolumn != null">f_planvolumn = #{fPlanvolumn},</if>
- <if test="fQty != null">f_qty = #{fQty},</if>
- <if test="fGrossweight != null">f_grossweight = #{fGrossweight},</if>
- <if test="fNetweight != null">f_netweight = #{fNetweight},</if>
- <if test="fVolumn != null">f_volumn = #{fVolumn},</if>
- <if test="fBillingway != null">f_billingway = #{fBillingway},</if>
- <if test="fTrademodeid != null">f_trademodeid = #{fTrademodeid},</if>
- <if test="fSbu != null">f_sbu = #{fSbu},</if>
- <if test="fFeetunit != null">f_feetunit = #{fFeetunit},</if>
- <if test="fMblno != null">f_mblno = #{fMblno},</if>
- <if test="fMarks != null">f_marks = #{fMarks},</if>
- <if test="fVslvoy != null">f_vslvoy = #{fVslvoy},</if>
- <if test="fEta != null">f_eta = #{fEta},</if>
- <if test="fCustomno != null">f_customno = #{fCustomno},</if>
- <if test="fIfweigh != null">f_ifweigh = #{fIfweigh},</if>
- <if test="fIfpledge != null">f_ifpledge = #{fIfpledge},</if>
- <if test="fIfdamage != null">f_ifdamage = #{fIfdamage},</if>
- <if test="fBankcorpid != null">f_bankcorpid = #{fBankcorpid},</if>
- <if test="fBilltype != null">f_billtype = #{fBilltype},</if>
- <if test="fBillstatus != null">f_billstatus = #{fBillstatus},</if>
- <if test="fItemsStatus != null">f_items_status = #{fItemsStatus},</if>
- <if test="delFlag != null">del_flag = #{delFlag},</if>
- <if test="createBy != null">create_by = #{createBy},</if>
- <if test="createTime != null">create_time = #{createTime},</if>
- <if test="updateBy != null">update_by = #{updateBy},</if>
- <if test="updateTime != null">update_time = #{updateTime},</if>
- <if test="remark != null">remark = #{remark},</if>
- <if test="fBillingDeadline != null">f_billing_deadline = #{fBillingDeadline},</if>
- <if test="fProductName != null">f_product_name = #{fProductName},</if>
- <if test="fReviewDate != null">f_review_date = #{fReviewDate},</if>
- <if test="fTruckno != null">f_truckno = #{fTruckno},</if>
- <if test="fDriverName != null">f_driver_name = #{fDriverName},</if>
- <if test="fDriverTel != null">f_driver_tel = #{fDriverTel},</if>
- <if test="fDriverIdCar != null">f_driver_id_car = #{fDriverIdCar},</if>
- <if test="fBusinessType != null">f_business_type = #{fBusinessType},</if>
- <if test="fLabour != null">f_labour = #{fLabour},</if>
- <if test="fFleet != null">f_fleet = #{fFleet},</if>
- <if test="fInwarehouseid != null">f_inwarehouseid = #{fInwarehouseid},</if>
- <if test="fBstime != null">f_bstime = #{fBstime},</if>
- <if test="fCartype != null">f_cartype = #{fCartype},</if>
- <if test="fGoodsid != null">f_goodsid = #{fGoodsid},</if>
- <if test="fNewTrademodeid != null">f_new_trademodeid = #{fNewTrademodeid},</if>
- <if test="fLoadportid != null">f_loadportid = #{fLoadportid},</if>
- <if test="fDestportid != null">f_destportid = #{fDestportid},</if>
- <if test="fServiceitems != null">f_serviceitems = #{fServiceitems},</if>
- <if test="fInvoceobj != null">f_invoceobj = #{fInvoceobj},</if>
- <if test="fSign != null">f_sign = #{fSign},</if>
- <if test="fDetentioncargo != null">f_detentioncargo = #{fDetentioncargo},</if>
- <if test="fBooksmarks != null">f_booksmarks = #{fBooksmarks},</if>
- <if test="fShippername != null">f_shippername = #{fShippername},</if>
- <if test="fShipperattn != null">f_shipperattn = #{fShipperattn},</if>
- <if test="fShippertel != null">f_shippertel = #{fShippertel},</if>
- <if test="fConsigneername != null">f_consigneername = #{fConsigneername},</if>
- <if test="fConsigneeattn != null">f_consigneeattn = #{fConsigneeattn},</if>
- <if test="fConsigneetel != null">f_consigneetel = #{fConsigneetel},</if>
- <if test="fInsurance != null">f_insurance = #{fInsurance},</if>
- <if test="fInsuranceamt != null">f_insuranceamt = #{fInsuranceamt},</if>
- <if test="fClosedate != null">f_closedate = #{fClosedate},</if>
- <if test="fDocmentdate != null">f_docmentdate = #{fDocmentdate},</if>
- <if test="fVslid != null">f_vslid = #{fVslid},</if>
- <if test="fVoyid != null">f_voyid = #{fVoyid},</if>
- <if test="fTypeid != null">f_typeid = #{fTypeid},</if>
- <if test="fPaymode != null">f_paymode = #{fPaymode},</if>
- <if test="fLaneid != null">f_laneid = #{fLaneid},</if>
- <if test="fCntval != null">f_cntval = #{fCntval},</if>
- <if test="freeContainerDate != null">free_container_date = #{freeContainerDate},</if>
- </trim>
- where f_id = #{fId}
- </update>
- <update id="updateKaHeOrder" parameterType="TWarehousebills">
- update t_warehousebills
- <trim prefix="SET" suffixOverrides=",">
- <if test="fBillno != null">f_billno = #{fBillno},</if>
- <if test="fCustomsdeclartion != null">f_customsdeclartion = #{fCustomsdeclartion},</if>
- <if test="fOriginalbillno != null">f_originalbillno = #{fOriginalbillno},</if>
- <if test="fDeptid != null">f_deptid = #{fDeptid},</if>
- <if test="fBsdeptid != null">f_bsdeptid = #{fBsdeptid},</if>
- <if test="fContacts != null">f_contacts = #{fContacts},</if>
- <if test="fTel != null">f_tel = #{fTel},</if>
- <if test="fCorpid != null">f_corpid = #{fCorpid},</if>
- <if test="fTocorpid != null">f_tocorpid = #{fTocorpid},</if>
- <if test="fStltypeid != null">f_stltypeid = #{fStltypeid},</if>
- <if test="fBscorpno != null and fBscorpno != ''">f_bscorpno = #{fBscorpno},</if>
- <if test="fWarehouseid != null">f_warehouseid = #{fWarehouseid},</if>
- <if test="fStorekeeper != null">f_storekeeper = #{fStorekeeper},</if>
- <if test="fChargedate != null">f_chargedate = #{fChargedate},</if>
- <if test="fBsdate != null">f_bsdate = #{fBsdate},</if>
- <if test="fPlanqty != null">f_planqty = #{fPlanqty},</if>
- <if test="fPlangrossweight != null">f_plangrossweight = #{fPlangrossweight},</if>
- <if test="fPlannetweight != null">f_plannetweight = #{fPlannetweight},</if>
- <if test="fPlanvolumn != null">f_planvolumn = #{fPlanvolumn},</if>
- <if test="fQty != null">f_qty = #{fQty},</if>
- <if test="fGrossweight != null">f_grossweight = #{fGrossweight},</if>
- <if test="fNetweight != null">f_netweight = #{fNetweight},</if>
- <if test="fVolumn != null">f_volumn = #{fVolumn},</if>
- <if test="fTrademodeid != null">f_trademodeid = #{fTrademodeid},</if>
- <if test="fBillingway != null">f_billingway = #{fBillingway},</if>
- <if test="fSbu != null">f_sbu = #{fSbu},</if>
- <if test="fFeetunit != null">f_feetunit = #{fFeetunit},</if>
- <if test="fMblno != null">f_mblno = #{fMblno},</if>
- <if test="fVslvoy != null">f_vslvoy = #{fVslvoy},</if>
- <if test="fMarks != null and fMarks != ''">f_marks = #{fMarks},</if>
- <if test="fEta != null">f_eta = #{fEta},</if>
- <if test="fCustomno != null">f_customno = #{fCustomno},</if>
- <if test="fIfweigh != null">f_ifweigh = #{fIfweigh},</if>
- <if test="fIfpledge != null">f_ifpledge = #{fIfpledge},</if>
- <if test="fIfdamage != null">f_ifdamage = #{fIfdamage},</if>
- <if test="fBankcorpid != null">f_bankcorpid = #{fBankcorpid},</if>
- <if test="fBilltype != null">f_billtype = #{fBilltype},</if>
- <if test="fBillstatus != null">f_billstatus = #{fBillstatus},</if>
- <if test="delFlag != null">del_flag = #{delFlag},</if>
- <if test="createBy != null">create_by = #{createBy},</if>
- <if test="createTime != null">create_time = #{createTime},</if>
- <if test="fItemsStatus != null">f_items_status = #{fItemsStatus},</if>
- <if test="updateBy != null">update_by = #{updateBy},</if>
- <if test="updateTime != null">update_time = #{updateTime},</if>
- <if test="remark != null">remark = #{remark},</if>
- <if test="fBillingDeadline != null">f_billing_deadline = #{fBillingDeadline},</if>
- <if test="fProductName != null">f_product_name = #{fProductName},</if>
- <if test="fReviewDate != null and fBillstatus == 11" >f_review_date = #{fReviewDate},</if>
- <if test="fReviewDate != null and fBillstatus != 11">f_review_date = null,</if>
- <if test="fTruckno != null">f_truckno = #{fTruckno},</if>
- <if test="fDriverName != null">f_driver_name = #{fDriverName},</if>
- <if test="fDriverTel != null">f_driver_tel = #{fDriverTel},</if>
- <if test="fDriverIdCar != null">f_driver_id_car = #{fDriverIdCar},</if>
- <if test="fBusinessType != null">f_business_type = #{fBusinessType},</if>
- <if test="fReviewDate == null">f_review_date = null,</if>
- <if test="fLabour != null">f_labour = #{fLabour },</if>
- <if test="fFleet != null">f_fleet = #{fFleet},</if>
- <if test="fInwarehouseid != null">f_inwarehouseid = #{fInwarehouseid},</if>
- <if test="fBstime != null">f_bstime = #{fBstime},</if>
- <if test="fCartype != null">f_cartype = #{fCartype},</if>
- <if test="fGoodsid != null">f_goodsid = #{fGoodsid},</if>
- <if test="fNewTrademodeid != null">f_new_trademodeid = #{fNewTrademodeid},</if>
- <if test="fLoadportid != null">f_loadportid = #{fLoadportid},</if>
- <if test="fDestportid != null">f_destportid = #{fDestportid},</if>
- <if test="fServiceitems != null">f_serviceitems = #{fServiceitems},</if>
- <if test="fInvoceobj != null">f_invoceobj = #{fInvoceobj},</if>
- <if test="fSign != null">f_sign = #{fSign},</if>
- <if test="fDetentioncargo != null">f_detentioncargo = #{fDetentioncargo},</if>
- <if test="fBooksmarks != null">f_booksmarks = #{fBooksmarks},</if>
- <if test="fShippername != null">f_shippername = #{fShippername},</if>
- <if test="fShipperattn != null">f_shipperattn = #{fShipperattn},</if>
- <if test="fShippertel != null">f_shippertel = #{fShippertel},</if>
- <if test="fConsigneername != null">f_consigneername = #{fConsigneername},</if>
- <if test="fConsigneeattn != null">f_consigneeattn = #{fConsigneeattn},</if>
- <if test="fConsigneetel != null">f_consigneetel = #{fConsigneetel},</if>
- <if test="fInsurance != null">f_insurance = #{fInsurance},</if>
- <if test="fInsuranceamt != null">f_insuranceamt = #{fInsuranceamt},</if>
- <if test="fClosedate != null">f_closedate = #{fClosedate},</if>
- <if test="fDocmentdate != null">f_docmentdate = #{fDocmentdate},</if>
- <if test="fVslid != null">f_vslid = #{fVslid},</if>
- <if test="fVoyid != null">f_voyid = #{fVoyid},</if>
- <if test="fPaymode != null">f_paymode = #{fPaymode},</if>
- <if test="fLaneid != null">f_laneid = #{fLaneid},</if>
- <if test="fTypeid != null">f_typeid = #{fTypeid},</if>
- <if test="freeContainerDate != null">free_container_date = #{freeContainerDate},</if>
- </trim>
- where f_id = #{fId}
- </update>
- <delete id="deleteTWarehousebillsById" parameterType="Long">
- delete
- from t_warehousebills
- where f_id = #{fId}
- </delete>
- <delete id="deleteTWarehousebillsByIds" parameterType="String">
- delete
- item.*,
- bill.*,
- fess.*,
- enclosure.*
- from
- t_warehousebills bill
- LEFT JOIN t_warehousebillsfees fess ON fess.f_pid = bill.f_id
- LEFT JOIN t_enclosure enclosure ON enclosure.f_pid = bill.f_id
- LEFT JOIN t_warehousebillsitems item ON item.f_pid = bill.f_id
- where
- bill.f_id in
- <foreach item="fId" collection="array" open="(" separator="," close=")">
- #{fId}
- </foreach>
- </delete>
- <delete id="deleteKHTWarehousebillsByIds" parameterType="String">
- delete
- bill.*,
- fess.*,
- enclosure.*
- from
- t_warehousebills bill
- LEFT JOIN t_warehousebills_cntr fess ON fess.f_pid = bill.f_id
- LEFT JOIN t_warehousebills_cntritems enclosure ON enclosure.f_pid = bill.f_id
- where
- bill.f_id in
- <foreach item="fId" collection="array" open="(" separator="," close=")">
- #{fId}
- </foreach>
- </delete>
- <update id="warehouseFollowUpdate">
- update
- t_warehousebills
- <trim prefix="SET" suffixOverrides=",">
- <if test="fettle != null">f_billstatus = #{fettle},</if>
- <if test="auditItem != null and fettle == 6">f_review_date = #{auditItem},</if>
- <if test="auditItem != null and fettle != 6">f_review_date = null,</if>
- </trim>
- where f_id = #{fPid}
- </update>
- <select id="selectDetailedList" resultType="java.util.Map">
- SELECT
- t.f_id AS fId,
- item.f_id AS fItemsId,
- C.f_name AS fcorpid,
- t.f_mblno AS fMblno,
- g.f_name AS fGoodsid,
- dict.dict_label AS fBusinessType,
- t.f_marks AS fMarks,
- CASE
- WHEN t.f_billtype = 'SJRK' THEN
- '入库'
- WHEN t.f_billtype = 'SJCK' THEN
- '出库'
- WHEN t.f_billtype = 'CKDB' THEN
- '调拨'
- WHEN t.f_billtype = 'HQZY' THEN
- '货权转移'
- WHEN t.f_billtype = 'HWTG' THEN
- '货物通关'
- END AS fBilltype,
- item.f_bsdate AS fBsdate,
- item.f_warehouse_information AS fWarehouseInformation,
- dictTra.dict_label AS fTrademodeid,
- CASE
- WHEN t.f_billtype = 'SJRK' THEN
- ( SELECT SUM( it.f_qty ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fQtyRK,
- CASE
- WHEN t.f_billtype = 'SJRK' THEN
- ( SELECT SUM( it.f_grossweight ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fGrossweightRK,
- CASE
- WHEN t.f_billtype = 'SJRK' THEN
- ( SELECT SUM( it.f_netweight ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fNetweightRK,
- CASE
- WHEN t.f_billtype = 'SJCK' THEN
- ( SELECT SUM( it.f_qty ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fQtyCK,
- CASE
- WHEN t.f_billtype = 'SJCK' THEN
- ( SELECT SUM( it.f_grossweight ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fGrossweightCK,
- CASE
- WHEN t.f_billtype = 'SJCK' THEN
- ( SELECT SUM( it.f_netweight ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fNetweightCK,
- CASE
- WHEN t.f_billtype = 'CKDB' THEN
- ( SELECT SUM( it.f_qty ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fQtyDB,
- CASE
- WHEN t.f_billtype = 'CKDB' THEN
- ( SELECT SUM( it.f_grossweight ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fGrossweightDB,
- CASE
- WHEN t.f_billtype = 'CKDB' THEN
- ( SELECT SUM( it.f_netweight ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fNetweightDB,
- CASE
- WHEN t.f_billtype = 'HQZY' THEN
- ( SELECT SUM( it.f_qty ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fQtyHZ,
- CASE
- WHEN t.f_billtype = 'HQZY' THEN
- ( SELECT SUM( it.f_grossweight ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fGrossweightHZ,
- CASE
- WHEN t.f_billtype = 'HQZY' THEN
- ( SELECT SUM( it.f_netweight ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fNetweightHZ,
- CASE
- WHEN t.f_billtype = 'HWTG' THEN
- ( SELECT SUM( it.f_qty ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fQtyTG,
- CASE
- WHEN t.f_billtype = 'HWTG' THEN
- ( SELECT SUM( it.f_grossweight ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fGrossweightTG,
- CASE
- WHEN t.f_billtype = 'HWTG' THEN
- ( SELECT SUM( it.f_netweight ) FROM t_warehousebillsitems it WHERE it.f_pid = item.f_pid ) ELSE 0
- END AS fNetweightTG
- FROM t_warehousebills t
- LEFT JOIN t_warehousebillsitems item ON item.f_pid = t.f_id
- LEFT JOIN t_goods g ON item.f_goodsid = g.f_id
- LEFT JOIN t_corps C ON t.f_corpid = C.f_id
- LEFT JOIN sys_dict_data dict ON dict.dict_value = item.f_business_type
- LEFT JOIN sys_dict_data dictTra ON dictTra.dict_value = t.f_trademodeid
- WHERE dict.STATUS = '0'
- AND t.f_typeid IS NULL
- AND dict.dict_type = 'storage_type'
- AND dictTra.STATUS = '0'
- AND dictTra.dict_type = 'data_trademodes'
- AND item.f_billstatus = 40
- AND item.f_mblno = #{fMblno}
- AND (item.f_warehouselocid = #{fWarehouseLocationid} or
- item.f_transfer_warehouselocid = #{fWarehouseLocationid})
- AND t.f_trademodeid = #{fTrademodeids}
- AND item.f_business_type = #{fBusinessType}
- AND item.f_goodsid = #{fGoodsid}
- AND item.f_marks = #{fMarks}
- AND t.f_corpid = #{fCorpIds}
- GROUP BY t.f_id
- </select>
- <select id="webVersionOrderList" parameterType="TWarehousebills" resultMap="TWarehousebillsResult">
- SELECT
- tw.f_id,
- tw.f_billno,
- tw.f_customsdeclartion,
- tw.f_originalbillno,
- tw.f_deptid,
- tw.f_bsdeptid,
- tw.f_contacts,
- tw.f_tel,
- tw.f_corpid,
- tc.f_name corpName,
- tw.f_tocorpid,
- tw.f_stltypeid,
- tw.f_bscorpno,
- tw.f_warehouseid,
- tw.f_storekeeper,
- tw.f_chargedate,
- tw.f_bsdate,
- tw.f_planqty,
- tw.f_plangrossweight,
- tw.f_plannetweight,
- tw.f_planvolumn,
- tw.f_qty,
- tw.f_grossweight,
- tw.f_netweight,
- tw.f_volumn,
- tw.f_billingway,
- tw.f_trademodeid,
- tw.f_sbu,
- tw.f_feetunit,
- tw.f_mblno,
- tw.f_marks,
- tw.f_vslvoy,
- tw.f_eta,
- tw.f_customno,
- tw.f_ifweigh,
- tw.f_ifpledge,
- tw.f_ifdamage,
- tw.f_bankcorpid,
- tw.f_billtype,
- tw.f_billstatus,
- tw.f_items_status,
- tw.del_flag,
- tw.create_by,
- tw.create_time,
- tw.update_by,
- tw.update_time,
- tw.remark,
- tw.f_billing_deadline,
- tw.f_product_name,
- tw.f_review_date,
- tw.f_truckno,
- tw.f_driver_name,
- tw.f_driver_tel,
- tw.f_driver_id_car,
- tw.f_business_type,
- tw.f_labour,
- tw.f_fleet,
- tw.f_inwarehouseid,
- tw.f_bstime,
- tw.f_cartype,
- tw.f_goodsid,
- tw.f_new_trademodeid,
- tw.f_loadportid,
- address.f_name loadportidName,
- tw.f_destportid,
- ta.f_name destportidName,
- tw.f_serviceitems,
- sd.dict_label serviceitemsName,
- tw.f_invoceobj,
- sdi.dict_label invoceobjName,
- tw.f_sign,
- sdc.dict_label signName,
- tw.f_detentioncargo,
- sdt.dict_label detentioncargoName,
- tw.f_booksmarks,
- tw.f_shippername,
- tw.f_shipperattn,
- tw.f_shippertel,
- tw.f_consigneername,
- tw.f_consigneeattn,
- tw.f_consigneetel,
- tw.f_insurance,
- sdd.dict_label insuranceName,
- tw.f_insuranceamt,
- tw.f_closedate,
- tw.f_docmentdate,
- tw.f_vslid,
- tv.f_name vslidName,
- tw.f_voyid,
- ty.f_no voyidName,
- tw.f_typeid,
- tw.f_paymode,
- sda.dict_label paymodeName,
- tw.f_laneid,
- tr.f_name laneidName
- FROM t_warehousebills tw
- LEFT JOIN t_address address ON address.f_id = tw.f_loadportid
- LEFT JOIN t_address ta ON ta.f_id = tw.f_loadportid
- LEFT JOIN t_address tr ON tr.f_id = tw.f_laneid
- LEFT JOIN t_corps tc ON tc.f_id = tw.f_corpid
- LEFT JOIN sys_dict_data sd ON sd.dict_value = tw.f_serviceitems
- AND sd.dict_type = 'f_serviceitems'
- LEFT JOIN sys_dict_data sdi ON sdi.dict_value = tw.f_invoceobj
- AND sdi.dict_type = 'f_invoceobj'
- LEFT JOIN sys_dict_data sdc ON sdc.dict_value = tw.f_sign
- AND sdc.dict_type = 'f_sign'
- LEFT JOIN sys_dict_data sdt ON sdt.dict_value = tw.f_detentioncargo
- AND sdt.dict_type = 'f_detentioncargo'
- LEFT JOIN sys_dict_data sdd ON sdd.dict_value = tw.f_insurance
- AND sdd.dict_type = 'f_insurance'
- LEFT JOIN sys_dict_data sda ON sda.dict_value = tw.f_paymode
- AND sda.dict_type = 'f_paymode'
- LEFT JOIN t_vessel tv ON tv.f_id = tw.f_vslid
- LEFT JOIN t_voyage ty ON ty.f_id = tw.f_voyid
- <where>
- tw.f_typeid = '1'
- <if test="fId != null">and tw.f_id = #{fId}</if>
- <if test="fBillno != null and fBillno != ''">and tw.f_billno = #{fBillno}</if>
- <if test="fCustomsdeclartion != null and fCustomsdeclartion != ''">and tw.f_customsdeclartion =#{fCustomsdeclartion}</if>
- <if test="fOriginalbillno != null and fOriginalbillno != ''">and tw.f_originalbillno = #{fOriginalbillno}</if>
- <if test="fDeptid != null ">and tw.f_deptid = #{fDeptid}</if>
- <if test="fBsdeptid != null ">and tw.f_bsdeptid = #{fBsdeptid}</if>
- <if test="fContacts != null and fContacts != ''">and tw.f_contacts = #{fContacts}</if>
- <if test="fTel != null and fTel != ''">and tw.f_tel = #{fTel}</if>
- <if test="fCorpid != null ">and tw.f_corpid = #{fCorpid}</if>
- <if test="fTocorpid != null ">and tw.f_tocorpid = #{fTocorpid}</if>
- <if test="fStltypeid != null ">and tw.f_stltypeid = #{fStltypeid}</if>
- <if test="fBscorpno != null and fBscorpno != ''">and tw.f_bscorpno = #{fBscorpno}</if>
- <if test="fWarehouseid != null ">and tw.f_warehouseid = #{fWarehouseid}</if>
- <if test="fStorekeeper != null and fStorekeeper != ''">and tw.f_storekeeper = #{fStorekeeper}</if>
- <if test="fChargedate != null ">and tw.f_chargedate = #{fChargedate}</if>
- <if test="fBsdate != null ">and tw.f_bsdate = #{fBsdate}</if>
- <if test="fPlanqty != null ">and tw.f_planqty = #{fPlanqty}</if>
- <if test="fPlangrossweight != null ">and tw.f_plangrossweight = #{fPlangrossweight}</if>
- <if test="fPlannetweight != null ">and tw.f_plannetweight = #{fPlannetweight}</if>
- <if test="fPlanvolumn != null ">and tw.f_planvolumn = #{fPlanvolumn}</if>
- <if test="fQty != null ">and tw.f_qty = #{fQty}</if>
- <if test="fGrossweight != null ">and tw.f_grossweight = #{fGrossweight}</if>
- <if test="fNetweight != null ">and tw.f_netweight = #{fNetweight}</if>
- <if test="fVolumn != null ">and tw.f_volumn = #{fVolumn}</if>
- <if test="fBillingway != null ">and tw.f_billingway = #{fBillingway}</if>
- <if test="fTrademodeid != null ">and tw.f_trademodeid = #{fTrademodeid}</if>
- <if test="fSbu != null ">and tw.f_sbu = #{fSbu}</if>
- <if test="fFeetunit != null and fFeetunit != ''">and tw.f_feetunit = #{fFeetunit}</if>
- <if test="fMblno != null and fMblno != ''">and tw.f_mblno = #{fMblno}</if>
- <if test="fMarks != null and fMarks != ''">and tw.f_marks = #{fMarks}</if>
- <if test="fVslvoy != null and fVslvoy != ''">and tw.f_vslvoy = #{fVslvoy}</if>
- <if test="fEta != null ">and tw.f_eta = #{fEta}</if>
- <if test="fCustomno != null and fCustomno != ''">and tw.f_customno = #{fCustomno}</if>
- <if test="fIfweigh != null and fIfweigh != ''">and tw.f_ifweigh = #{fIfweigh}</if>
- <if test="fIfpledge != null and fIfpledge != ''">and tw.f_ifpledge = #{fIfpledge}</if>
- <if test="fIfdamage != null and fIfdamage != ''">and tw.f_ifdamage = #{fIfdamage}</if>
- <if test="fBankcorpid != null and fBankcorpid != ''">and tw.f_bankcorpid = #{fBankcorpid}</if>
- <if test="fBilltype != null and fBilltype != ''">and tw.f_billtype = #{fBilltype}</if>
- <if test="fBillstatus != null ">and tw.f_billstatus = #{fBillstatus}</if>
- <if test="fItemsStatus != null ">and tw.f_items_status = #{fItemsStatus}</if>
- <if test="fBillingDeadline != null ">and tw.f_billing_deadline = #{fBillingDeadline}</if>
- <if test="fProductName != null and fProductName != ''">and tw.f_product_name like concat('%',
- #{fProductName}, '%')
- </if>
- <if test="fReviewDate != null ">and tw.f_review_date = #{fReviewDate}</if>
- <if test="fTruckno != null and fTruckno != ''">and tw.f_truckno = #{fTruckno}</if>
- <if test="fDriverName != null and fDriverName != ''">and tw.f_driver_name like concat('%', #{fDriverName},
- '%')
- </if>
- <if test="fDriverTel != null and fDriverTel != ''">and tw.f_driver_tel = #{fDriverTel}</if>
- <if test="fDriverIdCar != null and fDriverIdCar != ''">and tw.f_driver_id_car = #{fDriverIdCar}</if>
- <if test="fBusinessType != null and fBusinessType != ''">and tw.f_business_type = #{fBusinessType}</if>
- <if test="fLabour != null ">and tw.f_labour = #{fLabour}</if>
- <if test="fFleet != null ">and tw.f_fleet = #{fFleet}</if>
- <if test="fInwarehouseid != null ">and tw.f_inwarehouseid = #{fInwarehouseid}</if>
- <if test="fBstime != null ">and tw.f_bstime = #{fBstime}</if>
- <if test="fCartype != null ">and tw.f_cartype = #{fCartype}</if>
- <if test="fGoodsid != null ">and tw.f_goodsid = #{fGoodsid}</if>
- <if test="fNewTrademodeid != null ">and tw.f_new_trademodeid = #{fNewTrademodeid}</if>
- <if test="fLoadportid != null ">and tw.f_loadportid = #{fLoadportid}</if>
- <if test="fDestportid != null ">and tw.f_destportid = #{fDestportid}</if>
- <if test="fServiceitems != null and fServiceitems != ''">and tw.f_serviceitems = #{fServiceitems}</if>
- <if test="fInvoceobj != null and fInvoceobj != ''">and tw.f_invoceobj = #{fInvoceobj}</if>
- <if test="fSign != null ">and tw.f_sign = #{fSign}</if>
- <if test="fDetentioncargo != null ">and tw.f_detentioncargo = #{fDetentioncargo}</if>
- <if test="fBooksmarks != null and fBooksmarks != ''">and tw.f_booksmarks = #{fBooksmarks}</if>
- <if test="fShippername != null and fShippername != ''">and tw.f_shippername like concat('%',
- #{fShippername}, '%')
- </if>
- <if test="fShipperattn != null and fShipperattn != ''">and tw.f_shipperattn = #{fShipperattn}</if>
- <if test="fShippertel != null and fShippertel != ''">and tw.f_shippertel = #{fShippertel}</if>
- <if test="fConsigneername != null and fConsigneername != ''">and tw.f_consigneername like concat('%',
- #{fConsigneername}, '%')
- </if>
- <if test="fConsigneeattn != null and fConsigneeattn != ''">and tw.f_consigneeattn = #{fConsigneeattn}</if>
- <if test="fConsigneetel != null and fConsigneetel != ''">and tw.f_consigneetel = #{fConsigneetel}</if>
- <if test="fInsurance != null and fInsurance != ''">and tw.f_insurance = #{fInsurance}</if>
- <if test="fInsuranceamt != null ">and tw.f_insuranceamt = #{fInsuranceamt}</if>
- <if test="fClosedate != null ">and tw.f_closedate = #{fClosedate}</if>
- <if test="fDocmentdate != null ">and tw.f_docmentdate = #{fDocmentdate}</if>
- <if test="fVslid != null ">and tw.f_vslid = #{fVslid}</if>
- <if test="fVoyid != null ">and tw.f_voyid = #{fVoyid}</if>
- <if test="fTypeid != null ">and tw.f_typeid = #{fTypeid}</if>
- <if test="fPaymode != null">and tw.f_paymode = #{fPaymode},</if>
- <if test="fLaneid != null">and tw.f_laneid = #{fLaneid},</if>
- <if test='timeInterval != null and timeInterval[0] != null and timeInterval[0]!= ""'>
- and tw.create_time >= #{timeInterval[0]}
- </if>
- <if test='timeInterval != null and timeInterval[1] != null and timeInterval[1]!= ""'>
- and tw.create_time <= #{timeInterval[1]}
- </if>
- </where>
- ORDER BY tw.create_time DESC, tw.f_id DESC
- </select>
- <select id="ruoYiVersionOrderList" parameterType="TWarehousebills" resultType="map">
- SELECT
- tw.f_id fId,
- tw.f_billno fBillno,
- tw.f_mblno fMblno,
- sd.dict_label fServiceitems,
- tw.f_consigneername fConsigneername,
- ta.f_name fName,
- tw.f_bsdate fBsdate,
- tc.f_cntrcount fCntrcount,
- tc.f_no fNo,
- tv.f_name vslName,
- ty.f_no voyNo,
- tw.f_corpid,
- tp.f_name corpName,
- tw.create_by createBy,
- tw.create_time createTime,
- tw.f_loadportid,
- tre.f_name loadportName,
- tw.f_destportid,
- ts.f_name destportName,
- tc.f_name goodsName,
- CASE
- WHEN tw.f_billstatus = '1' THEN
- '下单新建'
- WHEN tw.f_billstatus = '2' THEN
- '下单暂存'
- WHEN tw.f_billstatus = '3' THEN
- '下单驳回'
- WHEN tw.f_billstatus = '4' THEN
- '下单提交'
- WHEN tw.f_billstatus = '5' THEN
- '下单审批中'
- WHEN tw.f_billstatus = '6' THEN
- '下单审批通过'
- WHEN tw.f_billstatus = '7' THEN
- '配船暂存'
- WHEN tw.f_billstatus = '8' THEN
- '配船驳回'
- WHEN tw.f_billstatus = '9' THEN
- '配船提交'
- WHEN tw.f_billstatus = '10' THEN
- '配船审批中'
- WHEN tw.f_billstatus = '11' THEN
- '配船审批通过'
- WHEN tw.f_billstatus = '12' THEN
- '运单变更'
- END AS fBillstatus,
- CASE
- WHEN tf.f_billstatus = '1' THEN
- '新建'
- WHEN tf.f_billstatus = '2' THEN
- '暂存'
- WHEN tf.f_billstatus = '3' THEN
- '驳回'
- WHEN tf.f_billstatus = '4' THEN
- '提交'
- WHEN tf.f_billstatus = '5' THEN
- '审批中'
- WHEN tf.f_billstatus = '6' THEN
- '审批通过'
- END AS moneyStatus
- FROM
- t_warehousebills tw
- LEFT JOIN t_address ta ON ta.f_id = tw.f_laneid
- LEFT JOIN t_address tre ON tre.f_id = tw.f_loadportid
- LEFT JOIN t_address ts ON ts.f_id = tw.f_destportid
- LEFT JOIN sys_dict_data sd ON sd.dict_value = tw.f_serviceitems
- AND sd.dict_type = 'f_serviceitems'
- LEFT JOIN t_vessel tv ON tw.f_vslid = tv.f_id
- LEFT JOIN t_voyage ty ON tw.f_voyid = ty.f_id
- LEFT JOIN t_corps tp ON tw.f_corpid = tp.f_id
- LEFT JOIN (
- SELECT
- th.f_pid,
- th.f_cntrcount,
- tr.f_no,
- th.f_cntrid,
- tg.f_name
- FROM
- t_warehousebills_cntr th
- LEFT JOIN t_cntr tr ON th.f_cntrid = tr.f_id
- LEFT JOIN t_goods tg ON th.f_goodsid = tg.f_id
- ) tc ON tc.f_pid = tw.f_id
- LEFT JOIN (SELECT f_pid,f_billstatus FROM t_warehousebillsfees GROUP BY f_pid,f_billstatus)tf ON tf.f_pid = tw.f_id
- <where>
- tw.f_typeid = '1'
- <if test="fId != null">and tw.f_id = #{fId}</if>
- <if test="fBillno != null and fBillno != ''">and tw.f_billno = #{fBillno}</if>
- <if test="fCustomsdeclartion != null and fCustomsdeclartion != ''">and tw.f_customsdeclartion =
- #{fCustomsdeclartion}
- </if>
- <if test="fOriginalbillno != null and fOriginalbillno != ''">and tw.f_originalbillno = #{fOriginalbillno}
- </if>
- <if test="fDeptid != null ">and tw.f_deptid = #{fDeptid}</if>
- <if test="fBsdeptid != null ">and tw.f_bsdeptid = #{fBsdeptid}</if>
- <if test="fContacts != null and fContacts != ''">and tw.f_contacts = #{fContacts}</if>
- <if test="fTel != null and fTel != ''">and tw.f_tel = #{fTel}</if>
- <if test="fCorpid != null ">and tw.f_corpid = #{fCorpid}</if>
- <if test="fTocorpid != null ">and tw.f_tocorpid = #{fTocorpid}</if>
- <if test="fStltypeid != null ">and tw.f_stltypeid = #{fStltypeid}</if>
- <if test="fBscorpno != null and fBscorpno != ''">and tw.f_bscorpno = #{fBscorpno}</if>
- <if test="fWarehouseid != null ">and tw.f_warehouseid = #{fWarehouseid}</if>
- <if test="fStorekeeper != null and fStorekeeper != ''">and tw.f_storekeeper = #{fStorekeeper}</if>
- <if test="fChargedate != null ">and tw.f_chargedate = #{fChargedate}</if>
- <if test="fBsdate != null ">and tw.f_bsdate = #{fBsdate}</if>
- <if test="fPlanqty != null ">and tw.f_planqty = #{fPlanqty}</if>
- <if test="fPlangrossweight != null ">and tw.f_plangrossweight = #{fPlangrossweight}</if>
- <if test="fPlannetweight != null ">and tw.f_plannetweight = #{fPlannetweight}</if>
- <if test="fPlanvolumn != null ">and tw.f_planvolumn = #{fPlanvolumn}</if>
- <if test="fQty != null ">and tw.f_qty = #{fQty}</if>
- <if test="fGrossweight != null ">and tw.f_grossweight = #{fGrossweight}</if>
- <if test="fNetweight != null ">and tw.f_netweight = #{fNetweight}</if>
- <if test="fVolumn != null ">and tw.f_volumn = #{fVolumn}</if>
- <if test="fBillingway != null ">and tw.f_billingway = #{fBillingway}</if>
- <if test="fTrademodeid != null ">and tw.f_trademodeid = #{fTrademodeid}</if>
- <if test="fSbu != null ">and tw.f_sbu = #{fSbu}</if>
- <if test="fFeetunit != null and fFeetunit != ''">and tw.f_feetunit = #{fFeetunit}</if>
- <if test="fMblno != null and fMblno != ''">and tw.f_mblno = #{fMblno}</if>
- <if test="fMarks != null and fMarks != ''">and tw.f_marks = #{fMarks}</if>
- <if test="fVslvoy != null and fVslvoy != ''">and tw.f_vslvoy = #{fVslvoy}</if>
- <if test="fEta != null ">and tw.f_eta = #{fEta}</if>
- <if test="fCustomno != null and fCustomno != ''">and tw.f_customno = #{fCustomno}</if>
- <if test="fIfweigh != null and fIfweigh != ''">and tw.f_ifweigh = #{fIfweigh}</if>
- <if test="fIfpledge != null and fIfpledge != ''">and tw.f_ifpledge = #{fIfpledge}</if>
- <if test="fIfdamage != null and fIfdamage != ''">and tw.f_ifdamage = #{fIfdamage}</if>
- <if test="fBankcorpid != null and fBankcorpid != ''">and tw.f_bankcorpid = #{fBankcorpid}</if>
- <if test="fBilltype != null and fBilltype != ''">and tw.f_billtype = #{fBilltype}</if>
- <if test="fBillstatus != null ">and tw.f_billstatus = #{fBillstatus}</if>
- <if test="fItemsStatus != null ">and tw.f_items_status = #{fItemsStatus}</if>
- <if test="fBillingDeadline != null ">and tw.f_billing_deadline = #{fBillingDeadline}</if>
- <if test="fProductName != null and fProductName != ''">and tw.f_product_name like concat('%',
- #{fProductName}, '%')
- </if>
- <if test="fReviewDate != null ">and tw.f_review_date = #{fReviewDate}</if>
- <if test="fTruckno != null and fTruckno != ''">and tw.f_truckno = #{fTruckno}</if>
- <if test="fDriverName != null and fDriverName != ''">and tw.f_driver_name like concat('%', #{fDriverName},
- '%')
- </if>
- <if test="fDriverTel != null and fDriverTel != ''">and tw.f_driver_tel = #{fDriverTel}</if>
- <if test="fDriverIdCar != null and fDriverIdCar != ''">and tw.f_driver_id_car = #{fDriverIdCar}</if>
- <if test="fBusinessType != null and fBusinessType != ''">and tw.f_business_type = #{fBusinessType}</if>
- <if test="fLabour != null ">and tw.f_labour = #{fLabour}</if>
- <if test="fFleet != null ">and tw.f_fleet = #{fFleet}</if>
- <if test="fInwarehouseid != null ">and tw.f_inwarehouseid = #{fInwarehouseid}</if>
- <if test="fBstime != null ">and tw.f_bstime = #{fBstime}</if>
- <if test="fCartype != null ">and tw.f_cartype = #{fCartype}</if>
- <if test="fGoodsid != null ">and tw.f_goodsid = #{fGoodsid}</if>
- <if test="fNewTrademodeid != null ">and tw.f_new_trademodeid = #{fNewTrademodeid}</if>
- <if test="fLoadportid != null ">and tw.f_loadportid = #{fLoadportid}</if>
- <if test="fDestportid != null ">and tw.f_destportid = #{fDestportid}</if>
- <if test="fServiceitems != null and fServiceitems != ''">and tw.f_serviceitems = #{fServiceitems}</if>
- <if test="fInvoceobj != null and fInvoceobj != ''">and tw.f_invoceobj = #{fInvoceobj}</if>
- <if test="fSign != null ">and tw.f_sign = #{fSign}</if>
- <if test="fDetentioncargo != null ">and tw.f_detentioncargo = #{fDetentioncargo}</if>
- <if test="fBooksmarks != null and fBooksmarks != ''">and tw.f_booksmarks = #{fBooksmarks}</if>
- <if test="fShippername != null and fShippername != ''">and tw.f_shippername like concat('%',
- #{fShippername}, '%')
- </if>
- <if test="fShipperattn != null and fShipperattn != ''">and tw.f_shipperattn = #{fShipperattn}</if>
- <if test="fShippertel != null and fShippertel != ''">and tw.f_shippertel = #{fShippertel}</if>
- <if test="fConsigneername != null and fConsigneername != ''">and tw.f_consigneername like concat('%',
- #{fConsigneername}, '%')
- </if>
- <if test="fConsigneeattn != null and fConsigneeattn != ''">and tw.f_consigneeattn = #{fConsigneeattn}</if>
- <if test="fConsigneetel != null and fConsigneetel != ''">and tw.f_consigneetel = #{fConsigneetel}</if>
- <if test="fInsurance != null and fInsurance != ''">and tw.f_insurance = #{fInsurance}</if>
- <if test="fInsuranceamt != null ">and tw.f_insuranceamt = #{fInsuranceamt}</if>
- <if test="fClosedate != null ">and tw.f_closedate = #{fClosedate}</if>
- <if test="fDocmentdate != null ">and tw.f_docmentdate = #{fDocmentdate}</if>
- <if test="fVslid != null ">and tw.f_vslid = #{fVslid}</if>
- <if test="fVoyid != null ">and tw.f_voyid = #{fVoyid}</if>
- <if test="fTypeid != null ">and tw.f_typeid = #{fTypeid}</if>
- <if test="fPaymode != null">and tw.f_paymode = #{fPaymode},</if>
- <if test="fLaneid != null">and tw.f_laneid = #{fLaneid},</if>
- <if test='startTime != null'>
- and tw.create_time >= #{startTime}
- </if>
- <if test='endTime != null'>
- and tw.create_time <= #{endTime}
- </if>
- <if test="fCntrid != null ">and tc.f_cntrid = #{fCntrid}</if>
- <if test="fCntrcount != null ">and tc.f_cntrcount = #{fCntrcount}</if>
- <if test="vslidName != null and vslidName != ''">and tv.f_name like concat('%',
- #{vslidName}, '%')
- </if>
- <if test="voyidName != null and voyidName != ''">and ty.f_no like concat('%',
- #{voyidName}, '%')
- </if>
- <if test="boxNumber != null and boxNumber != ''">and tc.f_no like concat('%',
- #{voyidName}, '%')
- </if>
- <if test="createBy != null and createBy != ''">and tw.create_by = #{createBy}</if>
- <if test='cLoadDate != null and cLoadDate[0] != null and cLoadDate[0]!= ""'>
- and tw.f_bsdate >= #{cLoadDate[0]}
- </if>
- <if test='cLoadDate != null and cLoadDate[1] != null and cLoadDate[1]!= ""'>
- and tw.f_bsdate <= #{cLoadDate[1]}
- </if>
- </where>
- ORDER BY tw.create_time DESC, tw.f_id DESC
- </select>
- <select id="webVersionOrderById" parameterType="TWarehousebills" resultMap="TWarehousebillsResult">
- SELECT tw.f_id,
- tw.f_billno,
- tw.f_customsdeclartion,
- tw.f_originalbillno,
- tw.f_deptid,
- tw.f_bsdeptid,
- tw.f_contacts,
- tw.f_tel,
- tw.f_corpid,
- tc.f_name corpName,
- tw.f_tocorpid,
- tw.f_stltypeid,
- tw.f_bscorpno,
- tw.f_warehouseid,
- tw.f_storekeeper,
- tw.f_chargedate,
- tw.f_bsdate,
- tw.f_planqty,
- tw.f_plangrossweight,
- tw.f_plannetweight,
- tw.f_planvolumn,
- tw.f_qty,
- tw.f_grossweight,
- tw.f_netweight,
- tw.f_volumn,
- tw.f_billingway,
- tw.f_trademodeid,
- tw.f_sbu,
- tw.f_feetunit,
- tw.f_mblno,
- tw.f_marks,
- tw.f_vslvoy,
- tw.f_eta,
- tw.f_customno,
- tw.f_ifweigh,
- tw.f_ifpledge,
- tw.f_ifdamage,
- tw.f_bankcorpid,
- tw.f_billtype,
- tw.f_billstatus,
- tw.f_items_status,
- tw.del_flag,
- tw.create_by,
- tw.create_time,
- tw.update_by,
- tw.update_time,
- tw.remark,
- tw.f_billing_deadline,
- tw.f_product_name,
- tw.f_review_date,
- tw.f_truckno,
- tw.f_driver_name,
- tw.f_driver_tel,
- tw.f_driver_id_car,
- tw.f_business_type,
- tw.f_labour,
- tw.f_fleet,
- tw.f_inwarehouseid,
- tw.f_bstime,
- tw.f_cartype,
- tw.f_goodsid,
- tw.f_new_trademodeid,
- tw.f_loadportid,
- address.f_name loadportidName,
- tw.f_destportid,
- ta.f_name destportidName,
- tw.f_serviceitems,
- sd.dict_label serviceitemsName,
- tw.f_invoceobj,
- sdi.dict_label invoceobjName,
- tw.f_sign,
- sdc.dict_label signName,
- tw.f_detentioncargo,
- sdt.dict_label detentioncargoName,
- tw.f_booksmarks,
- tw.f_shippername,
- tw.f_shipperattn,
- tw.f_shippertel,
- tw.f_consigneername,
- tw.f_consigneeattn,
- tw.f_consigneetel,
- tw.f_insurance,
- sdd.dict_label insuranceName,
- tw.f_insuranceamt,
- tw.f_closedate,
- tw.f_docmentdate,
- tw.f_vslid,
- tv.f_name vslidName,
- tw.f_voyid,
- ty.f_no voyidName,
- tw.f_typeid,
- tw.f_paymode,
- sda.dict_label paymodeName,
- tw.f_laneid,
- tr.f_name laneidName
- FROM t_warehousebills tw
- LEFT JOIN t_address address ON address.f_id = tw.f_loadportid
- LEFT JOIN t_address ta ON ta.f_id = tw.f_loadportid
- LEFT JOIN t_address tr ON tr.f_id = tw.f_laneid
- LEFT JOIN t_corps tc ON tc.f_id = tw.f_corpid
- LEFT JOIN sys_dict_data sd ON sd.dict_value = tw.f_serviceitems
- AND sd.dict_type = 'f_serviceitems'
- LEFT JOIN sys_dict_data sdi ON sdi.dict_value = tw.f_invoceobj
- AND sdi.dict_type = 'f_invoceobj'
- LEFT JOIN sys_dict_data sdc ON sdc.dict_value = tw.f_sign
- AND sdc.dict_type = 'f_sign'
- LEFT JOIN sys_dict_data sdt ON sdt.dict_value = tw.f_detentioncargo
- AND sdt.dict_type = 'f_detentioncargo'
- LEFT JOIN sys_dict_data sdd ON sdd.dict_value = tw.f_insurance
- AND sdd.dict_type = 'f_insurance'
- LEFT JOIN sys_dict_data sda ON sda.dict_value = tw.f_paymode
- AND sda.dict_type = 'f_paymode'
- LEFT JOIN t_vessel tv ON tv.f_id = tw.f_vslid
- LEFT JOIN t_voyage ty ON ty.f_id = tw.f_voyid
- where tw.f_id = #{fId}
- </select>
- <select id="selectTWarehousebillsfMblno" parameterType="TWarehousebills" resultMap="TWarehousebillsResult">
- SELECT
- f_id,
- f_mblno
- FROM
- t_warehousebills
- WHERE
- f_typeid = '1'
- and f_mblno = #{fMblno}
- </select>
- <select id="selectAppStockList" parameterType="TWarehousebills" resultType="Map">
- SELECT DISTINCT
- w.f_id fId,
- w.f_corpid fCorpid,
- c.f_name corpName,
- w.f_bsdate fBsdate,
- g.f_name goodsName,
- w.f_mblno fMblno,
- w.f_qty fQty,
- w.f_cntval fCntval,
- w.f_planqty fPlanqty,
- t.f_name fWarehouseName,
- w.f_planvolumn fPlanvolumn,
- w.f_plannetweight fPlannetweight,
- w.f_plangrossweight fPlangrossweight,
- w.f_grossweight fGrossweight,
- w.f_storekeeper fStorekeeper,
- w.create_by createBy,
- w.f_warehouseid fWarehouseid,
- w.f_driver_tel fDriverTel,
- w.f_trademodeid fTrademodeid,
- w.f_product_name fProductName,
- CASE
- WHEN w.f_billtype = 'SJRK'
- AND w.f_items_status = '1' THEN
- '计划'
- WHEN w.f_billtype = 'SJRK'
- AND w.f_items_status = '2' THEN
- '待入库'
- WHEN w.f_billtype = 'SJRK'
- AND w.f_items_status = '3' THEN
- '入库中'
- WHEN w.f_billtype = 'SJRK'
- AND w.f_items_status = '4' THEN
- '已入库'
- WHEN w.f_billtype = 'SJCK'
- AND w.f_items_status = '1' THEN
- '计划'
- WHEN w.f_billtype = 'SJCK'
- AND w.f_items_status = '2' THEN
- '待出库'
- WHEN w.f_billtype = 'SJCK'
- AND w.f_items_status = '3' THEN
- '出库中'
- WHEN w.f_billtype = 'SJCK'
- AND w.f_items_status = '4' THEN
- '已出库'
- WHEN w.f_billtype = 'CKDB'
- AND w.f_items_status = '1' THEN
- '计划'
- WHEN w.f_billtype = 'CKDB'
- AND w.f_items_status = '2' THEN
- '待调拨'
- WHEN w.f_billtype = 'CKDB'
- AND w.f_items_status = '3' THEN
- '调拨中'
- WHEN w.f_billtype = 'CKDB'
- AND w.f_items_status = '4' THEN
- '已调拨'
- WHEN w.f_billtype = 'HWTG'
- AND w.f_items_status = '1' THEN
- '计划'
- WHEN w.f_billtype = 'HWTG'
- AND w.f_items_status = '2' THEN
- '待调拨'
- WHEN w.f_billtype = 'HWTG'
- AND w.f_items_status = '3' THEN
- '调拨中'
- WHEN w.f_billtype = 'HWTG'
- AND w.f_items_status = '4' THEN
- '已调拨'
- END AS fBillstatus
- FROM
- t_warehousebills w
- LEFT JOIN t_corps c ON c.f_id = w.f_corpid
- LEFT JOIN t_goods g ON g.f_id = w.f_goodsid
- LEFT JOIN t_warehouse t ON t.f_id = w.f_warehouseid
- left join sys_user u on w.f_storekeeper = u.user_name
- left join sys_dept d on w.f_bsdeptid = d.dept_id
- where
- w.f_id != ''
- and w.f_billtype = #{fBilltype}
- AND w.f_planqty != f_qty
- AND w.f_billstatus != 6
- <if test="fMblno != null ">and w.f_mblno like concat('%', #{fMblno}, '%')</if>
- <if test="fItemsStatus != null ">and w.f_items_status = #{fItemsStatus}</if>
- <if test="fBillstatus != null ">and w.f_billstatus = #{fBillstatus}</if>
- <if test='timeInterval != null and timeInterval[0] != null and timeInterval[0]!= ""'>
- and w.f_bsdate >= #{timeInterval[0]}
- </if>
- <if test='timeInterval != null and timeInterval[1] != null and timeInterval[1]!= ""'>
- and w.f_bsdate <= #{timeInterval[1]}
- </if>
- ${params.dataScope}
- order by w.f_bsdate desc
- </select>
- <select id="selectWarehouseItemListById" resultType="java.util.Map">
- SELECT
- t.f_id fId,
- t.f_pid fPid,
- c.f_name corpName,
- t.f_bsdate fBsdate,
- g.f_name goodsName,
- t.f_mblno fMblno,
- t.f_warehouse_information fWarehouseInformation,
- t.f_truckno fTruckno,
- t.f_cntrno fCntrno,
- cntr.f_name cntrtypes,
- t.f_cntrtype fCntrtype,
- t.f_qty fQty,
- t.f_grossweight fGrossweight,
- t.f_cntqty fCntqty,
- CASE
- WHEN t.f_billstatus = '10' THEN
- '计划'
- WHEN t.f_billstatus = '20' THEN
- IF(w.f_billtype = 'SJRK', '待入库', IF(w.f_billtype = 'SJCK','待出库', IF(w.f_billtype = 'CKDB', '待调拨',IF(w.f_billtype = 'HWTG', '待通关', IF(w.f_billtype = 'HQZY', '待转移', '无')))))
- WHEN t.f_billstatus = '30' THEN
- IF(w.f_billtype = 'SJRK', '入库中', IF(w.f_billtype = 'SJCK','出库中', IF(w.f_billtype = 'CKDB', '调拨中',IF(w.f_billtype = 'HWTG', '通关中', IF(w.f_billtype = 'HQZY', '转移中', '无')))))
- WHEN t.f_billstatus = '40' THEN
- IF(w.f_billtype = 'SJRK', '已入库', IF(w.f_billtype = 'SJCK','已出库', IF(w.f_billtype = 'CKDB', '已调拨',IF(w.f_billtype = 'HWTG', '已通关', IF(w.f_billtype = 'HQZY', '已转移', '无')))))
- END fBillstatus
- FROM
- t_warehousebills w
- LEFT JOIN t_warehousebillsitems t ON t.f_pid = w.f_id
- LEFT JOIN t_corps c ON c.f_id = w.f_corpid
- LEFT JOIN t_goods g ON g.f_id = t.f_goodsid
- LEFT JOIN t_cntr cntr ON cntr.f_id = t.f_cntrtype
- where
- t.f_pid = #{fId}
- </select>
- <select id="selectSingleAnalysis" parameterType="com.ruoyi.reportManagement.domain.SingleAnalysisExcel" resultType="com.ruoyi.reportManagement.domain.SingleAnalysisExcel">
- SELECT
- DISTINCT
- c.f_name corpName,
- #{fMblno} fMblno,
- w.f_product_name goodsName,
- d.dict_label fBusinessType,
- w.f_cntval fCntval,
- IF(item.f_billtype = 'SJRK' || item.f_billtype = 'HQZY' AND w.f_tocorpid = #{fCorpid} || item.f_billtype = 'CKDB', date_format( item.f_bsdate, '%Y-%m-%d' ), NULL) inBsdate,
- IF(item.f_billtype = 'SJRK' || item.f_billtype = 'HQZY' AND w.f_tocorpid = #{fCorpid} || item.f_billtype = 'CKDB' AND ware.f_id = item.f_transfer_warehouselocid, item.f_qty, 0) inQty,
- IF(item.f_billtype = 'SJRK' || item.f_billtype = 'HQZY' AND w.f_corpid = #{fCorpid} || item.f_billtype = 'CKDB' AND ware.f_id = item.f_transfer_warehouselocid, item.f_grossweight, 0.00) inGrossweight,
- IF(item.f_billtype = 'SJCK' || item.f_billtype = 'HQZY' AND w.f_corpid = #{fCorpid}, date_format( item.f_bsdate, '%Y-%m-%d' ), NULL ) outBsdate,
- IF( item.f_billtype = 'SJCK' || item.f_billtype = 'HQZY' AND w.f_corpid = #{fCorpid}, item.f_qty, 0 ) outQty,
- IF( item.f_billtype = 'SJCK' || item.f_billtype = 'HQZY' AND w.f_corpid = #{fCorpid}, item.f_grossweight, 0.00 ) outGrossweight,
- CASE
- WHEN item.f_billtype = 'SJRK' THEN
- '入库'
- WHEN item.f_billtype = 'SJCK' THEN
- '出库'
- WHEN item.f_billtype = 'CKDB' and ware.f_charg = 1 THEN
- '调拨'
- WHEN item.f_billtype = 'HQZY' THEN
- '货权转移'
- WHEN item.f_billtype = 'HWTG' THEN
- '货物通关'
- END AS fBilltype,
- 0 fQtyblc,
- 0 fGrossweightblc,
- item.remark
- FROM
- t_warehousebills w
- LEFT JOIN t_warehousebillsitems item ON item.f_pid = w.f_id
- LEFT JOIN t_corps c ON c.f_id = w.f_corpid
- LEFT JOIN t_warehouse ware ON IF(item.f_billtype = 'CKDB', ware.f_id = item.f_transfer_warehouselocid, ware.f_id = item.f_warehouselocid)
- LEFT JOIN sys_dict_data d ON d.dict_value = w.f_business_type
- WHERE
- w.f_corpid = #{fCorpid}
- AND item.f_mblno = #{fMblno}
- AND IF(item.f_billtype = 'CKDB' and ware.f_charg = 0, w.f_id = '', w.f_id != '')
- AND IF( item.f_billtype = 'SJRK', d.dict_type = 'st_in_type', IF(item.f_billtype = 'SJCK', d.dict_type = 'st_out_type', d.dict_type = 'st_trans_type'))
- <if test='bsdateList != null and bsdateList[0] != null and bsdateList[0]!= ""'>
- AND item.f_bsdate >= #{bsdateList[0]}
- </if>
- <if test='bsdateList != null and bsdateList[1] != null and bsdateList[1]!= ""'>
- AND item.f_bsdate <= #{bsdateList[1]}
- </if>
- order by item.f_bsdate asc
- </select>
- <select id="selectSingleAnalysisFees" parameterType="com.ruoyi.reportManagement.domain.SingleAnalysisFeesExcel" resultType="com.ruoyi.reportManagement.domain.SingleAnalysisFeesExcel">
- SELECT
- DISTINCT
- f.f_id,
- date_format( f.create_time, '%Y-%m-%d' ) createTime,
- d.dict_label fBusinessType,
- fee.f_name fFeeid,
- f.f_qty fQty,
- f.f_unitprice fUnitprice,
- f.f_amount fAmount,
- f.remark
- FROM
- t_warehousebills w
- LEFT JOIN t_warehousebillsitems item ON item.f_pid = w.f_id
- LEFT JOIN t_warehousebillsfees f ON f.f_pid = w.f_id
- LEFT JOIN t_fees fee ON fee.f_id = f.f_feeid
- LEFT JOIN t_warehouse ware ON IF(item.f_billtype = 'CKDB', ware.f_id = item.f_transfer_warehouselocid, ware.f_id = item.f_warehouselocid)
- LEFT JOIN sys_dict_data d ON d.dict_value = f.f_business_type
- WHERE
- item.f_mblno = #{fMblno}
- AND IF(item.f_billtype = 'CKDB' and ware.f_charg = 0, w.f_id = '', w.f_id != '')
- AND IF( item.f_billtype = 'SJRK', d.dict_type = 'st_in_type', IF(item.f_billtype = 'SJCK', d.dict_type = 'st_out_type', d.dict_type = 'st_trans_type'))
- <if test='bsdateList != null and bsdateList[0] != null and bsdateList[0]!= ""'>
- AND item.f_bsdate >= #{bsdateList[0]}
- </if>
- <if test='bsdateList != null and bsdateList[1] != null and bsdateList[1]!= ""'>
- AND item.f_bsdate <= #{bsdateList[1]}
- </if>
- order by f.create_time asc
- </select>
- </mapper>
|