Month: January 2014
-
Post Views: 35 sql statement: (SELECT SUM(O_G.GOODS_AMOUNT) as AMOUNT_SUM,SUM(o_g.goods_cost*o_g.goods_number) as cost_sum,sum(o_g.goods_number) as number_sum from ERP_ORDER_GOODS AS O_G left outer join erp_order as o on o_g.order_id = o.order_id left outer join erp_goods as g on g.gid = o_g.goods_id left outer join erp_brand as b on b.brand_id = g.brand_id where (o.add_time between “1389715200” and “1389772885”) and (o.order_status=1 or o.order_status=2)) union all (SELECT…
-
Post Views: 10 When executing the git add command in git bash, the following error message will appear: Execute the following command, the screenshot is as follows: Among them, –global, is only valid in the global configuration of this user!
-
Post Views: 10 HTML structure: <td><span id=”is_mar431″><input class=”is_mar” value=”0″ id=”is_mar431_0″ checked=”checked” type=”radio” name=”is_mar431″ /> <label for=”is_mar431_0″>no</label> <input class=”is_mar” value=”1″ id=”is_mar431_1″ type=”radio” name=”is_mar431″ /> <label for=”is_mar431_1″> is </label></span></td> JS structure (front): // Whether it is damaged, select Yes, enter the text box of the damage information $(“span[id^=is_mar]:radio”).change( function() { var this_name = $(this).attr(“name”); var input_id =mar_note_+this_name.substring(6); if…
