| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148 |
- <?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.goafanti.common.dao.TOrderNewMapper">
- <resultMap id="BaseResultMap" type="com.goafanti.common.model.TOrderNew">
- <id column="order_no" jdbcType="VARCHAR" property="orderNo" />
- <result column="order_type" jdbcType="INTEGER" property="orderType" />
- <result column="creater" jdbcType="VARCHAR" property="creater" />
- <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
- <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
- <result column="buyer_id" jdbcType="VARCHAR" property="buyerId" />
- <result column="first_amount" jdbcType="DECIMAL" property="firstAmount" />
- <result column="total_amount" jdbcType="DECIMAL" property="totalAmount" />
- <result column="settlement_amount" jdbcType="DECIMAL" property="settlementAmount" />
- <result column="refund_amount" jdbcType="DECIMAL" property="refundAmount" />
- <result column="order_status" jdbcType="INTEGER" property="orderStatus" />
- <result column="liquidation_status" jdbcType="INTEGER" property="liquidationStatus" />
- <result column="process_status" jdbcType="INTEGER" property="processStatus" />
- <result column="project_status" jdbcType="INTEGER" property="projectStatus" />
- <result column="approval" jdbcType="INTEGER" property="approval" />
- <result column="order_remarks" jdbcType="VARCHAR" property="orderRemarks" />
- <result column="delete_sign" jdbcType="INTEGER" property="deleteSign" />
- <result column="salesman_id" jdbcType="VARCHAR" property="salesmanId" />
- <result column="finance_id" jdbcType="VARCHAR" property="financeId" />
- <result column="technician_id" jdbcType="VARCHAR" property="technicianId" />
- <result column="sign_time" jdbcType="DATE" property="signTime" />
- <result column="settlement_time" jdbcType="DATE" property="settlementTime" />
- <result column="contract_picture_url" jdbcType="VARCHAR" property="contractPictureUrl" />
- <result column="contract_no" jdbcType="VARCHAR" property="contractNo" />
- <result column="contract_type" jdbcType="VARCHAR" property="contractType" />
- <result column="contacts" jdbcType="VARCHAR" property="contacts" />
- <result column="contact_mobile" jdbcType="VARCHAR" property="contactMobile" />
- <result column="legal_person" jdbcType="VARCHAR" property="legalPerson" />
- <result column="legal_person_tel" jdbcType="VARCHAR" property="legalPersonTel" />
- <result column="proof_count" jdbcType="FLOAT" property="proofCount" />
- <result column="proof_aid" jdbcType="VARCHAR" property="proofAid" />
- <result column="proof_time" jdbcType="TIMESTAMP" property="proofTime" />
- <result column="proof_status" jdbcType="INTEGER" property="proofStatus" />
- <result column="order_dep" jdbcType="VARCHAR" property="orderDep" />
- <result column="outsource" jdbcType="INTEGER" property="outsource" />
- <result column="additional_order" jdbcType="VARCHAR" property="additionalOrder" />
- <result column="primary_order" jdbcType="VARCHAR" property="primaryOrder" />
- <result column="old_salesman_id" jdbcType="VARCHAR" property="oldSalesmanId" />
- <result column="back_status" jdbcType="INTEGER" property="backStatus" />
- <result column="agreement_url" jdbcType="VARCHAR" property="agreementUrl" />
- <result column="new_user" jdbcType="INTEGER" property="newUser" />
- <result column="service_content" jdbcType="VARCHAR" property="serviceContent" />
- <result column="sales_type" jdbcType="INTEGER" property="salesType" />
- <result column="channel_id" jdbcType="VARCHAR" property="channelId" />
- <result column="other" jdbcType="VARCHAR" property="other" />
- <result column="user_type" jdbcType="INTEGER" property="userType" />
- <result column="examine_name" jdbcType="VARCHAR" property="examineName" />
- <result column="tag" jdbcType="INTEGER" property="tag" />
- </resultMap>
- <sql id="Base_Column_List">
- order_no, order_type, creater, create_time, update_time, buyer_id, first_amount,
- total_amount, settlement_amount, refund_amount, order_status, liquidation_status,
- process_status, project_status, approval, order_remarks, delete_sign, salesman_id,
- finance_id, technician_id, sign_time, settlement_time, contract_picture_url, contract_no,
- contract_type, contacts, contact_mobile, legal_person, legal_person_tel, proof_count,
- proof_aid, proof_time, proof_status, order_dep, outsource, additional_order, primary_order,
- old_salesman_id, back_status, agreement_url, new_user, service_content, sales_type,
- channel_id, other, user_type, examine_name, tag
- </sql>
- <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
- select
- <include refid="Base_Column_List" />
- from t_order_new
- where order_no = #{orderNo,jdbcType=VARCHAR}
- </select>
- <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
- delete from t_order_new
- where order_no = #{orderNo,jdbcType=VARCHAR}
- </delete>
- <insert id="insert" parameterType="com.goafanti.common.model.TOrderNew">
- insert into t_order_new (order_no, order_type, creater,
- create_time, update_time, buyer_id,
- first_amount, total_amount, settlement_amount,
- refund_amount, order_status, liquidation_status,
- process_status, project_status, approval,
- order_remarks, delete_sign, salesman_id,
- finance_id, technician_id, sign_time,
- settlement_time, contract_picture_url, contract_no,
- contract_type, contacts, contact_mobile,
- legal_person, legal_person_tel, proof_count,
- proof_aid, proof_time, proof_status,
- order_dep, outsource, additional_order,
- primary_order, old_salesman_id, back_status,
- agreement_url, new_user, service_content,
- sales_type, channel_id, other,
- user_type, examine_name, tag
- )
- values (#{orderNo,jdbcType=VARCHAR}, #{orderType,jdbcType=INTEGER}, #{creater,jdbcType=VARCHAR},
- #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, #{buyerId,jdbcType=VARCHAR},
- #{firstAmount,jdbcType=DECIMAL}, #{totalAmount,jdbcType=DECIMAL}, #{settlementAmount,jdbcType=DECIMAL},
- #{refundAmount,jdbcType=DECIMAL}, #{orderStatus,jdbcType=INTEGER}, #{liquidationStatus,jdbcType=INTEGER},
- #{processStatus,jdbcType=INTEGER}, #{projectStatus,jdbcType=INTEGER}, #{approval,jdbcType=INTEGER},
- #{orderRemarks,jdbcType=VARCHAR}, #{deleteSign,jdbcType=INTEGER}, #{salesmanId,jdbcType=VARCHAR},
- #{financeId,jdbcType=VARCHAR}, #{technicianId,jdbcType=VARCHAR}, #{signTime,jdbcType=DATE},
- #{settlementTime,jdbcType=DATE}, #{contractPictureUrl,jdbcType=VARCHAR}, #{contractNo,jdbcType=VARCHAR},
- #{contractType,jdbcType=VARCHAR}, #{contacts,jdbcType=VARCHAR}, #{contactMobile,jdbcType=VARCHAR},
- #{legalPerson,jdbcType=VARCHAR}, #{legalPersonTel,jdbcType=VARCHAR}, #{proofCount,jdbcType=FLOAT},
- #{proofAid,jdbcType=VARCHAR}, #{proofTime,jdbcType=TIMESTAMP}, #{proofStatus,jdbcType=INTEGER},
- #{orderDep,jdbcType=VARCHAR}, #{outsource,jdbcType=INTEGER}, #{additionalOrder,jdbcType=VARCHAR},
- #{primaryOrder,jdbcType=VARCHAR}, #{oldSalesmanId,jdbcType=VARCHAR}, #{backStatus,jdbcType=INTEGER},
- #{agreementUrl,jdbcType=VARCHAR}, #{newUser,jdbcType=INTEGER}, #{serviceContent,jdbcType=VARCHAR},
- #{salesType,jdbcType=INTEGER}, #{channelId,jdbcType=VARCHAR}, #{other,jdbcType=VARCHAR},
- #{userType,jdbcType=INTEGER}, #{examineName,jdbcType=VARCHAR}, #{tag,jdbcType=INTEGER}
- )
- </insert>
- <insert id="insertSelective" parameterType="com.goafanti.common.model.TOrderNew">
- insert into t_order_new
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="orderNo != null">
- order_no,
- </if>
- <if test="orderType != null">
- order_type,
- </if>
- <if test="creater != null">
- creater,
- </if>
- <if test="createTime != null">
- create_time,
- </if>
- <if test="updateTime != null">
- update_time,
- </if>
- <if test="buyerId != null">
- buyer_id,
- </if>
- <if test="firstAmount != null">
- first_amount,
- </if>
- <if test="totalAmount != null">
- total_amount,
- </if>
- <if test="settlementAmount != null">
- settlement_amount,
- </if>
- <if test="refundAmount != null">
- refund_amount,
- </if>
- <if test="orderStatus != null">
- order_status,
- </if>
- <if test="liquidationStatus != null">
- liquidation_status,
- </if>
- <if test="processStatus != null">
- process_status,
- </if>
- <if test="projectStatus != null">
- project_status,
- </if>
- <if test="approval != null">
- approval,
- </if>
- <if test="orderRemarks != null">
- order_remarks,
- </if>
- <if test="deleteSign != null">
- delete_sign,
- </if>
- <if test="salesmanId != null">
- salesman_id,
- </if>
- <if test="financeId != null">
- finance_id,
- </if>
- <if test="technicianId != null">
- technician_id,
- </if>
- <if test="signTime != null">
- sign_time,
- </if>
- <if test="settlementTime != null">
- settlement_time,
- </if>
- <if test="contractPictureUrl != null">
- contract_picture_url,
- </if>
- <if test="contractNo != null">
- contract_no,
- </if>
- <if test="contractType != null">
- contract_type,
- </if>
- <if test="contacts != null">
- contacts,
- </if>
- <if test="contactMobile != null">
- contact_mobile,
- </if>
- <if test="legalPerson != null">
- legal_person,
- </if>
- <if test="legalPersonTel != null">
- legal_person_tel,
- </if>
- <if test="proofCount != null">
- proof_count,
- </if>
- <if test="proofAid != null">
- proof_aid,
- </if>
- <if test="proofTime != null">
- proof_time,
- </if>
- <if test="proofStatus != null">
- proof_status,
- </if>
- <if test="orderDep != null">
- order_dep,
- </if>
- <if test="outsource != null">
- outsource,
- </if>
- <if test="additionalOrder != null">
- additional_order,
- </if>
- <if test="primaryOrder != null">
- primary_order,
- </if>
- <if test="oldSalesmanId != null">
- old_salesman_id,
- </if>
- <if test="backStatus != null">
- back_status,
- </if>
- <if test="agreementUrl != null">
- agreement_url,
- </if>
- <if test="newUser != null">
- new_user,
- </if>
- <if test="serviceContent != null">
- service_content,
- </if>
- <if test="salesType != null">
- sales_type,
- </if>
- <if test="channelId != null">
- channel_id,
- </if>
- <if test="other != null">
- other,
- </if>
- <if test="userType != null">
- user_type,
- </if>
- <if test="examineName != null">
- examine_name,
- </if>
- <if test="tag != null">
- tag,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="orderNo != null">
- #{orderNo,jdbcType=VARCHAR},
- </if>
- <if test="orderType != null">
- #{orderType,jdbcType=INTEGER},
- </if>
- <if test="creater != null">
- #{creater,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null">
- #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="updateTime != null">
- #{updateTime,jdbcType=TIMESTAMP},
- </if>
- <if test="buyerId != null">
- #{buyerId,jdbcType=VARCHAR},
- </if>
- <if test="firstAmount != null">
- #{firstAmount,jdbcType=DECIMAL},
- </if>
- <if test="totalAmount != null">
- #{totalAmount,jdbcType=DECIMAL},
- </if>
- <if test="settlementAmount != null">
- #{settlementAmount,jdbcType=DECIMAL},
- </if>
- <if test="refundAmount != null">
- #{refundAmount,jdbcType=DECIMAL},
- </if>
- <if test="orderStatus != null">
- #{orderStatus,jdbcType=INTEGER},
- </if>
- <if test="liquidationStatus != null">
- #{liquidationStatus,jdbcType=INTEGER},
- </if>
- <if test="processStatus != null">
- #{processStatus,jdbcType=INTEGER},
- </if>
- <if test="projectStatus != null">
- #{projectStatus,jdbcType=INTEGER},
- </if>
- <if test="approval != null">
- #{approval,jdbcType=INTEGER},
- </if>
- <if test="orderRemarks != null">
- #{orderRemarks,jdbcType=VARCHAR},
- </if>
- <if test="deleteSign != null">
- #{deleteSign,jdbcType=INTEGER},
- </if>
- <if test="salesmanId != null">
- #{salesmanId,jdbcType=VARCHAR},
- </if>
- <if test="financeId != null">
- #{financeId,jdbcType=VARCHAR},
- </if>
- <if test="technicianId != null">
- #{technicianId,jdbcType=VARCHAR},
- </if>
- <if test="signTime != null">
- #{signTime,jdbcType=DATE},
- </if>
- <if test="settlementTime != null">
- #{settlementTime,jdbcType=DATE},
- </if>
- <if test="contractPictureUrl != null">
- #{contractPictureUrl,jdbcType=VARCHAR},
- </if>
- <if test="contractNo != null">
- #{contractNo,jdbcType=VARCHAR},
- </if>
- <if test="contractType != null">
- #{contractType,jdbcType=VARCHAR},
- </if>
- <if test="contacts != null">
- #{contacts,jdbcType=VARCHAR},
- </if>
- <if test="contactMobile != null">
- #{contactMobile,jdbcType=VARCHAR},
- </if>
- <if test="legalPerson != null">
- #{legalPerson,jdbcType=VARCHAR},
- </if>
- <if test="legalPersonTel != null">
- #{legalPersonTel,jdbcType=VARCHAR},
- </if>
- <if test="proofCount != null">
- #{proofCount,jdbcType=FLOAT},
- </if>
- <if test="proofAid != null">
- #{proofAid,jdbcType=VARCHAR},
- </if>
- <if test="proofTime != null">
- #{proofTime,jdbcType=TIMESTAMP},
- </if>
- <if test="proofStatus != null">
- #{proofStatus,jdbcType=INTEGER},
- </if>
- <if test="orderDep != null">
- #{orderDep,jdbcType=VARCHAR},
- </if>
- <if test="outsource != null">
- #{outsource,jdbcType=INTEGER},
- </if>
- <if test="additionalOrder != null">
- #{additionalOrder,jdbcType=VARCHAR},
- </if>
- <if test="primaryOrder != null">
- #{primaryOrder,jdbcType=VARCHAR},
- </if>
- <if test="oldSalesmanId != null">
- #{oldSalesmanId,jdbcType=VARCHAR},
- </if>
- <if test="backStatus != null">
- #{backStatus,jdbcType=INTEGER},
- </if>
- <if test="agreementUrl != null">
- #{agreementUrl,jdbcType=VARCHAR},
- </if>
- <if test="newUser != null">
- #{newUser,jdbcType=INTEGER},
- </if>
- <if test="serviceContent != null">
- #{serviceContent,jdbcType=VARCHAR},
- </if>
- <if test="salesType != null">
- #{salesType,jdbcType=INTEGER},
- </if>
- <if test="channelId != null">
- #{channelId,jdbcType=VARCHAR},
- </if>
- <if test="other != null">
- #{other,jdbcType=VARCHAR},
- </if>
- <if test="userType != null">
- #{userType,jdbcType=INTEGER},
- </if>
- <if test="examineName != null">
- #{examineName,jdbcType=VARCHAR},
- </if>
- <if test="tag != null">
- #{tag,jdbcType=INTEGER},
- </if>
- </trim>
- </insert>
- <update id="updateByPrimaryKeySelective" parameterType="com.goafanti.common.model.TOrderNew">
- update t_order_new
- <set>
- <if test="orderType != null">
- order_type = #{orderType,jdbcType=INTEGER},
- </if>
- <if test="creater != null">
- creater = #{creater,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null">
- create_time = #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="updateTime != null">
- update_time = #{updateTime,jdbcType=TIMESTAMP},
- </if>
- <if test="buyerId != null">
- buyer_id = #{buyerId,jdbcType=VARCHAR},
- </if>
- <if test="firstAmount != null">
- first_amount = #{firstAmount,jdbcType=DECIMAL},
- </if>
- <if test="totalAmount != null">
- total_amount = #{totalAmount,jdbcType=DECIMAL},
- </if>
- <if test="settlementAmount != null">
- settlement_amount = #{settlementAmount,jdbcType=DECIMAL},
- </if>
- <if test="refundAmount != null">
- refund_amount = #{refundAmount,jdbcType=DECIMAL},
- </if>
- <if test="orderStatus != null">
- order_status = #{orderStatus,jdbcType=INTEGER},
- </if>
- <if test="liquidationStatus != null">
- liquidation_status = #{liquidationStatus,jdbcType=INTEGER},
- </if>
- <if test="processStatus != null">
- process_status = #{processStatus,jdbcType=INTEGER},
- </if>
- <if test="projectStatus != null">
- project_status = #{projectStatus,jdbcType=INTEGER},
- </if>
- <if test="approval != null">
- approval = #{approval,jdbcType=INTEGER},
- </if>
- <if test="orderRemarks != null">
- order_remarks = #{orderRemarks,jdbcType=VARCHAR},
- </if>
- <if test="deleteSign != null">
- delete_sign = #{deleteSign,jdbcType=INTEGER},
- </if>
- <if test="salesmanId != null">
- salesman_id = #{salesmanId,jdbcType=VARCHAR},
- </if>
- <if test="financeId != null">
- finance_id = #{financeId,jdbcType=VARCHAR},
- </if>
- <if test="technicianId != null">
- technician_id = #{technicianId,jdbcType=VARCHAR},
- </if>
- <if test="signTime != null">
- sign_time = #{signTime,jdbcType=DATE},
- </if>
- <if test="settlementTime != null">
- settlement_time = #{settlementTime,jdbcType=DATE},
- </if>
- <if test="contractPictureUrl != null">
- contract_picture_url = #{contractPictureUrl,jdbcType=VARCHAR},
- </if>
- <if test="contractNo != null">
- contract_no = #{contractNo,jdbcType=VARCHAR},
- </if>
- <if test="contractType != null">
- contract_type = #{contractType,jdbcType=VARCHAR},
- </if>
- <if test="contacts != null">
- contacts = #{contacts,jdbcType=VARCHAR},
- </if>
- <if test="contactMobile != null">
- contact_mobile = #{contactMobile,jdbcType=VARCHAR},
- </if>
- <if test="legalPerson != null">
- legal_person = #{legalPerson,jdbcType=VARCHAR},
- </if>
- <if test="legalPersonTel != null">
- legal_person_tel = #{legalPersonTel,jdbcType=VARCHAR},
- </if>
- <if test="proofCount != null">
- proof_count = #{proofCount,jdbcType=FLOAT},
- </if>
- <if test="proofAid != null">
- proof_aid = #{proofAid,jdbcType=VARCHAR},
- </if>
- <if test="proofTime != null">
- proof_time = #{proofTime,jdbcType=TIMESTAMP},
- </if>
- <if test="proofStatus != null">
- proof_status = #{proofStatus,jdbcType=INTEGER},
- </if>
- <if test="orderDep != null">
- order_dep = #{orderDep,jdbcType=VARCHAR},
- </if>
- <if test="outsource != null">
- outsource = #{outsource,jdbcType=INTEGER},
- </if>
- <if test="additionalOrder != null">
- additional_order = #{additionalOrder,jdbcType=VARCHAR},
- </if>
- <if test="primaryOrder != null">
- primary_order = #{primaryOrder,jdbcType=VARCHAR},
- </if>
- <if test="oldSalesmanId != null">
- old_salesman_id = #{oldSalesmanId,jdbcType=VARCHAR},
- </if>
- <if test="backStatus != null">
- back_status = #{backStatus,jdbcType=INTEGER},
- </if>
- <if test="agreementUrl != null">
- agreement_url = #{agreementUrl,jdbcType=VARCHAR},
- </if>
- <if test="newUser != null">
- new_user = #{newUser,jdbcType=INTEGER},
- </if>
- <if test="serviceContent != null">
- service_content = #{serviceContent,jdbcType=VARCHAR},
- </if>
- <if test="salesType != null">
- sales_type = #{salesType,jdbcType=INTEGER},
- </if>
- <if test="channelId != null">
- channel_id = #{channelId,jdbcType=VARCHAR},
- </if>
- <if test="other != null">
- other = #{other,jdbcType=VARCHAR},
- </if>
- <if test="userType != null">
- user_type = #{userType,jdbcType=INTEGER},
- </if>
- <if test="examineName != null">
- examine_name = #{examineName,jdbcType=VARCHAR},
- </if>
- <if test="tag != null">
- tag = #{tag,jdbcType=INTEGER},
- </if>
- </set>
- where order_no = #{orderNo,jdbcType=VARCHAR}
- </update>
- <update id="updateByPrimaryKey" parameterType="com.goafanti.common.model.TOrderNew">
- update t_order_new
- set order_type = #{orderType,jdbcType=INTEGER},
- creater = #{creater,jdbcType=VARCHAR},
- create_time = #{createTime,jdbcType=TIMESTAMP},
- update_time = #{updateTime,jdbcType=TIMESTAMP},
- buyer_id = #{buyerId,jdbcType=VARCHAR},
- first_amount = #{firstAmount,jdbcType=DECIMAL},
- total_amount = #{totalAmount,jdbcType=DECIMAL},
- settlement_amount = #{settlementAmount,jdbcType=DECIMAL},
- refund_amount = #{refundAmount,jdbcType=DECIMAL},
- order_status = #{orderStatus,jdbcType=INTEGER},
- liquidation_status = #{liquidationStatus,jdbcType=INTEGER},
- process_status = #{processStatus,jdbcType=INTEGER},
- project_status = #{projectStatus,jdbcType=INTEGER},
- approval = #{approval,jdbcType=INTEGER},
- order_remarks = #{orderRemarks,jdbcType=VARCHAR},
- delete_sign = #{deleteSign,jdbcType=INTEGER},
- salesman_id = #{salesmanId,jdbcType=VARCHAR},
- finance_id = #{financeId,jdbcType=VARCHAR},
- technician_id = #{technicianId,jdbcType=VARCHAR},
- sign_time = #{signTime,jdbcType=DATE},
- settlement_time = #{settlementTime,jdbcType=DATE},
- contract_picture_url = #{contractPictureUrl,jdbcType=VARCHAR},
- contract_no = #{contractNo,jdbcType=VARCHAR},
- contract_type = #{contractType,jdbcType=VARCHAR},
- contacts = #{contacts,jdbcType=VARCHAR},
- contact_mobile = #{contactMobile,jdbcType=VARCHAR},
- legal_person = #{legalPerson,jdbcType=VARCHAR},
- legal_person_tel = #{legalPersonTel,jdbcType=VARCHAR},
- proof_count = #{proofCount,jdbcType=FLOAT},
- proof_aid = #{proofAid,jdbcType=VARCHAR},
- proof_time = #{proofTime,jdbcType=TIMESTAMP},
- proof_status = #{proofStatus,jdbcType=INTEGER},
- order_dep = #{orderDep,jdbcType=VARCHAR},
- outsource = #{outsource,jdbcType=INTEGER},
- additional_order = #{additionalOrder,jdbcType=VARCHAR},
- primary_order = #{primaryOrder,jdbcType=VARCHAR},
- old_salesman_id = #{oldSalesmanId,jdbcType=VARCHAR},
- back_status = #{backStatus,jdbcType=INTEGER},
- agreement_url = #{agreementUrl,jdbcType=VARCHAR},
- new_user = #{newUser,jdbcType=INTEGER},
- service_content = #{serviceContent,jdbcType=VARCHAR},
- sales_type = #{salesType,jdbcType=INTEGER},
- channel_id = #{channelId,jdbcType=VARCHAR},
- other = #{other,jdbcType=VARCHAR},
- user_type = #{userType,jdbcType=INTEGER},
- examine_name = #{examineName,jdbcType=VARCHAR},
- tag = #{tag,jdbcType=INTEGER}
- where order_no = #{orderNo,jdbcType=VARCHAR}
- </update>
- <!-- 查看所有待财务管理员分配的订单数据 -->
- <select id="getAllUnassignedListOrder" parameterType="Map" resultType="com.goafanti.order.bo.OrderListBo">
- select o.order_no as orderNo, o.order_type orderType, o.create_time as createTime, o.process_status as processStatus,
- o.sign_time as signTime, u.nickname as buyerName,o.total_amount signTotalAmount, o.approval , a.name sellerName
- ,liquidation_status,o.finance_id as financeId,contract_no as contractNo,d.name as departmentName,e.name as outsourceName
- from t_order_new o left join `user` u on o.buyer_id = u.id left join admin a on o.salesman_id = a.id
- left join department d on o.order_dep=d.id left join (select order_no,max(name)as name from outsource_organization group by order_no) e
- on o.order_no=e.order_no left join t_order_outsource f on f.order_no=o.order_no where delete_sign in(0,2,3)
- and approval in (0,2)
- <if test="o.outsource != null">
- and o.outsource=#{o.outsource,jdbcType=INTEGER}
- </if>
- <if test="o.outsource == 1">
- and f.refund_status=1
- </if>
- <if test="o.processStatus == 2">
- and process_status = 2
- </if>
- <if test="o.processStatus == 3">
- and process_status >= 2 and process_status < 7
- </if>
- <if test="o.departmentId != null and o.departmentId != """>
- and o.order_dep= #{o.departmentId,jdbcType=VARCHAR}
- </if>
- <if test="o.orderNo != null and o.orderNo != """>
- and o.order_no = #{o.orderNo,jdbcType=VARCHAR}
- </if>
- <if test="o.financeId != null and o.financeId != """>
- and o.finance_id = #{o.financeId,jdbcType=VARCHAR}
- </if>
- <if test="o.contractNo != null and o.contractNo != """>
- and o.contract_no like CONCAT('%',#{o.contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="o.buyerName != null and o.buyerName != """>
- <bind name="n" value="'%' + o.buyerName + '%'" />
- and u.nickname like #{n,jdbcType=VARCHAR}
- </if>
- <if test="o.startTime != null and o.startTime != "" and o.endTime != null and o.endTime != """>
- <bind name="a" value="o.startTime + ' 00:00:00'" />
- <bind name="b" value="o.endTime + ' 23:59:59'" />
- and o.create_time between #{a,jdbcType=VARCHAR} and #{b,jdbcType=VARCHAR}
- </if>
- order by o.process_status,o.create_time desc
- <if test="page_sql != null">
- ${page_sql}
- </if>
- </select>
- <select id="getAllUnassignedCountOrder" parameterType="Map" resultType="java.lang.Integer">
- select count(*) from t_order_new o left join `user` u on o.buyer_id = u.id left join admin a on o.salesman_id = a.id
- left join t_order_outsource f on f.order_no=o.order_no where delete_sign in(0,2,3) and approval in (0,2)
- <if test="o.outsource != null">
- and o.outsource=#{o.outsource,jdbcType=INTEGER}
- </if>
- <if test="o.outsource == 1">
- and f.refund_status=1
- </if>
- <if test="o.processStatus == 2">
- and process_status = 2
- </if>
- <if test="o.processStatus == 3">
- and process_status > 2 and process_status < 7
- </if>
- <if test="o.departmentId != null and o.departmentId != """>
- and o.order_dep= #{o.departmentId,jdbcType=VARCHAR}
- </if>
- <if test="o.orderNo != null and o.orderNo != """>
- and o.order_no = #{o.orderNo,jdbcType=VARCHAR}
- </if>
- <if test="o.financeId != null and o.financeId != """>
- and o.finance_id = #{o.financeId,jdbcType=VARCHAR}
- </if>
- <if test="o.contractNo != null and o.contractNo != """>
- and o.contract_no like CONCAT('%',#{o.contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="o.buyerName != null and o.buyerName != """>
- <bind name="n" value="'%' + o.buyerName + '%'" />
- and u.nickname like #{n,jdbcType=VARCHAR}
- </if>
- <if test="o.startTime != null and o.startTime != "" and o.endTime != null and o.endTime != """>
- <bind name="a" value="o.startTime + ' 00:00:00'" />
- <bind name="b" value="o.endTime + ' 23:59:59'" />
- and o.create_time between #{a,jdbcType=VARCHAR} and #{b,jdbcType=VARCHAR}
- </if>
- </select>
- <!-- 查看某订单状态是否符合要求 -->
- <select id="getCountByIdAndStatus" parameterType="com.goafanti.common.model.TOrderNew" resultType="java.lang.Integer">
- select count(*) from t_order_new
- where order_no = #{orderNo,jdbcType=VARCHAR}
- <if test="orderType != null">
- and order_type = #{orderType,jdbcType=INTEGER}
- </if>
- <if test="creater != null">
- and creater = #{creater,jdbcType=VARCHAR}
- </if>
- <if test="buyerId != null">
- and buyer_id = #{buyerId,jdbcType=VARCHAR}
- </if>
- <if test="firstAmount != null">
- and first_amount = #{firstAmount,jdbcType=DECIMAL}
- </if>
- <if test="totalAmount != null">
- and total_amount = #{totalAmount,jdbcType=DECIMAL}
- </if>
- <if test="settlementAmount != null">
- and settlement_amount = #{settlementAmount,jdbcType=DECIMAL}
- </if>
- <if test="orderStatus != null">
- and order_status = #{orderStatus,jdbcType=INTEGER}
- </if>
- <if test="liquidationStatus == 1">
- and liquidation_status between 1 and 2
- </if>
- <if test="processStatus != null">
- and process_status = #{processStatus,jdbcType=INTEGER}
- </if>
- <if test="projectStatus != null">
- and project_status = #{projectStatus,jdbcType=INTEGER}
- </if>
- <if test="approval != null">
- and approval = #{approval,jdbcType=INTEGER}
- </if>
- <if test="orderRemarks != null">
- and order_remarks = #{orderRemarks,jdbcType=VARCHAR}
- </if>
- <if test="deleteSign != null">
- and delete_sign = #{deleteSign,jdbcType=INTEGER}
- </if>
- <if test="salesmanId != null">
- and salesman_id = #{salesmanId,jdbcType=VARCHAR}
- </if>
- <if test="financeId != null">
- and finance_id = #{financeId,jdbcType=VARCHAR}
- </if>
- <if test="technicianId != null">
- and technician_id = #{technicianId,jdbcType=VARCHAR}
- </if>
- <if test="contractNo != null">
- and contract_no = #{contractNo,jdbcType=VARCHAR}
- </if>
- <if test="contractType != null">
- and contract_type = #{contractType,jdbcType=VARCHAR}
- </if>
- <if test="contacts != null">
- and contacts = #{contacts,jdbcType=VARCHAR}
- </if>
- <if test="contactMobile != null">
- and contact_mobile = #{contactMobile,jdbcType=VARCHAR}
- </if>
- <if test="legalPerson != null">
- and legal_person = #{legalPerson,jdbcType=VARCHAR}
- </if>
- <if test="legalPersonTel != null">
- and legal_person_tel = #{legalPersonTel,jdbcType=VARCHAR}
- </if>
- </select>
- <!-- 财务专员查看需要待收款的数据 -->
- <select id="financeList" parameterType="Map" resultType="com.goafanti.order.bo.OrderListBo">
- select o.order_no as orderNo, o.sign_time as signTime, u.nickname as buyerName, o.order_status as orderStatus,a.finance_name financeName,
- a.cost_amount costAmount,a.payment_amount paymentAmount,o.process_status as processStatus, o.settlement_amount as actuallyTotalAmount,
- o.contract_no as contractNo, o.approval, o.back_status backStatus,a.salesman_name as sellerName, o.salesman_id as sellerId,
- o.buyer_id as buyerId, o.liquidation_status as liquidationStatus ,too.amount outsourceAmount, o.first_amount as signFirstPayment,
- o.total_amount as signTotalAmount, date_format(o.create_time, '%Y-%m-%d %H:%i:%s') as createTime, too.company_name as outsourceName,
- 0 as companyId, d.name as departmentName, a.final_receivables finalReceivables ,a.invoice_amount invoiceAmount ,a.order_arrears orderArrears,
- o.order_status orderStatus,a.project_type projectType,o.sales_type salesType,o.other ,o.delete_sign deleteSign, a.order_receivables orderReceivables,
- date_format(a.`final_Receivables_time`, '%Y-%m-%d %H:%i:%s')finalReceivablesTime,a.patent_cost patentCost,a.patent_cost_actual patentCostActual ,
- a.soft_cost softCost ,a.soft_cost_actual softCostActual ,a.audit_cost auditCost ,a.audit_cost_actual auditCostActual ,a.other_cost otherCost ,
- a.other_cost_actual otherCostActual , a.expect_profit expectProfit ,a.actual_profit actualProfit,a.service_type serviceType,
- a.service_project serviceProject,o.examine_name examineName
- from t_order_new o left join department d on o.order_dep = d.id left join `user` u on o.buyer_id = u.id left join t_order_mid a on o.order_no=a.order_no
- left join (select * from t_order_outsource where type=0) too on o.order_no=too.order_no where delete_sign in(0,2) and approval in(0,1,2,4,5)
- and outsource= #{o.outsource,jdbcType=INTEGER}
- <if test="o.processStatus == 3">
- and o.process_status = #{o.processStatus,jdbcType=INTEGER}
- </if>
- <if test="o.processStatus == 4" >
- and o.process_status >= #{o.processStatus,jdbcType=INTEGER}
- </if>
- <if test="o.processStatus == 9">
- and o.back_status = 3
- </if>
- <if test="fids != null and fids.size() > 0">
- and d.finance_id in
- <foreach close=")" collection="fids" index="" item="item" open="(" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="o.orderStatus != null and o.orderStatus != """>
- and (o.order_status >= #{o.orderStatus,jdbcType=INTEGER} or o.back_status=3)
- </if>
- <if test="deps !=null">
- and o.order_dep in
- <foreach close=")" collection="deps" item="depId" open="(" separator=",">
- #{depId}
- </foreach>
- </if>
- <if test="o.contractNo != null and o.contractNo != """>
- and o.contract_no like CONCAT('%',#{o.contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="o.liquidationStatus != null">
- and o.liquidation_status = #{o.liquidationStatus,jdbcType=INTEGER}
- </if>
- <if test="o.amountStatus == 0">
- and o.total_amount < 10
- </if>
- <if test="o.amountStatus == 1">
- and o.total_amount between 10 and 20
- </if>
- <if test="o.amountStatus == 2">
- and o.total_amount between 20 and 30
- </if>
- <if test="o.amountStatus == 3">
- and o.total_amount between 30 and 40
- </if>
- <if test="o.amountStatus == 4">
- and o.total_amount > 40
- </if>
- <if test="o.orderNo != null and o.orderNo != """>
- and o.order_no = #{o.orderNo,jdbcType=VARCHAR}
- </if>
- <if test="o.projectType != null and o.projectType != """>
- and a.project_type = #{o.projectType}
- </if>
- <if test="o.approval != null and o.approval ==1">
- and o.approval in (1,4)
- </if>
- <if test="o.approval != null and o.approval ==2">
- and o.approval in (2,5)
- </if>
- <if test="o.approval != null and o.approval ==4">
- and o.approval in (1,2,4,5)
- </if>
- <if test="o.buyerName != null and o.buyerName != """>
- <bind name="n" value="'%' + o.buyerName + '%'" />
- and u.nickname like #{n,jdbcType=VARCHAR}
- </if>
- <if test="o.startTime != null and o.startTime != "" and o.endTime != null and o.endTime != """>
- <bind name="a" value="o.startTime + ' 00:00:00'" />
- <bind name="b" value="o.endTime + ' 23:59:59'" />
- and o.create_time between #{a,jdbcType=VARCHAR} and #{b,jdbcType=VARCHAR}
- </if>
- <if test="o.startFinalReceivablesTime != null and o.startFinalReceivablesTime != "" and o.endFinalReceivablesTime != null and o.endFinalReceivablesTime != """>
- <bind name="c" value="o.startFinalReceivablesTime + ' 00:00:00'" />
- <bind name="d" value="o.endFinalReceivablesTime + ' 23:59:59'" />
- and a.final_Receivables_time between #{c,jdbcType=VARCHAR} and #{d,jdbcType=VARCHAR}
- </if>
- order by o.liquidation_status, o.sign_time desc
- <if test="page_sql != null">
- ${page_sql}
- </if>
- </select>
- <select id="financeCount" parameterType="Map" resultType="java.lang.Integer">
- select count(*) from t_order_new o left join `user` u on o.buyer_id = u.id
- left join department d on o.order_dep = d.id left join t_order_mid a on o.order_no=a.order_no
- where delete_sign in(0,2) and approval in(0,1,2) and outsource= #{o.outsource,jdbcType=INTEGER}
- <if test="o.processStatus == 3">
- and o.process_status = #{o.processStatus,jdbcType=INTEGER}
- </if>
- <if test="o.processStatus == 4" >
- and o.process_status >= #{o.processStatus,jdbcType=INTEGER}
- </if>
- <if test="o.processStatus == 9">
- and o.back_status = 3
- </if>
- <if test="fids != null and fids.size() > 0">
- and d.finance_id in
- <foreach close=")" collection="fids" index="" item="item" open="(" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="o.orderStatus != null and o.orderStatus != """>
- and (o.order_status >= #{o.orderStatus,jdbcType=INTEGER} or o.back_status=3)
- </if>
- <if test="deps !=null">
- and o.order_dep in
- <foreach close=")" collection="deps" item="depId" open="(" separator=",">
- #{depId}
- </foreach>
- </if>
- <if test="o.contractNo != null and o.contractNo != """>
- and o.contract_no like CONCAT('%',#{o.contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="o.liquidationStatus != null">
- and o.liquidation_status = #{o.liquidationStatus,jdbcType=INTEGER}
- </if>
- <if test="o.amountStatus == 0">
- and o.total_amount < 10
- </if>
- <if test="o.amountStatus == 1">
- and o.total_amount between 10 and 20
- </if>
- <if test="o.amountStatus == 2">
- and o.total_amount between 20 and 30
- </if>
- <if test="o.amountStatus == 3">
- and o.total_amount between 30 and 40
- </if>
- <if test="o.amountStatus == 4">
- and o.total_amount > 40
- </if>
- <if test="o.orderNo != null and o.orderNo != """>
- and o.order_no = #{o.orderNo,jdbcType=VARCHAR}
- </if>
- <if test="o.projectType != null and o.projectType != """>
- and a.project_type = #{o.projectType}
- </if>
- <if test="o.approval != null and o.approval ==1">
- and o.approval in (1,4)
- </if>
- <if test="o.approval != null and o.approval ==2">
- and o.approval in (2,5)
- </if>
- <if test="o.approval != null and o.approval ==4">
- and o.approval in (1,2,4,5)
- </if>
- <if test="o.buyerName != null and o.buyerName != """>
- <bind name="n" value="'%' + o.buyerName + '%'" />
- and u.nickname like #{n,jdbcType=VARCHAR}
- </if>
- <if test="o.startTime != null and o.startTime != "" and o.endTime != null and o.endTime != """>
- <bind name="a" value="o.startTime + ' 00:00:00'" />
- <bind name="b" value="o.endTime + ' 23:59:59'" />
- and o.create_time between #{a,jdbcType=VARCHAR} and #{b,jdbcType=VARCHAR}
- </if>
- <if test="o.startFinalReceivablesTime != null and o.startFinalReceivablesTime != "" and o.endFinalReceivablesTime != null and o.endFinalReceivablesTime != """>
- <bind name="c" value="o.startFinalReceivablesTime + ' 00:00:00'" />
- <bind name="d" value="o.endFinalReceivablesTime + ' 23:59:59'" />
- and a.final_Receivables_time between #{c,jdbcType=VARCHAR} and #{d,jdbcType=VARCHAR}
- </if>
- </select>
- <!-- 通过订单编号获得订单的负责人(营销员) -->
- <select id="getSaleIdByOno" parameterType="java.lang.String" resultType="com.goafanti.order.bo.TOrderNewBo">
- select o.order_no orderNo ,o.salesman_id as salesmanId, a.name as salesmanName,e.name managerName,
- o.contract_no contractNo,a.email ,u.nickname as userName,o.order_dep orderDep,d.name departmentName,
- d.finance_id financeId
- from t_order_new o left join admin a on o.salesman_id = a.id left join `user` u on u.id = o.buyer_id
- left join department d on o.order_dep=d.id left join admin e on a.manager_id=e.id
- where order_no = #{_parameter,jdbcType=VARCHAR}
- </select>
- <select id="selectOrderNewListByPage" resultType="com.goafanti.order.bo.TOrderNewBo">
- select a.order_no as orderNo,a.create_time as createTime, date_format(a.sign_time,'%Y-%m-%d' ) as signDate,a.delete_sign deleteSign,
- a.contract_no as contractNo, b.nickname as userName ,a.process_status as processStatus,a.total_amount as totalAmount,a.tag,
- a.order_status as orderStatus, a.liquidation_status as liquidationStatus,a.approval,c.salesman_name as salesmanName,c.project_type projectType,
- dep.name as depName,c.finance_name as financeName,c.invoice_amount invoiceAmount,a.settlement_amount settlementAmount,
- a.sales_type salesType, a.channel_id channelId ,a.other,a.examine_name examineName,c.stop_project stopProject
- <if test="specially == 2">
- ,f.name as initiateName ,e.reason ,date_format(e.create_time,'%Y-%m-%d' ) as backDate,e.id as backId
- </if>
- <if test="specially == 4">
- ,e.receiver_name as consultantName,a.settlement_amount as settlementAmount,if(isnull(g.order_no)=0,1,0) ischange
- </if>
- from t_order_new a left join `user` b on a.buyer_id=b.id left join t_order_mid c on a.order_no=c.order_no
- left join department dep on a.order_dep=dep.id
- <if test="specially == 2">
- left join (select * from t_order_back a where back_status=0) e on a.order_no=e.order_no
- left join admin f on e.initiate=f.id
- </if>
- <if test="specially == 4">
- left join t_order_task e on a.order_no=e.order_no and e.main =1
- left join (select order_no from new_order_change group by order_no)g on a.order_no=g.order_no
- </if>
- <if test="specially == 9">
- left join t_order_task tot on a.order_no =tot.order_no
- left join business_project bp on tot.commodity_id =bp.id
- </if>
- <if test="specially == 10">
- left join admin mg on a.salesman_id=mg.id
- </if>
- where a.delete_sign in(0,2)
- <if test="specially ==7">
- and a.process_status > 4
- and a.salesman_id = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="specially ==8">
- and a.process_status > 4
- <if test="uid !=null">
- and a.buyer_id = #{uid}
- </if>
- </if>
- <if test="specially ==9">
- and a.process_status > 4 and bp.type=5
- <if test="aid !=null">
- and a.salesman_id = #{aid,jdbcType=VARCHAR}
- </if>
- </if>
- <if test="outsource != null">
- and a.outsource= #{outsource,jdbcType=INTEGER}
- </if>
- <if test="specially == 0">
- <if test="approval ==null">
- and a.approval in(0,1,2,4,5)
- </if>
- and a.order_status in(0,1,2,4)
- and a.salesman_id = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="specially == 10">
- and a.process_status = 1 and a.order_status in (0,1,2)
- and mg.manager_id= #{aid}
- </if>
- <if test="specially == 1">
- and a.process_status = 2 and a.order_status in (0,1,2)
- </if>
- <if test="specially == 2">
- and a.order_status in(3,5)
- and a.salesman_id = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="specially == 3">
- and a.order_status=2
- <if test="approval ==0">
- and a.process_status in(4)
- and a.approval = 0
- </if>
- <if test="approval ==1">
- and a.process_status in(4)
- and a.approval in
- <if test="manageType ==0">
- (1)
- </if>
- <if test="manageType ==1">
- (4)
- </if>
- </if>
- <if test="approval ==2">
- and a.approval in
- <if test="manageType ==0">
- (2)
- </if>
- <if test="manageType ==1">
- (5)
- </if>
- </if>
- </if>
- <if test="specially !=3 ">
- <if test="approval ==0">
- and a.approval = 0
- </if>
- <if test="approval ==1">
- and a.approval in (1,4)
- </if>
- <if test="approval ==2">
- and a.approval in (2,5)
- </if>
- <if test="approval ==4">
- and a.approval in (1,2,4,5)
- </if>
- </if>
- <if test="specially == 4">
- and a.process_status in (3,5,6,7,99)
- and a.order_status in(1,2,3,4,6)
- </if>
- <if test="deps!=null">
- and a.order_dep in
- <foreach close=")" collection="deps" item="dep" open="(" separator=",">
- #{dep}
- </foreach>
- </if>
- <if test="distribution == 0">
- and a.process_status = 3
- </if>
- <if test="distribution == 1">
- and a.process_status = 5
- </if>
- <if test="distribution == 2">
- and a.process_status = 6
- </if>
- <if test="distribution == 3">
- and a.process_status = 7
- </if>
- <if test="name != null">
- and b.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="projectType != null">
- and c.project_type = #{projectType}
- </if>
- <if test="processStatus != null">
- and a.process_status = #{processStatus}
- </if>
- <if test="orderNo != null">
- and a.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="contractNo != null">
- and a.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="liquidationStatus != null">
- and a.liquidation_status = #{liquidationStatus,jdbcType=INTEGER}
- </if>
- <if test="tag != null">
- and a.tag= #{tag}
- </if>
- <if test="amountStatus == 0">
- and a.total_amount < 10
- </if>
- <if test="amountStatus == 1">
- and a.total_amount between 10 and 20
- </if>
- <if test="amountStatus == 2">
- and a.total_amount between 20 and 30
- </if>
- <if test="amountStatus == 3">
- and a.total_amount between 30 and 40
- </if>
- <if test="amountStatus == 4">
- and a.total_amount > 40
- </if>
- <if test="starTime !=null and endTime !=null">
- and a.create_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
- </if>
- <if test="contractStart !=null and contractEnd !=null">
- and a.sign_time between #{contractStart,jdbcType=VARCHAR} and #{contractEnd,jdbcType=VARCHAR}
- </if>
- order by
- <if test="specially == 3">
- a.approval,
- </if>
- <if test="specially == 4">
- a.process_status,
- </if>
- <if test="specially != 4">
- a.order_status,
- </if>
- a.create_time
- <if test="specially != 4">
- desc
- </if>
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
- <select id="selectOrderNewListCount" resultType="java.lang.Integer">
- select count(*)
- from t_order_new a left join `user` b on a.buyer_id=b.id left join t_order_mid c on a.order_no=c.order_no
- left join department dep on a.order_dep=dep.id
- <if test="specially == 9">
- left join t_order_task tot on a.order_no =tot.order_no
- left join business_project bp on tot.commodity_id =bp.id
- </if>
- <if test="specially == 10">
- left join admin mg on a.salesman_id=mg.id
- </if>
- where a.delete_sign in(0,2)
- <if test="specially ==7">
- and a.process_status > 4
- and a.salesman_id = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="specially ==8">
- and a.process_status > 4
- <if test="uid !=null">
- and a.buyer_id = #{uid}
- </if>
- </if>
- <if test="specially ==9">
- and a.process_status > 4 and bp.type=5
- <if test="aid !=null">
- and a.salesman_id = #{aid,jdbcType=VARCHAR}
- </if>
- </if>
- <if test="outsource != null">
- and a.outsource= #{outsource,jdbcType=INTEGER}
- </if>
- <if test="specially == 0">
- <if test="approval ==null">
- and a.approval in(0,1,2,4,5)
- </if>
- and a.order_status in(0,1,2,4)
- and a.salesman_id = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="specially == 10">
- and a.process_status = 1 and a.order_status in (0,1,2)
- and mg.manager_id= #{aid}
- </if>
- <if test="specially == 1">
- and a.process_status = 2 and a.order_status in (0,1,2)
- </if>
- <if test="specially == 2">
- and a.order_status in(3,5)
- and a.salesman_id = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="specially == 3">
- and a.order_status=2
- <if test="approval ==0">
- and a.process_status in(4)
- and a.approval = 0
- </if>
- <if test="approval ==1">
- and a.process_status in(4)
- and a.approval in
- <if test="manageType ==0">
- (1)
- </if>
- <if test="manageType ==1">
- (4)
- </if>
- </if>
- <if test="approval ==2">
- and a.approval in
- <if test="manageType ==0">
- (2)
- </if>
- <if test="manageType ==1">
- (5)
- </if>
- </if>
- </if>
- <if test="specially !=3">
- <if test="approval ==0">
- and a.approval = 0
- </if>
- <if test="approval ==1">
- and a.approval in (1,4)
- </if>
- <if test="approval ==2">
- and a.approval in (2,5)
- </if>
- <if test="approval ==4">
- and a.approval in (1,2,4,5)
- </if>
- </if>
- <if test="specially == 4">
- and a.process_status in (3,5,6,7,99)
- and a.order_status in(1,2,3,4,6)
- </if>
- <if test="deps!=null">
- and a.order_dep in
- <foreach close=")" collection="deps" item="dep" open="(" separator=",">
- #{dep}
- </foreach>
- </if>
- <if test="distribution == 0">
- and a.process_status = 3
- </if>
- <if test="distribution == 1">
- and a.process_status = 5
- </if>
- <if test="distribution == 2">
- and a.process_status = 6
- </if>
- <if test="distribution == 3">
- and a.process_status = 7
- </if>
- <if test="name != null">
- and b.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="projectType != null">
- and c.project_type = #{projectType}
- </if>
- <if test="processStatus != null">
- and a.process_status = #{processStatus}
- </if>
- <if test="orderNo != null">
- and a.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="contractNo != null">
- and a.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="liquidationStatus != null">
- and a.liquidation_status = #{liquidationStatus,jdbcType=INTEGER}
- </if>
- <if test="tag != null">
- and a.tag= #{tag}
- </if>
- <if test="amountStatus == 0">
- and a.total_amount < 10
- </if>
- <if test="amountStatus == 1">
- and a.total_amount between 10 and 20
- </if>
- <if test="amountStatus == 2">
- and a.total_amount between 20 and 30
- </if>
- <if test="amountStatus == 3">
- and a.total_amount between 30 and 40
- </if>
- <if test="amountStatus == 4">
- and a.total_amount > 40
- </if>
- <if test="starTime !=null and endTime !=null">
- and a.create_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
- </if>
- <if test="contractStart !=null and contractEnd !=null">
- and a.sign_time between #{contractStart,jdbcType=VARCHAR} and #{contractEnd,jdbcType=VARCHAR}
- </if>
- </select>
- <select id="selectDunOrderNewListByPage" resultType="com.goafanti.order.bo.outOrderDunListBo">
- select a.id, b.contract_no contractNo,a.order_no as orderNo,c.nickname as userName,tm.salesman_name as salesmanName,e.project_status projectStatus,
- b.total_amount as totalAmount,b.liquidation_status as liquidationStatus,b.settlement_amount as settlementAmount,a.money as accountsReceivable,
- if((b.total_amount-b.settlement_amount) < 0,0,(b.total_amount-b.settlement_amount)) as uncollectedAmount,b.order_status as orderStatus,
- date_format(a.start_time, '%Y-%m-%d') as startDate,dep.name as depName,date_format(b.sign_time,'%Y-%m-%d') as signDate,
- b.approval ,b.delete_sign deleteSign ,tm.project_type memberType,
- <if test="newStatus == 0 ">
- a.dun_subject as dunSubject,a.dun_status dunStatus
- from t_order_dun a
- </if>
- <if test="newStatus == 1 ">
- a.project_type projectType,a.status dunStatus, a.dun_type dunType,a.appropriation_ratio appropriationRatio,e.commodity_name commodityName,
- e.set_up_amount setUpAmount,date_format(a.customize_time,'%Y-%m-%d') customizeTimes, a.customize_name customizeName
- from new_order_dun a left join t_order_task e on a.tid=e.id
- </if>
- left join t_order_new b on a.order_no=b.order_no left join `user` c on b.buyer_id=c.id
- left join t_order_mid tm on b.order_no=tm.order_no left join department dep on b.order_dep=dep.id
- where b.delete_sign in (0,2)
- <if test="shiroType == 1 and fid !=null">
- and tm.finance_id= #{fid,jdbcType=VARCHAR}
- </if>
- <if test="shiroType == 2 and fid !=null">
- and tm.finance_id in (select id from admin where superior_id= #{fid,jdbcType=VARCHAR})
- </if>
- <if test="amountStatus == 0">
- and b.total_amount < 10
- </if>
- <if test="amountStatus == 1">
- and b.total_amount between 10 and 20
- </if>
- <if test="amountStatus == 2">
- and b.total_amount between 20 and 30
- </if>
- <if test="amountStatus == 3">
- and b.total_amount between 30 and 40
- </if>
- <if test="amountStatus == 4">
- and b.total_amount > 40
- </if>
- <if test="approval != null and approval < 3">
- and b.approval = #{approval}
- </if>
- <if test="approval != null and approval ==4">
- and b.approval in (1,2)
- </if>
- <if test="memberType !=null">
- and tm.project_type= #{memberType}
- </if>
- <if test="name != null">
- and c.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="adminName != null">
- and tm.salesman_name like CONCAT('%',#{adminName,jdbcType=VARCHAR},'%')
- </if>
- <if test="orderNo != null">
- and a.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="contractNo != null">
- and b.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="deps != null">
- and b.order_dep in
- <foreach close=")" collection="deps" item="depId" open="(" separator=",">
- #{depId}
- </foreach>
- </if>
- <if test="dunStatus != null">
- and a.status= #{dunStatus}
- </if>
- <if test="aid != null">
- and b.salesman_id= #{aid,jdbcType=VARCHAR}
- </if>
- <if test="starTime !=null and endTime !=null">
- and b.sign_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
- </if>
- order by b.sign_time desc,b.create_time desc
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
- <select id="selectDunOrderNewListCount" resultType="java.lang.Integer">
- select
- count(*)
- <if test="newStatus == 0 ">
- from t_order_dun a
- </if>
- <if test="newStatus == 1 ">
- from new_order_dun a left join t_order_task e on a.tid=e.id
- </if>
- left join t_order_new b on a.order_no=b.order_no left join `user` c on b.buyer_id=c.id
- left join t_order_mid tm on b.order_no=tm.order_no
- where b.delete_sign in (0,2)
- <if test="shiroType == 1 and fid !=null">
- and tm.finance_id= #{fid,jdbcType=VARCHAR}
- </if>
- <if test="shiroType == 2 and fid !=null">
- and tm.finance_id in (select id from admin where superior_id= #{fid,jdbcType=VARCHAR})
- </if>
- <if test="amountStatus == 0">
- and b.total_amount < 10
- </if>
- <if test="amountStatus == 1">
- and b.total_amount between 10 and 20
- </if>
- <if test="amountStatus == 2">
- and b.total_amount between 20 and 30
- </if>
- <if test="amountStatus == 3">
- and b.total_amount between 30 and 40
- </if>
- <if test="amountStatus == 4">
- and b.total_amount > 40
- </if>
- <if test="approval != null and approval < 3">
- and b.approval = #{approval}
- </if>
- <if test="approval != null and approval ==4">
- and b.approval in (1,2)
- </if>
- <if test="memberType !=null">
- and tm.project_type= #{memberType}
- </if>
- <if test="name != null">
- and c.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="adminName != null">
- and salesman_name like CONCAT('%',#{adminName,jdbcType=VARCHAR},'%')
- </if>
- <if test="orderNo != null">
- and a.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="contractNo != null">
- and b.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="deps != null">
- and b.order_dep in
- <foreach close=")" collection="deps" item="depId" open="(" separator=",">
- #{depId}
- </foreach>
- </if>
- <if test="dunStatus != null">
- and a.status= #{dunStatus}
- </if>
- <if test="aid != null">
- and b.salesman_id= #{aid,jdbcType=VARCHAR}
- </if>
- <if test="starTime !=null and endTime !=null">
- and b.sign_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
- </if>
- </select>
- <select id="getOrderNewDetail" parameterType="java.lang.String" resultType="com.goafanti.order.bo.TOrderNewBo">
- select
- a.order_no as orderNo, a.order_type as orderType, a.creater, a.create_time as createTime,a.update_time as updateTime, a.buyer_id as buyerId,a.other,
- a.first_amount as firstAmount,a.total_amount as totalAmount, a.settlement_amount as settlementAmount, order_status as orderStatus,a.user_type userType,
- a.liquidation_status as liquidationStatus, a.process_status as processStatus, a.project_status as projectStatus, a.approval,a.sales_type salesType,
- a.order_remarks as orderRemarks, a.delete_sign as deleteSign, a.salesman_id as salesmanId, a.finance_id as financeId, technician_id as technicianId,
- a.sign_time as signTime, a.settlement_time as settlementTime, a.contract_no as contractNo, a.contract_type as contractType, a.contacts,a.channel_id channelId,
- a.contact_mobile as contactMobile, a.legal_person as legalPerson, a.legal_person_tel as legalPersonTel, a.proof_count as proofCount,
- a.proof_aid as proofAid,contract_picture_url as contractPictureUrl, c.name as salesmanName,dep.name as depName,d.name as financeName,
- c.contact_mobile as salesmanMobile,d.contact_mobile as financeMobile,b.username as userName ,b.nickname as nickname ,e.back_status as backStatus,f.name as initiateName,
- e.reason,date_format(e.create_time,'%Y-%m-%d') as backDate,a.buyer_id as uid,a.order_dep as orderDep, g.location_province as locationProvince,
- g.location_city as locationCity,g.location_area locationArea,g.postal_address postalAddress,outsource,a.primary_order primaryOrder,a.agreement_url agreementUrl,
- h.name NowFinance,h.contact_mobile NowFinanceMobile,a.additional_order additionalOrder,i.name as oldSalesmanName, i.contact_mobile oldSalesmanMobile,
- a.service_content serviceContent,a.examine_name examineName, tht.knowledge_services knowledgeServices, tht.audit_services auditServices,c.manager_id managerId,
- tht.add_deduction_services addDeductionServices, tht.knowledge_other knowledgeOther, tht.audit_other auditOther, tht.add_deduction_other addDeductionOther
- from t_order_new a left join `user` b on a.buyer_id=b.id left join admin i on a.old_salesman_id=i.id
- left join admin c on a.salesman_id=c.id left join department dep on a.order_dep=dep.id
- left join admin d on a.finance_id=d.id left join admin h on dep.finance_id=h.id
- left join t_order_back e on a.order_no=e.order_no and e.back_status=0
- left join admin f on e.initiate=f.id left join organization_identity g on a.buyer_id=g.uid
- left join t_order_high_tech tht on a.order_no=tht.order_no
- where a.order_no = #{orderNo,jdbcType=VARCHAR}
- </select>
- <select id="selectOrderRefundListByPage" resultType="com.goafanti.order.bo.TOrderRefundBo">
- select a.id, date_format(a.create_time,'%Y-%m-%d') as createDate,a.order_no as orderNo,
- c.nickname as userName,b.order_status as orderStatus,a.refund_status as refundStatus,
- a.reason,b.liquidation_status as liquidationStatus
- from t_order_refund a left join t_order_new b on a.order_no=b.order_no
- left join `user` c on b.buyer_id=c.id
- where b.delete_sign in(0,2,3)
- <if test="name != null">
- and c.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="aid != null">
- and a.initiate = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="orderNo != null">
- and a.order_no = #{orderNo,jdbcType=VARCHAR}
- </if>
- <if test="starTime !=null and endTime !=null">
- and a.create_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
- </if>
- order by a.create_time desc
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
- <select id="selectOrderRefundListCount" resultType="java.lang.Integer">
- select
- count(*)
- from t_order_refund a left join t_order_new b on a.order_no=b.order_no
- left join `user` c on b.buyer_id=c.id
- where b.delete_sign in(0,2,3)
- <if test="name != null">
- and c.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="aid != null">
- and a.initiate = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="orderNo != null">
- and a.order_no = #{orderNo,jdbcType=VARCHAR}
- </if>
- <if test="starTime !=null and endTime !=null">
- and a.create_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
- </if>
- </select>
- <!-- 财务同意退款邮件通知需要的数据 -->
- <select id="agreeEmailData" parameterType="java.lang.Integer" resultType="com.goafanti.order.bo.TOrderNewBo">
- select u.nickname as userName, r.order_no as orderNo, o.order_status as orderStatus, o.salesman_id as salesmanId, o.technician_id as technicianId,
- concat(a.email,"," , ifnull(t.email,"")) as email , concat(a.name,"," , ifnull(t.name,"")) as salesmanName
- from t_order_refund r
- left join t_order_new o on r.order_no = o.order_no
- left join admin a on a.id = o.salesman_id
- left join admin t on t.id = o.technician_id
- left join `user` u on u.id = o.buyer_id
- where r.id = #{id,jdbcType=INTEGER}
- </select>
- <select id="orderRefundDetail" resultType="com.goafanti.order.bo.OrderRefundDetailBo">
- select a.id,date_format(a.create_time,'%Y-%m-%d') as createDate ,a.order_no as orderNo,
- b.order_status as orderStatus,a.refund_status as refundStatus, a.application_url as applicationUrl,
- a.contract_url as contractUrl,a.reason,b.liquidation_status as liquidationStatus
- from t_order_refund a
- left join t_order_new b on a.order_no=b.order_no
- where a.id= #{id,jdbcType=INTEGER}
- </select>
- <update id="updateFinance" parameterType="string">
- update t_order_new set finance_id= #{newFinance,jdbcType=VARCHAR}
- where order_no in
- <foreach close=")" collection="orderNos" item="orderNo" open="(" separator=",">
- #{orderNo}
- </foreach>
- and finance_id= #{aid,jdbcType=VARCHAR}
- </update>
- <select id="checkContractNo" resultType="java.lang.Integer">
- select count(contract_no) from t_order_new
- where contract_no= #{0}
- </select>
- <select id="countTotalAndActually" parameterType="Map" resultType="java.util.Map">
- select IFNULL( sum(o.settlement_amount),0) actuallyTotalAmount,IFNULL(sum(o.total_amount),0) signTotalAmount
- from t_order_new o
- left join department d on o.order_dep=d.id left join `user` u on o.buyer_id = u.id left join t_order_mid a on o.order_no=a.order_no
- where o.delete_sign in(0,2,3) and (o.approval = 0 or o.approval = 2) and outsource= #{o.outsource,jdbcType=INTEGER}
- <if test="o.processStatus == 3">
- and o.process_status = #{o.processStatus,jdbcType=INTEGER}
- </if>
- <if test="o.processStatus == 4">
- and o.process_status >= #{o.processStatus,jdbcType=INTEGER}
- </if>
- <if test="o.processStatus == 9">
- and o.back_status = 3
- </if>
- <if test="fids != null and fids.size() > 0">
- and d.finance_id in
- <foreach close=")" collection="fids" index="" item="item" open="(" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="o.orderStatus != null and o.orderStatus != """>
- and (o.order_status >= #{o.orderStatus,jdbcType=INTEGER} or o.back_status=3)
- </if>
- <if test="deps !=null">
- and o.order_dep in
- <foreach close=")" collection="deps" item="depId" open="(" separator=",">
- #{depId}
- </foreach>
- </if>
- <if test="o.contractNo != null and o.contractNo != """>
- and o.contract_no like CONCAT('%',#{o.contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="o.liquidationStatus != null">
- and o.liquidation_status = #{o.liquidationStatus,jdbcType=INTEGER}
- </if>
- <if test="o.amountStatus == 0">
- and o.total_amount < 10
- </if>
- <if test="o.amountStatus == 1">
- and o.total_amount between 10 and 20
- </if>
- <if test="o.amountStatus == 2">
- and o.total_amount between 20 and 30
- </if>
- <if test="o.amountStatus == 3">
- and o.total_amount between 30 and 40
- </if>
- <if test="o.amountStatus == 4">
- and o.total_amount > 40
- </if>
- <if test="o.orderNo != null and o.orderNo != """>
- and o.order_no = #{o.orderNo,jdbcType=VARCHAR}
- </if>
- <if test="o.projectType != null and o.projectType != """>
- and a.project_type = #{o.projectType}
- </if>
- <if test="o.approval != null and o.approval < 3">
- and o.approval = #{o.approval}
- </if>
- <if test="o.approval != null and o.approval ==4">
- and o.approval in (1,2)
- </if>
- <if test="o.buyerName != null and o.buyerName != """>
- <bind name="n" value="'%' + o.buyerName + '%'" />
- and u.nickname like #{n,jdbcType=VARCHAR}
- </if>
- <if test="o.startTime != null and o.startTime != "" and o.endTime != null and o.endTime != """>
- <bind name="a" value="o.startTime + ' 00:00:00'" />
- <bind name="b" value="o.endTime + ' 23:59:59'" />
- and o.create_time between #{a,jdbcType=VARCHAR} and #{b,jdbcType=VARCHAR}
- </if>
- <if test="o.startFinalReceivablesTime != null and o.startFinalReceivablesTime != "" and o.endFinalReceivablesTime != null and o.endFinalReceivablesTime != """>
- <bind name="c" value="o.startFinalReceivablesTime + ' 00:00:00'" />
- <bind name="d" value="o.endFinalReceivablesTime + ' 23:59:59'" />
- and a.final_Receivables_time between #{c,jdbcType=VARCHAR} and #{d,jdbcType=VARCHAR}
- </if>
- </select>
- <select id="getLastPayment" resultType="com.goafanti.common.model.TOrderBillNew">
- select date_format(create_time, '%Y-%m-%d %H:%i:%s') createTimes,transaction_amount transactionAmount from t_order_bill_new
- where order_no= #{orderNo}
- order by create_time desc limit 1;
- </select>
- <update id="updateSalesmanId">
- update t_order_new set salesman_id= #{transferId},old_salesman_id= #{aid}
- where delete_sign in(0,2,3) and salesman_id= #{aid}
- </update>
- <select id="selectUsedOrderByOrder" resultType="com.goafanti.order.bo.TOrderNewBo">
- select
- a.order_no as orderNo, a.order_type as orderType, a.creater, a.create_time as createTime,a.update_time as updateTime, a.buyer_id as buyerId,
- a.first_amount as firstAmount,a.total_amount as totalAmount, a.settlement_amount as settlementAmount, order_status as orderStatus,
- a.liquidation_status as liquidationStatus, a.process_status as processStatus, a.project_status as projectStatus, a.approval,
- a.order_remarks as orderRemarks, a.delete_sign as deleteSign, a.salesman_id as salesmanId, a.finance_id as financeId, technician_id as technicianId,
- a.sign_time as signTime, a.settlement_time as settlementTime, a.contract_no as contractNo, a.contract_type as contractType, a.contacts,
- a.contact_mobile as contactMobile, a.legal_person as legalPerson, a.legal_person_tel as legalPersonTel, a.proof_count as proofCount,
- a.proof_aid as proofAid,contract_picture_url as contractPictureUrl, c.name as salesmanName,dep.name as depName,d.name as financeName,
- c.contact_mobile as salesmanMobile,d.contact_mobile as financeMobile,b.nickname as userName ,e.back_status as backStatus,f.name as initiateName,
- e.reason,date_format(e.create_time,'%Y-%m-%d') as backDate,a.buyer_id as uid,a.order_dep as orderDep, g.location_province as locationProvince,
- g.location_city as locationCity,g.location_area locationArea,g.postal_address postalAddress,outsource,a.primary_order primaryOrder,
- h.name NowFinance,h.contact_mobile NowFinanceMobile,a.additional_order additionalOrder,i.name as oldSalesmanName, i.contact_mobile oldSalesmanMobile
- from new_order_change noc left join t_order_new a on noc.used_order=a.order_no left join `user` b on a.buyer_id=b.id left join admin i on a.old_salesman_id=i.id
- left join admin c on a.salesman_id=c.id left join department dep on a.order_dep=dep.id left join admin d on a.finance_id=d.id
- left join admin h on dep.finance_id=h.id left join (select * from t_order_back a where back_status=0) e on a.order_no=e.order_no
- left join admin f on e.initiate=f.id left join organization_identity g on a.buyer_id=g.uid
- where noc.order_no= #{orderNo} order by noc.create_time
- </select>
- <update id="updaterefund" parameterType="com.goafanti.common.model.TOrderNew">
- update t_order_new set settlement_amount=settlement_amount-#{refundAmount,jdbcType=DECIMAL},
- refund_amount=#{refundAmount,jdbcType=DECIMAL} where order_no=#{orderNo}
- </update>
- <update id="updateDepExamine">
- update t_order_new a ,(select a.department_id depId,group_concat(a.name) name
- from admin a left join user_role b on a.id=b.uid
- left join `role` c on b.rid =c.id
- where c.role_type ='9996' and a.status ='0' and a.department_id = #{departmentId}
- group by a.department_id ) b
- set a.examine_name =b.name
- where a.order_dep = #{departmentId} and a.order_dep =b.depId
- </update>
- <update id="updateExamineById">
- update t_order_new a
- <if test="type==0 or type==1">
- left join admin b on a.salesman_id =b.id
- left join admin c on b.manager_id =c.id
- set a.examine_name =c.name
- where a.process_status =1 and c.id= #{id}
- </if>
- <if test="type==2">
- left join (select a.department_id depId,group_concat(a.name) name
- from admin a left join admin b on a.department_id =b.department_id
- left join user_role c on a.id=c.uid left join `role` d on c.rid =d.id
- where b.id= #{id} and d.role_type ='9996'
- and a.status ='0' group by b.department_id )x on a.order_dep=x.depId
- set a.examine_name=x.name
- where a.process_status =2
- </if>
- <if test="type==3">
- left join department b on a.order_dep =b.id
- left join admin c on b.finance_id =c.id
- set a.examine_name =c.name
- where a.process_status =3 and c.id =#{id}
- </if>
- <if test="type==5">
- update t_order_new a left join (select group_concat(a.name) name
- from admin a left join user_role b on a.id=b.uid
- left join `role` c on b.rid =c.id
- where c.role_type in ('9998') and a.status ='0' )b on 1=1
- set a.examine_name =b.name
- where a.process_status =5
- </if>
- </update>
- <select id="selectArrearsDunListByPage" resultType="com.goafanti.order.bo.OutArrearsDunListBo">
- select a.id, b.contract_no contractNo,a.order_no as orderNo,c.nickname as userName,tm.salesman_name as salesmanName,
- b.project_status projectStatus, b.total_amount as totalAmount,b.liquidation_status as liquidationStatus,a.`type`,
- b.settlement_amount as settlementAmount, a.order_receivables orderReceivables,a.order_arrears as orderArrears,
- b.order_status as orderStatus, date_format(a.start_time, '%Y-%m-%d %H:%i:%s') as startDate,dep.name as depName,
- date_format(b.sign_time,'%Y-%m-%d') as signDate,a.dun_status dunStatus,x.commodity_name commodityName
- from t_arrears_dun a
- left join (select order_no ,commodity_name from t_order_task where main =1)x on a.order_no =x.order_no
- left join t_order_new b on a.order_no=b.order_no left join `user` c on b.buyer_id=c.id
- left join t_order_mid tm on b.order_no=tm.order_no left join department dep on b.order_dep=dep.id
- where b.delete_sign in(0,2,3) and dun_status in (1,2,3)
- <if test="shiroType == 1 and fid !=null">
- and tm.finance_id= #{fid,jdbcType=VARCHAR}
- </if>
- <if test="shiroType == 2 and fid !=null">
- and tm.finance_id in (select id from admin where superior_id= #{fid,jdbcType=VARCHAR})
- </if>
- <if test="name != null">
- and c.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="adminName != null">
- and tm.salesman_name like CONCAT('%',#{adminName,jdbcType=VARCHAR},'%')
- </if>
- <if test="orderNo != null">
- and a.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="contractNo != null">
- and b.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="deps != null">
- and b.order_dep in
- <foreach close=")" collection="deps" item="dep" open="(" separator=",">
- #{dep}
- </foreach>
- </if>
- <if test="shiroType !=3 and aid != null">
- and b.salesman_id= #{aid,jdbcType=VARCHAR}
- </if>
- <if test="starTime !=null and endTime !=null">
- and b.sign_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
- </if>
- <if test="tStarTime !=null and tEndTime !=null">
- and a.start_time between #{tStarTime,jdbcType=VARCHAR} and #{tEndTime,jdbcType=VARCHAR}
- </if>
- order by dun_status,a.start_time desc
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
- <select id="selectArrearsDunListByCount" resultType="java.lang.Integer">
- select count(*) from t_arrears_dun a
- left join t_order_new b on a.order_no=b.order_no left join `user` c on b.buyer_id=c.id
- left join t_order_mid tm on b.order_no=tm.order_no left join department dep on b.order_dep=dep.id
- where b.delete_sign in(0,2,3) and dun_status in (1,2,3)
- <if test="shiroType == 1 and fid !=null">
- and tm.finance_id= #{fid,jdbcType=VARCHAR}
- </if>
- <if test="shiroType == 2 and fid !=null">
- and tm.finance_id in (select id from admin where superior_id= #{fid,jdbcType=VARCHAR})
- </if>
- <if test="shiroType !=3 and aid != null">
- and b.salesman_id= #{aid,jdbcType=VARCHAR}
- </if>
- <if test="name != null">
- and c.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="adminName != null">
- and tm.salesman_name like CONCAT('%',#{adminName,jdbcType=VARCHAR},'%')
- </if>
- <if test="orderNo != null">
- and a.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="deps != null">
- and b.order_dep in
- <foreach close=")" collection="deps" item="dep" open="(" separator=",">
- #{dep}
- </foreach>
- </if>
- <if test="shiroType !=3 and aid != null">
- and b.salesman_id= #{aid,jdbcType=VARCHAR}
- </if>
- <if test="starTime !=null and endTime !=null">
- and b.sign_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
- </if>
- <if test="tStarTime !=null and tEndTime !=null">
- and a.start_time between #{tStarTime,jdbcType=VARCHAR} and #{tEndTime,jdbcType=VARCHAR}
- </if>
- </select>
- <select id="selectByUidAndNewUser" resultType="java.math.BigDecimal">
- select total_amount from t_order_new
- where process_status >4 and buyer_id = #{uid}
- and salesman_id =#{aid}
- and new_user = #{newUser}
- and create_time between #{date} and #{now}
- </select>
- <select id="statisticsList" resultType="com.goafanti.order.bo.OutStatisticsList">
- select z.id,z.province,z.counts,z.quantity,z.total
- from (select y.id,y.province,count(aid)counts,sum(quantity)quantity,sum(total)total
- from (select x.id,x.province,x.aid,sum(quantity)quantity, sum(x.total)total
- from (select d.id,d.name province,a.order_no,a.salesman_id aid,
- if(a.total_amount>0.5,1,if(a.total_amount>0 and a.order_type=1,0.5,0))quantity,
- a.total_amount total
- from t_order_new a left join admin b on a.salesman_id =b.id
- left join department c on b.department_id =c.id left join district_glossory d on c.province =d.id
- where a.process_status >4 and a.delete_sign in(0,2)
- <if test="depId !=null">
- and b.department_id = #{depId}
- </if>
- <if test="province !=null">
- and c.province = #{province}
- </if>
- <if test="startCreate !=null and endCreate !=null">
- and a.create_time between #{startCreate} and #{endCreate}
- </if>
- <if test="startSign !=null and endSign !=null">
- and a.sign_time between #{startSign} and #{endSign}
- </if>
- )x group by x.id,x.province,x.aid)y group by y.id,y.province)z
- order by
- <if test="sort ==0">
- total
- </if>
- <if test="sort ==1">
- quantity
- </if>
- <if test="sort ==2">
- counts
- </if>
- desc
- </select>
- <select id="provinceStatisticsList" resultType="com.goafanti.order.bo.OutProvinceStatisticsList">
- select z.depName,z.aid,z.name,z.quantity,z.total
- from ( select x.depName,x.aid,x.name,sum(quantity)quantity,sum(total)total
- from ( select c.name depName,a.order_no,b.id aid,b.name name,
- if(a.total_amount>0.5,1,if(a.total_amount>0 and a.order_type=1,0.5,0))quantity,
- a.total_amount total
- from t_order_new a left join admin b on a.salesman_id =b.id
- left join department c on b.department_id =c.id left join district_glossory d on c.province =d.id
- where a.process_status >4 and a.delete_sign in(0,2)
- <if test="depId !=null">
- and b.department_id = #{depId}
- </if>
- <if test="province !=null">
- and c.province = #{province}
- </if>
- <if test="startCreate !=null and endCreate !=null">
- and a.create_time between #{startCreate} and #{endCreate}
- </if>
- <if test="startSign !=null and endSign !=null">
- and a.sign_time between #{startSign} and #{endSign}
- </if>
- )x group by x.depName,x.aid,x.name )z order by
- <if test="sort ==0">
- total
- </if>
- <if test="sort ==1">
- quantity
- </if>
- desc
- </select>
- <select id="selectOrderByuid" resultType="java.util.Map">
- select order_no orderNo,contract_no contractNo
- from t_order_new where delete_sign in (0,2) and buyer_id = #{uid}
- order by create_time desc
- </select>
- <select id="orderSalesSourceAmount" resultType="com.goafanti.order.bo.outStatistics.OutOrderSalesSourceAmount">
- select y.province,dg.name ,y.total_amount totalAmount,y.counts,y.dhxkf,
- y.dhxkf/y.total_amount dhxkfl, y.dhzdzy,y.dhzdzy/y.total_amount dhzdzyl,y.wl,y.wl/y.total_amount wll,
- y.qd,y.qd/y.total_amount qdl,y.zjs,y.zjs/y.total_amount zjsl,y.qt,y.qt/y.total_amount qtl,
- y.gxfg,y.gxfg/y.total_amount gxfgl,y.qtfg,y.qtfg/y.total_amount qtfgl
- from (select x.province,sum(x.total_amount)total_amount,sum(x.counts)counts,
- sum(x.dhxkf)dhxkf,sum(x.dhzdzy)dhzdzy,sum(x.wl)wl,sum(x.qd)qd, sum(x.zjs)zjs, sum(x.qt)qt,
- sum(x.gxfg)gxfg, sum(x.qtfg)qtfg
- from ( select b.province ,1 counts,a.total_amount,a.sales_type ,
- case a.sales_type when 0 then a.total_amount else 0 end dhxkf,
- case a.sales_type when 1 then a.total_amount else 0 end dhzdzy,
- case a.sales_type when 2 then a.total_amount else 0 end wl,
- case a.sales_type when 3 then a.total_amount else 0 end qd,
- case a.sales_type when 4 then a.total_amount else 0 end zjs,
- case a.sales_type when 5 then a.total_amount else 0 end qt,
- case a.sales_type when 6 then a.total_amount else 0 end gxfg,
- case a.sales_type when 7 then a.total_amount else 0 end qtfg
- from t_order_new a left join department b on a.order_dep =b.id
- where a.delete_sign in (0,2) and a.process_status > 0 and a.approval in (0,1,2)
- <if test=" startDate !=null and endDate != null">
- and a.create_time between #{startDate} and #{endDate}
- </if>
- <if test=" deps !=null">
- and a.order_dep in
- <foreach close=")" collection="listDep" item="depId" open="(" separator=",">
- #{depId}
- </foreach>
- </if>
- <if test=" province !=null">
- and b.province = #{province}
- </if>
- )x group by x.province)y left join district_glossory dg on y.province=dg.id
- order by y.total_amount desc
- </select>
- <select id="orderSalesSource" resultType="com.goafanti.order.bo.OutOrderSalesSource">
- select y.province,dg.name ,y.total_amount totalAmount,y.counts,y.dhxkf,y.dhxkf/y.counts dhxkfl,
- y.dhzdzy,y.dhzdzy/y.counts dhzdzyl,y.wl,y.wl/y.counts wll,
- y.qd,y.qd/y.counts qdl,y.zjs,y.zjs/y.counts zjsl,y.qt,y.qt/y.counts qtl,
- y.gxfg,y.gxfg/y.counts gxfgl,y.qtfg,y.qtfg/y.counts qtfgl
- from (select x.province,sum(x.total_amount)total_amount,sum(x.counts)counts,
- sum(x.dhxkf)dhxkf,sum(x.dhzdzy)dhzdzy,sum(x.wl)wl,sum(x.qd)qd, sum(x.zjs)zjs, sum(x.qt)qt,
- sum(x.gxfg)gxfg, sum(x.qtfg)qtfg
- from ( select b.province ,1 counts,a.total_amount,a.sales_type ,
- case a.sales_type when 0 then 1 else 0 end dhxkf,
- case a.sales_type when 1 then 1 else 0 end dhzdzy,
- case a.sales_type when 2 then 1 else 0 end wl,
- case a.sales_type when 3 then 1 else 0 end qd,
- case a.sales_type when 4 then 1 else 0 end zjs,
- case a.sales_type when 5 then 1 else 0 end qt,
- case a.sales_type when 6 then 1 else 0 end gxfg,
- case a.sales_type when 7 then 1 else 0 end qtfg
- from t_order_new a left join department b on a.order_dep =b.id
- where a.delete_sign in (0,2) and a.process_status > 0 and a.approval in (0,1,2)
- <if test=" startDate !=null and endDate != null">
- and a.create_time between #{startDate} and #{endDate}
- </if>
- <if test=" deps !=null">
- and a.order_dep in
- <foreach close=")" collection="listDep" item="depId" open="(" separator=",">
- #{depId}
- </foreach>
- </if>
- <if test=" province !=null">
- and b.province = #{province}
- </if>
- )x group by x.province)y left join district_glossory dg on y.province=dg.id
- order by y.counts desc
- </select>
- <select id="selectstatisticsOrderListPage" resultType="com.goafanti.order.bo.TOrderNewBo">
- select a.order_no as orderNo,a.create_time as createTime, date_format(a.sign_time,'%Y-%m-%d' ) as signDate,a.delete_sign deleteSign,
- a.contract_no as contractNo, b.nickname as userName ,a.process_status as processStatus,a.total_amount as totalAmount,
- a.order_status as orderStatus, a.liquidation_status as liquidationStatus,a.approval,c.salesman_name as salesmanName,c.project_type projectType,
- dep.name as depName,c.finance_name as financeName,c.invoice_amount invoiceAmount,a.settlement_amount settlementAmount,
- a.sales_type salesType, a.channel_id channelId ,a.other
- from t_order_new a left join `user` b on a.buyer_id=b.id left join t_order_mid c on a.order_no=c.order_no
- left join department dep on a.order_dep=dep.id
- where a.delete_sign in(0,2) and a.process_status >0 and a.approval in (0,1,2)
- <if test="province !=null ">
- and dep.province = #{province}
- </if>
- <if test="salesType !=null ">
- and a.sales_type = #{salesType}
- </if>
- <if test=" startDate !=null and endDate != null">
- and a.create_time between #{startDate} and #{endDate}
- </if>
- <if test=" depId !=null">
- and a.order_dep= #{depId}
- </if>
- <if test="orderNo != null">
- and a.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="name != null">
- and b.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="contractNo != null">
- and a.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="liquidationStatus != null">
- and a.liquidation_status = #{liquidationStatus,jdbcType=INTEGER}
- </if>
- <if test="approval ==0">
- and a.approval = 0
- </if>
- <if test="approval ==1">
- and a.approval in (1,2)
- </if>
- <if test="amountStatus == 0">
- and a.total_amount < 10
- </if>
- <if test="amountStatus == 1">
- and a.total_amount between 10 and 20
- </if>
- <if test="amountStatus == 2">
- and a.total_amount between 20 and 30
- </if>
- <if test="amountStatus == 3">
- and a.total_amount between 30 and 40
- </if>
- <if test="amountStatus == 4">
- and a.total_amount > 40
- </if>
- order by a.create_time desc
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
- <select id="selectstatisticsOrderListCount" resultType="integer">
- select count(*)
- from t_order_new a left join `user` b on a.buyer_id=b.id left join t_order_mid c on a.order_no=c.order_no
- left join department dep on a.order_dep=dep.id
- where a.delete_sign in(0,2) and a.process_status >0 and a.approval in (0,1,2)
- <if test="province !=null ">
- and dep.province = #{province}
- </if>
- <if test="salesType !=null ">
- and a.sales_type = #{salesType}
- </if>
- <if test=" startDate !=null and endDate != null">
- and a.create_time between #{startDate} and #{endDate}
- </if>
- <if test=" depId !=null">
- and a.order_dep= #{depId}
- </if>
- <if test="orderNo != null">
- and a.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="name != null">
- and b.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="contractNo != null">
- and a.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="liquidationStatus != null">
- and a.liquidation_status = #{liquidationStatus,jdbcType=INTEGER}
- </if>
- <if test="approval ==0">
- and a.approval = 0
- </if>
- <if test="approval ==1">
- and a.approval in (1,2)
- </if>
- <if test="amountStatus == 0">
- and a.total_amount < 10
- </if>
- <if test="amountStatus == 1">
- and a.total_amount between 10 and 20
- </if>
- <if test="amountStatus == 2">
- and a.total_amount between 20 and 30
- </if>
- <if test="amountStatus == 3">
- and a.total_amount between 30 and 40
- </if>
- <if test="amountStatus == 4">
- and a.total_amount > 40
- </if>
- </select>
- <select id="checkOrderProcessStatus" resultMap="BaseResultMap">
- select
- <include refid="Base_Column_List" />
- from t_order_new
- where order_no = (select t_order_task.order_no from t_order_task where id=#{tid})
- </select>
- <select id="selectgetAll" resultType="com.goafanti.common.model.TOrderNew">
- select order_no orderNo,contract_picture_url contractPictureUrl ,agreement_url agreementUrl ,service_content serviceContent
- from t_order_new where delete_sign in (0,2)
- </select>
- <select id="getProcessName" resultType="com.goafanti.order.bo.OrderProcessName">
- select a.order_no orderNo,a.approval,a.process_status processStatus ,b.name yxy,mg.name yxjl,
- yxgly.name yxgly,d.name cwzy,zc.name zc, zxsgly.name zxsgly,dsz.name dsz
- from t_order_new a left join admin b on a.salesman_id =b.id
- left join admin mg on b.manager_id =mg.id
- left join department c on a.order_dep =c.id
- left join (select a.department_id depId,group_concat(a.name) name
- from admin a left join user_role b on a.id=b.uid left join `role` c on b.rid =c.id
- where c.role_type ='9996' and a.status ='0' group by a.department_id )yxgly on c.id =yxgly.depId
- left join (select order_no ,group_concat(aname)name from t_order_examine group by order_no ) d on a.order_no=d.order_no
- left join (select group_concat(a.name) name
- from admin a left join user_role b on a.id=b.uid left join `role` c on b.rid =c.id
- where c.role_type in ('99998','99988') and a.status ='0' ) zc on 1=1
- left join (select group_concat(a.name) name
- from admin a left join user_role b on a.id=b.uid left join `role` c on b.rid =c.id
- where c.role_type in ('99999','99989') and a.status ='0' ) dsz on 1=1
- left join (select group_concat(a.name) name
- from admin a left join user_role b on a.id=b.uid left join `role` c on b.rid =c.id
- where c.role_type in ('9998') and a.status ='0' ) zxsgly on 1=1
- where a.order_no = #{orderNo}
- </select>
- <select id="selectByuidandAid" resultType="com.goafanti.order.bo.TOrderNewBo">
- select order_no orderNo
- from t_order_new
- where buyer_id=#{uid} and salesman_id=#{aid}
- </select>
- <select id="statisticsOrderList" resultType="com.goafanti.order.bo.StatisOrderList">
- select d.id,d.name province,c.name depName,a.order_no,a.salesman_id aid ,b.name aname,
- if(a.total_amount>0.5,1,if(a.total_amount>0 and a.order_type=1,0.5,0))quantity, a.total_amount total
- from t_order_new a left join admin b on a.salesman_id =b.id left join department c on b.department_id =c.id
- left join district_glossory d on c.province =d.id
- where a.process_status >4 and a.delete_sign in(0,2)
- <if test="depId !=null">
- and b.department_id = #{depId}
- </if>
- <if test="province !=null">
- and c.province = #{province}
- </if>
- <if test="startCreate !=null and endCreate !=null">
- and a.create_time between #{startCreate} and #{endCreate}
- </if>
- <if test="startSign !=null and endSign !=null">
- and a.sign_time between #{startSign} and #{endSign}
- </if>
- </select>
- <select id="matchingOrderNoOrUserName" resultType="com.goafanti.order.bo.UserOrder">
- select order_no orderNo ,buyer_id uid ,b.username userName
- from t_order_new a left join `user` b on a.buyer_id =b.id
- where 1=1
- <if test="orderNo !=null">
- and order_no like concat('%',#{orderNo},'%')
- </if>
- <if test="userName !=null">
- and b.nickname like concat('%',#{userName},'%')
- </if>
- limit 0,20
- </select>
- <update id="updateTagByListOrderNo">
- update t_order_new
- set tag = #{param2}
- where order_no in
- <foreach collection="param1" item="e" open="(" close=")" separator=",">
- #{e}
- </foreach>
- </update>
- <select id="selectAidAndDate" resultType="java.lang.Integer">
- select count(*)
- from t_order_new
- where process_status >0
- and salesman_id = #{aid}
- and create_time BETWEEN #{startTime} and #{endTime}
- </select>
- <select id="selectCountByFinance" resultType="com.goafanti.common.model.FinanceCount">
- select x.aid, x.dates dateTime, count(*)orderCount, sum(if(x.process_status = 3, 1, 0))orderUnauditedCount
- from (SELECT b.finance_id aid, a.process_status, DATE_FORMAT(a.create_time , '%Y-%m-%d') dates
- from t_order_new a left join department b on a.order_dep = b.id
- where a.delete_sign in (0, 2, 3) and process_status >2 and a.outsource =0
- and b.finance_id = #{aid})x
- group by x.aid, x.dates;
- </select>
- </mapper>
|